From ba40dc50b4e009c568e6259c40f08726ae39e73c Mon Sep 17 00:00:00 2001 From: Cory Slep Date: Tue, 29 May 2018 21:57:39 +0200 Subject: [PATCH] Use *url.URL instead of url.URL. He who fights with monsters should be careful lest he thereby become a monster. And if thou gaze long into an abyss, the abyss will also gaze into thee. --- pub/fed.go | 30 +- pub/fed_test.go | 860 +- pub/handlers.go | 10 +- pub/handlers_test.go | 146 +- pub/interfaces.go | 50 +- pub/internal.go | 276 +- pub/resolvers.go | 2 +- streams/streams.go | 6544 +- streams/streams_test.go | 10 +- tools/defs/defs.go | 8 +- tools/streams/gen/as.go | 10 +- tools/vocab/gen/generate_definitions.go | 4 +- .../gen/generate_property_definitions.go | 54 +- tools/vocab/gen/util.go | 4 + vocab/vocab.go | 49498 ++++++++-------- vocab/vocab_test.go | 14 +- 16 files changed, 28807 insertions(+), 28713 deletions(-) diff --git a/pub/fed.go b/pub/fed.go index 6be51a3..c678951 100644 --- a/pub/fed.go +++ b/pub/fed.go @@ -163,7 +163,7 @@ func (f *federator) PostInbox(c context.Context, w http.ResponseWriter, r *http. if err != nil { return true, err } - var iris []url.URL + var iris []*url.URL for i := 0; i < ao.ActorLen(); i++ { if ao.IsActorObject(i) { obj := ao.GetActorObject(i) @@ -182,7 +182,7 @@ func (f *federator) PostInbox(c context.Context, w http.ResponseWriter, r *http. if err = f.FederateAPI.Unblocked(c, iris); err != nil { return true, err } - if err = f.getPostInboxResolver(c, *r.URL).Deserialize(m); err != nil { + if err = f.getPostInboxResolver(c, r.URL).Deserialize(m); err != nil { if err == errObjectRequired || err == errTargetRequired { w.WriteHeader(http.StatusBadRequest) return true, nil @@ -244,7 +244,7 @@ func (f *federator) PostOutbox(c context.Context, w http.ResponseWriter, r *http authorized := true if verifier := f.SocialAPI.GetSocialAPIVerifier(c); verifier != nil { // Use custom Social API method to authenticate and authorize. - authenticated, authorized, err := verifier.VerifyForOutbox(r, *r.URL) + authenticated, authorized, err := verifier.VerifyForOutbox(r, r.URL) if err != nil { return true, err } else if authenticated && !authorized { @@ -262,7 +262,7 @@ func (f *federator) PostOutbox(c context.Context, w http.ResponseWriter, r *http w.WriteHeader(http.StatusBadRequest) return true, nil } - pk, algo, err := f.SocialAPI.GetPublicKeyForOutbox(c, v.KeyId(), *r.URL) + pk, algo, err := f.SocialAPI.GetPublicKeyForOutbox(c, v.KeyId(), r.URL) if err != nil { return true, err } @@ -316,7 +316,7 @@ func (f *federator) PostOutbox(c context.Context, w http.ResponseWriter, r *http if err != nil { return true, err } - if err := f.deliver(obj, *r.URL); err != nil { + if err := f.deliver(obj, r.URL); err != nil { return true, err } } @@ -386,14 +386,14 @@ func (f *federator) handleClientCreate(ctx context.Context, deliverable *bool, t if c.IsActorObject(i) { obj := c.GetActorObject(i) id := obj.GetId() - createActorIds[(&id).String()] = obj + createActorIds[id.String()] = obj } else if c.IsActorLink(i) { l := c.GetActorLink(i) href := l.GetHref() - createActorIds[(&href).String()] = l + createActorIds[href.String()] = l } else if c.IsActorIRI(i) { iri := c.GetActorIRI(i) - createActorIds[(&iri).String()] = iri + createActorIds[iri.String()] = iri } } var obj []vocab.ObjectType @@ -412,14 +412,14 @@ func (f *federator) handleClientCreate(ctx context.Context, deliverable *bool, t if o.IsAttributedToObject(i) { at := o.GetAttributedToObject(i) id := o.GetId() - objectAttributedToIds[k][(&id).String()] = at + objectAttributedToIds[k][id.String()] = at } else if o.IsAttributedToLink(i) { at := o.GetAttributedToLink(i) href := at.GetHref() - objectAttributedToIds[k][(&href).String()] = at + objectAttributedToIds[k][href.String()] = at } else if o.IsAttributedToIRI(i) { iri := o.GetAttributedToIRI(i) - objectAttributedToIds[k][(&iri).String()] = iri + objectAttributedToIds[k][iri.String()] = iri } } } @@ -430,7 +430,7 @@ func (f *federator) handleClientCreate(ctx context.Context, deliverable *bool, t obj[i].AppendAttributedToObject(vObj) } else if vLink, ok := v.(vocab.LinkType); ok { obj[i].AppendAttributedToLink(vLink) - } else if vIRI, ok := v.(url.URL); ok { + } else if vIRI, ok := v.(*url.URL); ok { obj[i].AppendAttributedToIRI(vIRI) } } @@ -443,7 +443,7 @@ func (f *federator) handleClientCreate(ctx context.Context, deliverable *bool, t c.AppendActorObject(vObj) } else if vLink, ok := v.(vocab.LinkType); ok { c.AppendActorLink(vLink) - } else if vIRI, ok := v.(url.URL); ok { + } else if vIRI, ok := v.(*url.URL); ok { c.AppendActorIRI(vIRI) } } @@ -761,7 +761,7 @@ func (f *federator) handleClientBlock(c context.Context, deliverable *bool) func } } -func (f *federator) getPostInboxResolver(c context.Context, inboxURL url.URL) *streams.Resolver { +func (f *federator) getPostInboxResolver(c context.Context, inboxURL *url.URL) *streams.Resolver { return &streams.Resolver{ CreateCallback: f.handleCreate(c), UpdateCallback: f.handleUpdate(c), @@ -856,7 +856,7 @@ func (f *federator) handleDelete(c context.Context) func(s *streams.Delete) erro } } -func (f *federator) handleFollow(c context.Context, inboxURL url.URL) func(s *streams.Follow) error { +func (f *federator) handleFollow(c context.Context, inboxURL *url.URL) func(s *streams.Follow) error { return func(s *streams.Follow) error { // Permit either human-triggered or automatically triggering // 'Accept'/'Reject'. diff --git a/pub/fed_test.go b/pub/fed_test.go index 2c6ade8..8fb09d5 100644 --- a/pub/fed_test.go +++ b/pub/fed_test.go @@ -151,8 +151,8 @@ func init() { panic(err) } samActor = &vocab.Person{} - samActor.SetInboxAnyURI(*samIRIInbox) - samActor.SetId(*samIRI) + samActor.SetInboxAnyURI(samIRIInbox) + samActor.SetId(samIRI) samActor.AppendNameString("Sam") m, err := samActor.Serialize() if err != nil { @@ -172,9 +172,9 @@ func init() { } sallyActor = &vocab.Person{} sallyActor.AppendNameString("Sally") - sallyActor.SetId(*sallyIRI) - sallyActor.SetInboxAnyURI(*sallyInbox) - sallyActor.SetOutboxAnyURI(*sallyOutbox) + sallyActor.SetId(sallyIRI) + sallyActor.SetInboxAnyURI(sallyInbox) + sallyActor.SetOutboxAnyURI(sallyOutbox) m, err = sallyActor.Serialize() if err != nil { panic(err) @@ -184,87 +184,87 @@ func init() { panic(err) } testNote = &vocab.Note{} - testNote.SetId(*noteIRI) + testNote.SetId(noteIRI) testNote.AppendNameString(noteName) testNote.AppendContentString("This is a simple note") testSingleOrderedCollection = &vocab.OrderedCollection{} testSingleOrderedCollection.AppendItemsObject(testNote) testCreateNote = &vocab.Create{} - testCreateNote.SetId(*noteActivityIRI) + testCreateNote.SetId(noteActivityIRI) testCreateNote.AppendSummaryString("Sally created a note") testCreateNote.AppendActorObject(sallyActor) testCreateNote.AppendObject(testNote) testCreateNote.AppendToObject(samActor) testUpdateNote = &vocab.Update{} - testUpdateNote.SetId(*updateActivityIRI) + testUpdateNote.SetId(updateActivityIRI) testUpdateNote.AppendSummaryString("Sally updated a note") testUpdateNote.AppendActorObject(sallyActor) testUpdateNote.AppendObject(testNote) testUpdateNote.AppendToObject(samActor) testDeleteNote = &vocab.Delete{} - testDeleteNote.SetId(*noteActivityIRI) + testDeleteNote.SetId(noteActivityIRI) testDeleteNote.AppendActorObject(sallyActor) testDeleteNote.AppendObject(testNote) testDeleteNote.AppendToObject(samActor) testTombstoneNote = &vocab.Tombstone{} - testTombstoneNote.SetId(*noteIRI) + testTombstoneNote.SetId(noteIRI) testTombstoneNote.AppendFormerTypeString("Note") testTombstoneNote.SetDeleted(now) testFollow = &vocab.Follow{} - testFollow.SetId(*noteActivityIRI) + testFollow.SetId(noteActivityIRI) testFollow.AppendActorObject(sallyActor) testFollow.AppendObject(samActor) testFollow.AppendToObject(samActor) testAcceptNote = &vocab.Accept{} - testAcceptNote.SetId(*noteActivityIRI) + testAcceptNote.SetId(noteActivityIRI) testAcceptNote.AppendActorObject(sallyActor) testAcceptNote.AppendObject(&vocab.Offer{}) testAcceptNote.AppendToObject(samActor) testAcceptFollow = &vocab.Accept{} - testAcceptFollow.SetId(*noteActivityIRI) + testAcceptFollow.SetId(noteActivityIRI) testAcceptFollow.AppendActorObject(samActor) testAcceptFollow.AppendObject(testFollow) testAcceptFollow.AppendToObject(sallyActor) testRejectFollow = &vocab.Reject{} - testRejectFollow.SetId(*noteActivityIRI) + testRejectFollow.SetId(noteActivityIRI) testRejectFollow.AppendActorObject(samActor) testRejectFollow.AppendObject(testFollow) testRejectFollow.AppendToObject(sallyActor) testAddNote = &vocab.Add{} - testAddNote.SetId(*noteActivityIRI) + testAddNote.SetId(noteActivityIRI) testAddNote.AppendActorObject(sallyActor) testAddNote.AppendObject(testNote) - testAddNote.AppendTargetIRI(*iri) + testAddNote.AppendTargetIRI(iri) testAddNote.AppendToObject(samActor) testRemoveNote = &vocab.Remove{} - testRemoveNote.SetId(*noteActivityIRI) + testRemoveNote.SetId(noteActivityIRI) testRemoveNote.AppendActorObject(sallyActor) testRemoveNote.AppendObject(testNote) - testRemoveNote.AppendTargetIRI(*iri) + testRemoveNote.AppendTargetIRI(iri) testRemoveNote.AppendToObject(samActor) testLikeNote = &vocab.Like{} - testLikeNote.SetId(*noteActivityIRI) + testLikeNote.SetId(noteActivityIRI) testLikeNote.AppendActorObject(sallyActor) testLikeNote.AppendObject(testNote) testLikeNote.AppendToObject(samActor) testUndoLike = &vocab.Undo{} - testUndoLike.SetId(*noteActivityIRI) + testUndoLike.SetId(noteActivityIRI) testUndoLike.AppendActorObject(sallyActor) testUndoLike.AppendObject(testLikeNote) testUndoLike.AppendToObject(samActor) testBlock = &vocab.Block{} - testBlock.SetId(*noteActivityIRI) + testBlock.SetId(noteActivityIRI) testBlock.AppendActorObject(sallyActor) testBlock.AppendObject(samActor) testClientExpectedNote = &vocab.Note{} - testClientExpectedNote.SetId(*noteIRI) + testClientExpectedNote.SetId(noteIRI) testClientExpectedNote.AppendNameString(noteName) testClientExpectedNote.AppendContentString("This is a simple note") testClientExpectedNote.AppendAttributedToObject(sallyActor) testClientExpectedNote.AppendToObject(samActor) testClientExpectedCreateNote = &vocab.Create{} - testClientExpectedCreateNote.SetId(*testNewIRI) + testClientExpectedCreateNote.SetId(testNewIRI) testClientExpectedCreateNote.AppendSummaryString("Sally created a note") testClientExpectedCreateNote.AppendActorObject(sallyActor) testClientExpectedCreateNote.AppendObject(testClientExpectedNote) @@ -334,70 +334,70 @@ func init() { } ` sammActor := &vocab.Person{} - sammActor.SetInboxAnyURI(*samIRIInbox) - sammActor.SetId(*samIRI) + sammActor.SetInboxAnyURI(samIRIInbox) + sammActor.SetId(samIRI) sammActor.AppendNameString("Samm") testUpdateNote := &vocab.Note{} - testUpdateNote.SetId(*noteIRI) + testUpdateNote.SetId(noteIRI) testUpdateNote.AppendNameString(noteName) testUpdateNote.AppendContentString("This is a simple note") testUpdateNote.AppendToObject(sammActor) testClientUpdateNote = &vocab.Update{} - testClientUpdateNote.SetId(*updateActivityIRI) + testClientUpdateNote.SetId(updateActivityIRI) testClientUpdateNote.AppendSummaryString("Sally updated a note") testClientUpdateNote.AppendActorObject(sallyActor) testClientUpdateNote.AppendObject(testUpdateNote) testClientUpdateNote.AppendToObject(samActor) testClientExpectedUpdateNote = &vocab.Update{} - testClientExpectedUpdateNote.SetId(*testNewIRI) + testClientExpectedUpdateNote.SetId(testNewIRI) testClientExpectedUpdateNote.AppendSummaryString("Sally updated a note") testClientExpectedUpdateNote.AppendActorObject(sallyActor) testClientExpectedUpdateNote.AppendObject(testNote) testClientExpectedUpdateNote.AppendToObject(samActor) testClientExpectedDeleteNote = &vocab.Delete{} - testClientExpectedDeleteNote.SetId(*testNewIRI) + testClientExpectedDeleteNote.SetId(testNewIRI) testClientExpectedDeleteNote.AppendActorObject(sallyActor) testClientExpectedDeleteNote.AppendObject(testNote) testClientExpectedDeleteNote.AppendToObject(samActor) testClientExpectedFollow = &vocab.Follow{} - testClientExpectedFollow.SetId(*testNewIRI) + testClientExpectedFollow.SetId(testNewIRI) testClientExpectedFollow.AppendActorObject(sallyActor) testClientExpectedFollow.AppendObject(samActor) testClientExpectedFollow.AppendToObject(samActor) testClientExpectedAcceptFollow = &vocab.Accept{} - testClientExpectedAcceptFollow.SetId(*testNewIRI) + testClientExpectedAcceptFollow.SetId(testNewIRI) testClientExpectedAcceptFollow.AppendActorObject(samActor) testClientExpectedAcceptFollow.AppendObject(testFollow) testClientExpectedAcceptFollow.AppendToObject(sallyActor) testClientExpectedRejectFollow = &vocab.Reject{} - testClientExpectedRejectFollow.SetId(*testNewIRI) + testClientExpectedRejectFollow.SetId(testNewIRI) testClientExpectedRejectFollow.AppendActorObject(samActor) testClientExpectedRejectFollow.AppendObject(testFollow) testClientExpectedRejectFollow.AppendToObject(sallyActor) testClientExpectedAdd = &vocab.Add{} - testClientExpectedAdd.SetId(*testNewIRI) + testClientExpectedAdd.SetId(testNewIRI) testClientExpectedAdd.AppendActorObject(sallyActor) testClientExpectedAdd.AppendObject(testNote) - testClientExpectedAdd.AppendTargetIRI(*iri) + testClientExpectedAdd.AppendTargetIRI(iri) testClientExpectedAdd.AppendToObject(samActor) testClientExpectedRemove = &vocab.Remove{} - testClientExpectedRemove.SetId(*testNewIRI) + testClientExpectedRemove.SetId(testNewIRI) testClientExpectedRemove.AppendActorObject(sallyActor) testClientExpectedRemove.AppendObject(testNote) - testClientExpectedRemove.AppendTargetIRI(*iri) + testClientExpectedRemove.AppendTargetIRI(iri) testClientExpectedRemove.AppendToObject(samActor) testClientExpectedLike = &vocab.Like{} - testClientExpectedLike.SetId(*testNewIRI) + testClientExpectedLike.SetId(testNewIRI) testClientExpectedLike.AppendActorObject(sallyActor) testClientExpectedLike.AppendObject(testNote) testClientExpectedLike.AppendToObject(samActor) testClientExpectedUndo = &vocab.Undo{} - testClientExpectedUndo.SetId(*testNewIRI) + testClientExpectedUndo.SetId(testNewIRI) testClientExpectedUndo.AppendActorObject(sallyActor) testClientExpectedUndo.AppendObject(testLikeNote) testClientExpectedUndo.AppendToObject(samActor) testClientExpectedBlock = &vocab.Block{} - testClientExpectedBlock.SetId(*testNewIRI) + testClientExpectedBlock.SetId(testNewIRI) testClientExpectedBlock.AppendActorObject(sallyActor) testClientExpectedBlock.AppendObject(samActor) @@ -555,39 +555,39 @@ var _ Application = &MockApplication{} type MockApplication struct { t *testing.T - owns func(c context.Context, id url.URL) bool - get func(c context.Context, id url.URL, rw RWType) (PubObject, error) - getAsVerifiedUser func(c context.Context, id, authdUser url.URL, rw RWType) (PubObject, error) - has func(c context.Context, id url.URL) (bool, error) + owns func(c context.Context, id *url.URL) bool + get func(c context.Context, id *url.URL, rw RWType) (PubObject, error) + getAsVerifiedUser func(c context.Context, id, authdUser *url.URL, rw RWType) (PubObject, error) + has func(c context.Context, id *url.URL) (bool, error) set func(c context.Context, o PubObject) error getInbox func(c context.Context, r *http.Request, rw RWType) (vocab.OrderedCollectionType, error) getOutbox func(c context.Context, r *http.Request, rw RWType) (vocab.OrderedCollectionType, error) - newId func(c context.Context, t Typer) url.URL - getPublicKey func(c context.Context, publicKeyId string) (crypto.PublicKey, httpsig.Algorithm, url.URL, error) + newId func(c context.Context, t Typer) *url.URL + getPublicKey func(c context.Context, publicKeyId string) (crypto.PublicKey, httpsig.Algorithm, *url.URL, error) } -func (m *MockApplication) Owns(c context.Context, id url.URL) bool { +func (m *MockApplication) Owns(c context.Context, id *url.URL) bool { if m.owns == nil { m.t.Fatal("unexpected call to MockApplication Owns") } return m.owns(c, id) } -func (m *MockApplication) Get(c context.Context, id url.URL, rw RWType) (PubObject, error) { +func (m *MockApplication) Get(c context.Context, id *url.URL, rw RWType) (PubObject, error) { if m.get == nil { m.t.Fatal("unexpected call to MockApplication Get") } return m.get(c, id, rw) } -func (m *MockApplication) GetAsVerifiedUser(c context.Context, id, authdUser url.URL, rw RWType) (PubObject, error) { +func (m *MockApplication) GetAsVerifiedUser(c context.Context, id, authdUser *url.URL, rw RWType) (PubObject, error) { if m.getAsVerifiedUser == nil { m.t.Fatal("unexpected call to MockApplication GetAsVerifiedUser") } return m.getAsVerifiedUser(c, id, authdUser, rw) } -func (m *MockApplication) Has(c context.Context, id url.URL) (bool, error) { +func (m *MockApplication) Has(c context.Context, id *url.URL) (bool, error) { if m.has == nil { m.t.Fatal("unexpected call to MockApplication Has") } @@ -615,14 +615,14 @@ func (m *MockApplication) GetOutbox(c context.Context, r *http.Request, rw RWTyp return m.getOutbox(c, r, rw) } -func (m *MockApplication) NewId(c context.Context, t Typer) url.URL { +func (m *MockApplication) NewId(c context.Context, t Typer) *url.URL { if m.newId == nil { m.t.Fatal("unexpected call to MockApplication NewId") } return m.newId(c, t) } -func (m *MockApplication) GetPublicKey(c context.Context, publicKeyId string) (crypto.PublicKey, httpsig.Algorithm, url.URL, error) { +func (m *MockApplication) GetPublicKey(c context.Context, publicKeyId string) (crypto.PublicKey, httpsig.Algorithm, *url.URL, error) { if m.getPublicKey == nil { m.t.Fatal("unexpected call to MockApplication GetPublicKey") } @@ -636,8 +636,8 @@ type MockSocialApp struct { t *testing.T canAdd func(c context.Context, o vocab.ObjectType, t vocab.ObjectType) bool canRemove func(c context.Context, o vocab.ObjectType, t vocab.ObjectType) bool - actorIRI func(c context.Context, r *http.Request) (url.URL, error) - getPublicKeyForOutbox func(c context.Context, publicKeyId string, boxIRI url.URL) (crypto.PublicKey, httpsig.Algorithm, error) + actorIRI func(c context.Context, r *http.Request) (*url.URL, error) + getPublicKeyForOutbox func(c context.Context, publicKeyId string, boxIRI *url.URL) (crypto.PublicKey, httpsig.Algorithm, error) getSocialAPIVerifier func(c context.Context) SocialAPIVerifier } @@ -655,14 +655,14 @@ func (m *MockSocialApp) CanRemove(c context.Context, o vocab.ObjectType, t vocab return m.canRemove(c, o, t) } -func (m *MockSocialApp) ActorIRI(c context.Context, r *http.Request) (url.URL, error) { +func (m *MockSocialApp) ActorIRI(c context.Context, r *http.Request) (*url.URL, error) { if m.actorIRI == nil { m.t.Fatal("unexpected call to MockSocialApp ActorIRI") } return m.actorIRI(c, r) } -func (m *MockSocialApp) GetPublicKeyForOutbox(c context.Context, publicKeyId string, boxIRI url.URL) (crypto.PublicKey, httpsig.Algorithm, error) { +func (m *MockSocialApp) GetPublicKeyForOutbox(c context.Context, publicKeyId string, boxIRI *url.URL) (crypto.PublicKey, httpsig.Algorithm, error) { if m.getPublicKeyForOutbox == nil { m.t.Fatal("unexpected call to MockSocialApp GetPublicKeyForOutbox") } @@ -800,11 +800,11 @@ type MockFederateApp struct { canAdd func(c context.Context, obj vocab.ObjectType, target vocab.ObjectType) bool canRemove func(c context.Context, obj vocab.ObjectType, target vocab.ObjectType) bool onFollow func(c context.Context, s *streams.Follow) FollowResponse - unblocked func(c context.Context, actorIRIs []url.URL) error - getFollowing func(c context.Context, actor url.URL) (vocab.CollectionType, error) - filterForwarding func(c context.Context, activity vocab.ActivityType, iris []url.URL) ([]url.URL, error) + unblocked func(c context.Context, actorIRIs []*url.URL) error + getFollowing func(c context.Context, actor *url.URL) (vocab.CollectionType, error) + filterForwarding func(c context.Context, activity vocab.ActivityType, iris []*url.URL) ([]*url.URL, error) newSigner func() (httpsig.Signer, error) - privateKey func(boxIRI url.URL) (crypto.PrivateKey, string, error) + privateKey func(boxIRI *url.URL) (crypto.PrivateKey, string, error) } func (m *MockFederateApp) CanFederateAdd(c context.Context, obj vocab.ObjectType, target vocab.ObjectType) bool { @@ -828,21 +828,21 @@ func (m *MockFederateApp) OnFollow(c context.Context, s *streams.Follow) FollowR return m.onFollow(c, s) } -func (m *MockFederateApp) Unblocked(c context.Context, actorIRIs []url.URL) error { +func (m *MockFederateApp) Unblocked(c context.Context, actorIRIs []*url.URL) error { if m.unblocked == nil { m.t.Fatal("unexpected call to MockFederateApp Unblocked") } return m.unblocked(c, actorIRIs) } -func (m *MockFederateApp) GetFollowing(c context.Context, actor url.URL) (vocab.CollectionType, error) { +func (m *MockFederateApp) GetFollowing(c context.Context, actor *url.URL) (vocab.CollectionType, error) { if m.getFollowing == nil { m.t.Fatal("unexpected call to MockFederateApp GetFollowing") } return m.getFollowing(c, actor) } -func (m *MockFederateApp) FilterForwarding(c context.Context, activity vocab.ActivityType, iris []url.URL) ([]url.URL, error) { +func (m *MockFederateApp) FilterForwarding(c context.Context, activity vocab.ActivityType, iris []*url.URL) ([]*url.URL, error) { if m.filterForwarding == nil { m.t.Fatal("unexpected call to MockFederateApp FilterForwarding") } @@ -856,7 +856,7 @@ func (m *MockFederateApp) NewSigner() (httpsig.Signer, error) { return m.newSigner() } -func (m *MockFederateApp) PrivateKey(boxIRI url.URL) (privKey crypto.PrivateKey, pubKeyId string, err error) { +func (m *MockFederateApp) PrivateKey(boxIRI *url.URL) (privKey crypto.PrivateKey, pubKeyId string, err error) { if m.privateKey == nil { m.t.Fatal("unexpected call to MockFederateApp PrivateKey") } @@ -870,16 +870,16 @@ type MockSocialFederateApp struct { *MockSocialApp } -func (m *MockSocialFederateApp) Owns(c context.Context, id url.URL) bool { +func (m *MockSocialFederateApp) Owns(c context.Context, id *url.URL) bool { return m.MockFederateApp.Owns(c, id) } -func (m *MockSocialFederateApp) Get(c context.Context, id url.URL, rw RWType) (PubObject, error) { +func (m *MockSocialFederateApp) Get(c context.Context, id *url.URL, rw RWType) (PubObject, error) { return m.MockFederateApp.Get(c, id, rw) } -func (m *MockSocialFederateApp) GetAsVerifiedUser(c context.Context, id, authdUser url.URL, rw RWType) (PubObject, error) { +func (m *MockSocialFederateApp) GetAsVerifiedUser(c context.Context, id, authdUser *url.URL, rw RWType) (PubObject, error) { return m.MockFederateApp.GetAsVerifiedUser(c, id, authdUser, rw) } -func (m *MockSocialFederateApp) Has(c context.Context, id url.URL) (bool, error) { +func (m *MockSocialFederateApp) Has(c context.Context, id *url.URL) (bool, error) { return m.MockFederateApp.Has(c, id) } func (m *MockSocialFederateApp) Set(c context.Context, o PubObject) error { @@ -891,10 +891,10 @@ func (m *MockSocialFederateApp) GetInbox(c context.Context, r *http.Request, rw func (m *MockSocialFederateApp) GetOutbox(c context.Context, r *http.Request, rw RWType) (vocab.OrderedCollectionType, error) { return m.MockFederateApp.GetOutbox(c, r, rw) } -func (m *MockSocialFederateApp) NewId(c context.Context, t Typer) url.URL { +func (m *MockSocialFederateApp) NewId(c context.Context, t Typer) *url.URL { return m.MockFederateApp.NewId(c, t) } -func (m *MockSocialFederateApp) GetPublicKey(c context.Context, publicKeyId string) (crypto.PublicKey, httpsig.Algorithm, url.URL, error) { +func (m *MockSocialFederateApp) GetPublicKey(c context.Context, publicKeyId string) (crypto.PublicKey, httpsig.Algorithm, *url.URL, error) { return m.MockFederateApp.GetPublicKey(c, publicKeyId) } @@ -902,10 +902,10 @@ var _ Deliverer = &MockDeliverer{} type MockDeliverer struct { t *testing.T - do func(b []byte, to url.URL, toDo func(b []byte, u url.URL) error) + do func(b []byte, to *url.URL, toDo func(b []byte, u *url.URL) error) } -func (m *MockDeliverer) Do(b []byte, to url.URL, toDo func(b []byte, u url.URL) error) { +func (m *MockDeliverer) Do(b []byte, to *url.URL, toDo func(b []byte, u *url.URL) error) { if m.do == nil { m.t.Fatal("unexpected call to MockDeliverer Do") } @@ -931,7 +931,7 @@ var _ SocialAPIVerifier = &MockSocialAPIVerifier{} type MockSocialAPIVerifier struct { t *testing.T verify func(r *http.Request) (authenticatedUser *url.URL, authn, authz bool, err error) - verifyForOutbox func(r *http.Request, outbox url.URL) (authn, authz bool, err error) + verifyForOutbox func(r *http.Request, outbox *url.URL) (authn, authz bool, err error) } func (m *MockSocialAPIVerifier) Verify(r *http.Request) (authenticatedUser *url.URL, authn, authz bool, err error) { @@ -941,7 +941,7 @@ func (m *MockSocialAPIVerifier) Verify(r *http.Request) (authenticatedUser *url. return m.verify(r) } -func (m *MockSocialAPIVerifier) VerifyForOutbox(r *http.Request, outbox url.URL) (authn, authz bool, err error) { +func (m *MockSocialAPIVerifier) VerifyForOutbox(r *http.Request, outbox *url.URL) (authn, authz bool, err error) { if m.verifyForOutbox == nil { m.t.Fatal("unexpected call to MockSocialAPIVerifier VerifyForOutbox") } @@ -987,7 +987,7 @@ func PreparePubberPostInboxTest(t *testing.T, app *MockSocialFederateApp, social } func PreparePostInboxTest(t *testing.T, app *MockApplication, socialApp *MockSocialApp, fedApp *MockFederateApp, socialCb, fedCb *MockCallbacker, d *MockDeliverer, h *MockHttpClient, p Pubber) { - fedApp.unblocked = func(c context.Context, actorIRIs []url.URL) error { + fedApp.unblocked = func(c context.Context, actorIRIs []*url.URL) error { return nil } app.getInbox = func(c context.Context, r *http.Request, rw RWType) (vocab.OrderedCollectionType, error) { @@ -1001,7 +1001,7 @@ func PreparePostInboxTest(t *testing.T, app *MockApplication, socialApp *MockSoc app.set = func(c context.Context, o PubObject) error { return nil } - app.has = func(c context.Context, id url.URL) (bool, error) { + app.has = func(c context.Context, id *url.URL) (bool, error) { return false, nil } return @@ -1012,7 +1012,7 @@ func PreparePubberPostOutboxTest(t *testing.T, app *MockSocialFederateApp, socia } func PreparePostOutboxTest(t *testing.T, app *MockApplication, socialApp *MockSocialApp, fedApp *MockFederateApp, socialCb, fedCb *MockCallbacker, d *MockDeliverer, h *MockHttpClient, p Pubber) { - socialApp.getPublicKeyForOutbox = func(c context.Context, publicKeyId string, boxIRI url.URL) (crypto.PublicKey, httpsig.Algorithm, error) { + socialApp.getPublicKeyForOutbox = func(c context.Context, publicKeyId string, boxIRI *url.URL) (crypto.PublicKey, httpsig.Algorithm, error) { return testPrivateKey.Public(), httpsig.RSA_SHA256, nil } socialApp.getSocialAPIVerifier = func(c context.Context) SocialAPIVerifier { @@ -1025,11 +1025,11 @@ func PreparePostOutboxTest(t *testing.T, app *MockApplication, socialApp *MockSo } return s, err } - fedApp.privateKey = func(boxIRI url.URL) (crypto.PrivateKey, string, error) { + fedApp.privateKey = func(boxIRI *url.URL) (crypto.PrivateKey, string, error) { return testPrivateKey, testPublicKeyId, nil } - app.newId = func(c context.Context, t Typer) url.URL { - return *testNewIRI + app.newId = func(c context.Context, t Typer) *url.URL { + return testNewIRI } app.getOutbox = func(c context.Context, r *http.Request, rw RWType) (vocab.OrderedCollectionType, error) { if rw != ReadWrite { @@ -1066,7 +1066,7 @@ func PreparePostOutboxTest(t *testing.T, app *MockApplication, socialApp *MockSo } return nil, nil } - d.do = func(b []byte, u url.URL, toDo func(b []byte, u url.URL) error) { + d.do = func(b []byte, u *url.URL, toDo func(b []byte, u *url.URL) error) { if err := toDo(b, u); err != nil { t.Fatalf("Unexpected error in MockDeliverer.Do: %s", err) } @@ -1124,8 +1124,8 @@ func TestSocialPubber_PostOutbox(t *testing.T) { req := Sign(ActivityPubRequest(httptest.NewRequest("POST", testOutboxURI, bytes.NewBuffer(MustSerialize(testCreateNote))))) gotPublicKeyForOutbox := 0 var gotPublicKeyId string - var gotBoxIRI url.URL - socialApp.getPublicKeyForOutbox = func(c context.Context, publicKeyId string, boxIRI url.URL) (crypto.PublicKey, httpsig.Algorithm, error) { + var gotBoxIRI *url.URL + socialApp.getPublicKeyForOutbox = func(c context.Context, publicKeyId string, boxIRI *url.URL) (crypto.PublicKey, httpsig.Algorithm, error) { gotPublicKeyForOutbox++ gotPublicKeyId = publicKeyId gotBoxIRI = boxIRI @@ -1137,9 +1137,9 @@ func TestSocialPubber_PostOutbox(t *testing.T) { return nil } gotNewId := 0 - app.newId = func(c context.Context, t Typer) url.URL { + app.newId = func(c context.Context, t Typer) *url.URL { gotNewId++ - return *testNewIRI + return testNewIRI } gotOutbox := 0 app.getOutbox = func(c context.Context, r *http.Request, rw RWType) (vocab.OrderedCollectionType, error) { @@ -1181,7 +1181,7 @@ func TestSocialPubber_PostOutbox(t *testing.T) { t.Fatalf("expected %d, got %d", 1, gotPublicKeyForOutbox) } else if gotPublicKeyId != testPublicKeyId { t.Fatalf("expected %s, got %s", testPublicKeyId, gotPublicKeyId) - } else if s := (&gotBoxIRI).String(); s != testOutboxURI { + } else if s := gotBoxIRI.String(); s != testOutboxURI { t.Fatalf("expected %s, got %s", testOutboxURI, s) } else if gotSocialAPIVerifier != 1 { t.Fatalf("expected %d, got %d", 1, gotSocialAPIVerifier) @@ -1197,7 +1197,7 @@ func TestSocialPubber_PostOutbox(t *testing.T) { t.Fatalf("expected %s, got %s", "Note", l) } else if gotCreate != 1 { t.Fatalf("expected %d, got %d", 1, gotCreate) - } else if iri := gotCreateCallback.Raw().GetActorObject(0).GetId(); iri.String() != sallyIRIString { + } else if iri := gotCreateCallback.Raw().GetActorObject(0).GetId(); *iri != *sallyIRI { t.Fatalf("expected %s, got %s", sallyIRIString, iri.String()) } else if l := len(resp.HeaderMap["Location"]); l != 1 { t.Fatalf("expected %d, got %d", 1, l) @@ -1214,18 +1214,18 @@ func TestSocialPubber_PostOutbox_SocialAPIVerified(t *testing.T) { req := Sign(ActivityPubRequest(httptest.NewRequest("POST", testOutboxURI, bytes.NewBuffer(MustSerialize(testCreateNote))))) gotPublicKeyForOutbox := 0 var gotPublicKeyId string - var gotBoxIRI url.URL - socialApp.getPublicKeyForOutbox = func(c context.Context, publicKeyId string, boxIRI url.URL) (crypto.PublicKey, httpsig.Algorithm, error) { + var gotBoxIRI *url.URL + socialApp.getPublicKeyForOutbox = func(c context.Context, publicKeyId string, boxIRI *url.URL) (crypto.PublicKey, httpsig.Algorithm, error) { gotPublicKeyForOutbox++ gotPublicKeyId = publicKeyId gotBoxIRI = boxIRI return testPrivateKey.Public(), httpsig.RSA_SHA256, nil } gotVerifyForOutbox := 0 - var gotVerifiedOutbox url.URL + var gotVerifiedOutbox *url.URL socialApp.getSocialAPIVerifier = func(c context.Context) SocialAPIVerifier { mockV := &MockSocialAPIVerifier{ - verifyForOutbox: func(r *http.Request, outbox url.URL) (bool, bool, error) { + verifyForOutbox: func(r *http.Request, outbox *url.URL) (bool, bool, error) { gotVerifyForOutbox++ gotVerifiedOutbox = outbox return true, true, nil @@ -1234,9 +1234,9 @@ func TestSocialPubber_PostOutbox_SocialAPIVerified(t *testing.T) { return mockV } gotNewId := 0 - app.newId = func(c context.Context, t Typer) url.URL { + app.newId = func(c context.Context, t Typer) *url.URL { gotNewId++ - return *testNewIRI + return testNewIRI } gotOutbox := 0 app.getOutbox = func(c context.Context, r *http.Request, rw RWType) (vocab.OrderedCollectionType, error) { @@ -1278,11 +1278,11 @@ func TestSocialPubber_PostOutbox_SocialAPIVerified(t *testing.T) { t.Fatalf("expected %d, got %d", 1, gotPublicKeyForOutbox) } else if gotPublicKeyId != testPublicKeyId { t.Fatalf("expected %s, got %s", testPublicKeyId, gotPublicKeyId) - } else if s := (&gotBoxIRI).String(); s != testOutboxURI { + } else if s := gotBoxIRI.String(); s != testOutboxURI { t.Fatalf("expected %s, got %s", testOutboxURI, s) } else if gotVerifyForOutbox != 1 { t.Fatalf("expected %d, got %d", 1, gotVerifyForOutbox) - } else if o := (&gotVerifiedOutbox).String(); o != testOutboxURI { + } else if o := gotVerifiedOutbox.String(); o != testOutboxURI { t.Fatalf("expected %s, got %s", testOutboxURI, o) } else if gotNewId != 1 { t.Fatalf("expected %d, got %d", 1, gotNewId) @@ -1296,7 +1296,7 @@ func TestSocialPubber_PostOutbox_SocialAPIVerified(t *testing.T) { t.Fatalf("expected %s, got %s", "Note", l) } else if gotCreate != 1 { t.Fatalf("expected %d, got %d", 1, gotCreate) - } else if iri := gotCreateCallback.Raw().GetActorObject(0).GetId(); iri.String() != sallyIRIString { + } else if iri := gotCreateCallback.Raw().GetActorObject(0).GetId(); *iri != *sallyIRI { t.Fatalf("expected %s, got %s", sallyIRIString, iri.String()) } else if l := len(resp.HeaderMap["Location"]); l != 1 { t.Fatalf("expected %d, got %d", 1, l) @@ -1342,8 +1342,8 @@ func TestFederatingPubber_PostInbox(t *testing.T) { resp := httptest.NewRecorder() req := ActivityPubRequest(httptest.NewRequest("POST", testInboxURI, bytes.NewBuffer(MustSerialize(testCreateNote)))) gotUnblocked := 0 - var iri url.URL - fedApp.unblocked = func(c context.Context, actorIRIs []url.URL) error { + var iri *url.URL + fedApp.unblocked = func(c context.Context, actorIRIs []*url.URL) error { gotUnblocked++ iri = actorIRIs[0] return nil @@ -1371,9 +1371,9 @@ func TestFederatingPubber_PostInbox(t *testing.T) { return nil } gotHas := 0 - var hasIriActivity url.URL - var hasIriTo url.URL - app.has = func(c context.Context, id url.URL) (bool, error) { + var hasIriActivity *url.URL + var hasIriTo *url.URL + app.has = func(c context.Context, id *url.URL) (bool, error) { gotHas++ if gotHas == 1 { hasIriActivity = id @@ -1384,8 +1384,8 @@ func TestFederatingPubber_PostInbox(t *testing.T) { } } gotGet := 0 - var gotIri url.URL - app.get = func(c context.Context, iri url.URL, rw RWType) (PubObject, error) { + var gotIri *url.URL + app.get = func(c context.Context, iri *url.URL, rw RWType) (PubObject, error) { if rw != Read { t.Fatalf("expected RWType of %d, got %d", Read, rw) } @@ -1419,13 +1419,13 @@ func TestFederatingPubber_PostInbox(t *testing.T) { t.Fatalf("expected %s, got %s", "Note", l) } else if gotHas != 2 { t.Fatalf("expected %d, got %d", 2, gotHas) - } else if hasIriActivityString := (&hasIriActivity).String(); hasIriActivityString != noteActivityURIString { + } else if hasIriActivityString := hasIriActivity.String(); hasIriActivityString != noteActivityURIString { t.Fatalf("expected %s, got %s", noteActivityURIString, hasIriActivityString) - } else if hasIriToString := (&hasIriTo).String(); hasIriToString != samIRIString { + } else if hasIriToString := hasIriTo.String(); hasIriToString != samIRIString { t.Fatalf("expected %s, got %s", samIRIString, hasIriToString) } else if gotGet != 1 { t.Fatalf("expected %d, got %d", 1, gotGet) - } else if gotIriString := (&gotIri).String(); gotIriString != samIRIString { + } else if gotIriString := gotIri.String(); gotIriString != samIRIString { t.Fatalf("expected %s, got %s", samIRIString, gotIriString) } else if gotCreate != 1 { t.Fatalf("expected %d, got %d", 1, gotCreate) @@ -1515,8 +1515,8 @@ func TestPubber_PostInbox(t *testing.T) { resp := httptest.NewRecorder() req := ActivityPubRequest(httptest.NewRequest("POST", testInboxURI, bytes.NewBuffer(MustSerialize(testCreateNote)))) gotUnblocked := 0 - var iri url.URL - fedApp.unblocked = func(c context.Context, actorIRIs []url.URL) error { + var iri *url.URL + fedApp.unblocked = func(c context.Context, actorIRIs []*url.URL) error { gotUnblocked++ iri = actorIRIs[0] return nil @@ -1544,9 +1544,9 @@ func TestPubber_PostInbox(t *testing.T) { return nil } gotHas := 0 - var hasIriActivity url.URL - var hasIriTo url.URL - app.MockFederateApp.has = func(c context.Context, id url.URL) (bool, error) { + var hasIriActivity *url.URL + var hasIriTo *url.URL + app.MockFederateApp.has = func(c context.Context, id *url.URL) (bool, error) { gotHas++ if gotHas == 1 { hasIriActivity = id @@ -1557,8 +1557,8 @@ func TestPubber_PostInbox(t *testing.T) { } } gotGet := 0 - var gotIri url.URL - app.MockFederateApp.get = func(c context.Context, iri url.URL, rw RWType) (PubObject, error) { + var gotIri *url.URL + app.MockFederateApp.get = func(c context.Context, iri *url.URL, rw RWType) (PubObject, error) { if rw != Read { t.Fatalf("expected RWType of %d, got %d", Read, rw) } @@ -1592,13 +1592,13 @@ func TestPubber_PostInbox(t *testing.T) { t.Fatalf("expected %s, got %s", "Note", l) } else if gotHas != 2 { t.Fatalf("expected %d, got %d", 2, gotHas) - } else if hasIriActivityString := (&hasIriActivity).String(); hasIriActivityString != noteActivityURIString { + } else if hasIriActivityString := hasIriActivity.String(); hasIriActivityString != noteActivityURIString { t.Fatalf("expected %s, got %s", noteActivityURIString, hasIriActivityString) - } else if hasIriToString := (&hasIriTo).String(); hasIriToString != samIRIString { + } else if hasIriToString := hasIriTo.String(); hasIriToString != samIRIString { t.Fatalf("expected %s, got %s", samIRIString, hasIriToString) } else if gotGet != 1 { t.Fatalf("expected %d, got %d", 1, gotGet) - } else if gotIriString := (&gotIri).String(); gotIriString != samIRIString { + } else if gotIriString := gotIri.String(); gotIriString != samIRIString { t.Fatalf("expected %s, got %s", samIRIString, gotIriString) } else if gotCreate != 1 { t.Fatalf("expected %d, got %d", 1, gotCreate) @@ -1645,8 +1645,8 @@ func TestPubber_PostOutbox(t *testing.T) { req := Sign(ActivityPubRequest(httptest.NewRequest("POST", testOutboxURI, bytes.NewBuffer(MustSerialize(testCreateNote))))) gotPublicKey := 0 var gotPublicKeyId string - var gotBoxIRI url.URL - socialApp.getPublicKeyForOutbox = func(c context.Context, publicKeyId string, boxIRI url.URL) (crypto.PublicKey, httpsig.Algorithm, error) { + var gotBoxIRI *url.URL + socialApp.getPublicKeyForOutbox = func(c context.Context, publicKeyId string, boxIRI *url.URL) (crypto.PublicKey, httpsig.Algorithm, error) { gotPublicKey++ gotPublicKeyId = publicKeyId gotBoxIRI = boxIRI @@ -1667,16 +1667,16 @@ func TestPubber_PostOutbox(t *testing.T) { return s, err } gotPrivateKey := 0 - var gotPrivateKeyIRI url.URL - fedApp.privateKey = func(boxIRI url.URL) (crypto.PrivateKey, string, error) { + var gotPrivateKeyIRI *url.URL + fedApp.privateKey = func(boxIRI *url.URL) (crypto.PrivateKey, string, error) { gotPrivateKey++ gotPrivateKeyIRI = boxIRI return testPrivateKey, testPublicKeyId, nil } gotNewId := 0 - app.MockFederateApp.newId = func(c context.Context, t Typer) url.URL { + app.MockFederateApp.newId = func(c context.Context, t Typer) *url.URL { gotNewId++ - return *testNewIRI + return testNewIRI } gotOutbox := 0 app.MockFederateApp.getOutbox = func(c context.Context, r *http.Request, rw RWType) (vocab.OrderedCollectionType, error) { @@ -1738,8 +1738,8 @@ func TestPubber_PostOutbox(t *testing.T) { return nil, nil } gotDoDelivery := 0 - var doDeliveryURL url.URL - d.do = func(b []byte, u url.URL, toDo func(b []byte, u url.URL) error) { + var doDeliveryURL *url.URL + d.do = func(b []byte, u *url.URL, toDo func(b []byte, u *url.URL) error) { gotDoDelivery++ doDeliveryURL = u if err := toDo(b, u); err != nil { @@ -1755,7 +1755,7 @@ func TestPubber_PostOutbox(t *testing.T) { t.Fatalf("expected %d, got %d", 1, gotPublicKey) } else if gotPublicKeyId != testPublicKeyId { t.Fatalf("expected %s, got %s", testPublicKeyId, gotPublicKeyId) - } else if s := (&gotBoxIRI).String(); s != testOutboxURI { + } else if s := gotBoxIRI.String(); s != testOutboxURI { t.Fatalf("expected %s, got %s", testOutboxURI, s) } else if gotSocialAPIVerifier != 1 { t.Fatalf("expected %d, got %d", 1, gotSocialAPIVerifier) @@ -1765,7 +1765,7 @@ func TestPubber_PostOutbox(t *testing.T) { t.Fatalf("expected %d, got %d", 1, gotNewSigner) } else if gotPrivateKey != 1 { t.Fatalf("expected %d, got %d", 1, gotPrivateKey) - } else if s := (&gotPrivateKeyIRI).String(); s != testOutboxURI { + } else if s := gotPrivateKeyIRI.String(); s != testOutboxURI { t.Fatalf("expected %s, got %s", testOutboxURI, s) } else if gotOutbox != 1 { t.Fatalf("expected %d, got %d", 1, gotOutbox) @@ -1868,8 +1868,8 @@ func TestPostInbox_HandlesBlocked(t *testing.T) { req := ActivityPubRequest(httptest.NewRequest("POST", testInboxURI, bytes.NewBuffer(MustSerialize(testCreateNote)))) blockedErr := fmt.Errorf("blocked") gotBlocked := 0 - var iri url.URL - fedApp.unblocked = func(c context.Context, actorIRIs []url.URL) error { + var iri *url.URL + fedApp.unblocked = func(c context.Context, actorIRIs []*url.URL) error { gotBlocked++ iri = actorIRIs[0] return blockedErr @@ -1891,7 +1891,7 @@ func TestPostInbox_RequiresObject(t *testing.T) { name: "create", input: func() vocab.Serializer { v := &vocab.Create{} - v.SetId(*noteActivityIRI) + v.SetId(noteActivityIRI) v.AppendSummaryString("Sally created a note") v.AppendActorObject(sallyActor) v.AppendToObject(samActor) @@ -1902,7 +1902,7 @@ func TestPostInbox_RequiresObject(t *testing.T) { name: "update", input: func() vocab.Serializer { v := &vocab.Update{} - v.SetId(*noteActivityIRI) + v.SetId(noteActivityIRI) v.AppendSummaryString("Sally updated a note") v.AppendActorObject(sallyActor) v.AppendToObject(samActor) @@ -1913,7 +1913,7 @@ func TestPostInbox_RequiresObject(t *testing.T) { name: "delete", input: func() vocab.Serializer { v := &vocab.Delete{} - v.SetId(*noteActivityIRI) + v.SetId(noteActivityIRI) v.AppendActorObject(sallyActor) v.AppendToObject(samActor) return v @@ -1923,7 +1923,7 @@ func TestPostInbox_RequiresObject(t *testing.T) { name: "follow", input: func() vocab.Serializer { v := &vocab.Follow{} - v.SetId(*noteActivityIRI) + v.SetId(noteActivityIRI) v.AppendActorObject(sallyActor) v.AppendToObject(samActor) return v @@ -1933,7 +1933,7 @@ func TestPostInbox_RequiresObject(t *testing.T) { name: "add", input: func() vocab.Serializer { v := &vocab.Add{} - v.SetId(*noteActivityIRI) + v.SetId(noteActivityIRI) v.AppendActorObject(sallyActor) v.AppendToObject(samActor) v.AppendTargetObject(testNote) @@ -1944,7 +1944,7 @@ func TestPostInbox_RequiresObject(t *testing.T) { name: "remove", input: func() vocab.Serializer { v := &vocab.Remove{} - v.SetId(*noteActivityIRI) + v.SetId(noteActivityIRI) v.AppendActorObject(sallyActor) v.AppendToObject(samActor) v.AppendTargetObject(testNote) @@ -1955,7 +1955,7 @@ func TestPostInbox_RequiresObject(t *testing.T) { name: "like", input: func() vocab.Serializer { v := &vocab.Like{} - v.SetId(*noteActivityIRI) + v.SetId(noteActivityIRI) v.AppendActorObject(sallyActor) v.AppendToObject(samActor) return v @@ -1965,7 +1965,7 @@ func TestPostInbox_RequiresObject(t *testing.T) { name: "block", input: func() vocab.Serializer { v := &vocab.Block{} - v.SetId(*noteActivityIRI) + v.SetId(noteActivityIRI) v.AppendActorObject(sallyActor) v.AppendToObject(samActor) return v @@ -1975,7 +1975,7 @@ func TestPostInbox_RequiresObject(t *testing.T) { name: "undo", input: func() vocab.Serializer { v := &vocab.Undo{} - v.SetId(*noteActivityIRI) + v.SetId(noteActivityIRI) v.AppendActorObject(sallyActor) v.AppendToObject(samActor) return v @@ -1983,7 +1983,7 @@ func TestPostInbox_RequiresObject(t *testing.T) { }, } _, _, fedApp, _, _, _, _, p := NewPubberTest(t) - fedApp.unblocked = func(c context.Context, actorIRIs []url.URL) error { + fedApp.unblocked = func(c context.Context, actorIRIs []*url.URL) error { return nil } for _, test := range tests { @@ -2010,7 +2010,7 @@ func TestPostInbox_RequiresTarget(t *testing.T) { name: "add", input: func() vocab.Serializer { v := &vocab.Add{} - v.SetId(*noteActivityIRI) + v.SetId(noteActivityIRI) v.AppendActorObject(sallyActor) v.AppendToObject(samActor) v.AppendObject(testNote) @@ -2021,7 +2021,7 @@ func TestPostInbox_RequiresTarget(t *testing.T) { name: "remove", input: func() vocab.Serializer { v := &vocab.Remove{} - v.SetId(*noteActivityIRI) + v.SetId(noteActivityIRI) v.AppendActorObject(sallyActor) v.AppendToObject(samActor) v.AppendObject(testNote) @@ -2030,7 +2030,7 @@ func TestPostInbox_RequiresTarget(t *testing.T) { }, } _, _, fedApp, _, _, _, _, p := NewPubberTest(t) - fedApp.unblocked = func(c context.Context, actorIRIs []url.URL) error { + fedApp.unblocked = func(c context.Context, actorIRIs []*url.URL) error { return nil } for _, test := range tests { @@ -2060,7 +2060,7 @@ func TestPostInbox_DoesNotAddToInboxIfDuplicate(t *testing.T) { } app.MockFederateApp.getInbox = func(c context.Context, r *http.Request, rw RWType) (vocab.OrderedCollectionType, error) { inbox := &vocab.OrderedCollection{} - inbox.AppendOrderedItemsIRI(*noteActivityIRI) + inbox.AppendOrderedItemsIRI(noteActivityIRI) return inbox, nil } fedCb.create = func(c context.Context, s *streams.Create) error { @@ -2068,7 +2068,7 @@ func TestPostInbox_DoesNotAddToInboxIfDuplicate(t *testing.T) { } handled, err := p.PostInbox(context.Background(), resp, req) expectedInbox := &vocab.OrderedCollection{} - expectedInbox.AppendOrderedItemsIRI(*noteActivityIRI) + expectedInbox.AppendOrderedItemsIRI(noteActivityIRI) if err != nil { t.Fatal(err) } else if !handled { @@ -2087,8 +2087,8 @@ func TestPostInbox_OriginMustMatch(t *testing.T) { name: "update", input: func() vocab.ActivityType { a := &vocab.Update{} - a.SetId(*otherOriginIRI) - a.AppendActorIRI(*otherOriginActorIRI) + a.SetId(otherOriginIRI) + a.AppendActorIRI(otherOriginActorIRI) a.AppendObject(testCreateNote) return a }, @@ -2097,9 +2097,9 @@ func TestPostInbox_OriginMustMatch(t *testing.T) { name: "delete", input: func() vocab.ActivityType { a := &vocab.Delete{} - a.SetId(*otherOriginIRI) - a.AppendActorIRI(*otherOriginActorIRI) - a.AppendObjectIRI(*noteIRI) + a.SetId(otherOriginIRI) + a.AppendActorIRI(otherOriginActorIRI) + a.AppendObjectIRI(noteIRI) return a }, }, @@ -2128,7 +2128,7 @@ func TestPostInbox_ActivityActorsMustCoverObjectActors(t *testing.T) { name: "undo", input: func() vocab.ActivityType { a := &vocab.Undo{} - a.SetId(*noteActivityIRI) + a.SetId(noteActivityIRI) a.AppendActorObject(samActor) a.AppendObject(testLikeNote) return a @@ -2261,10 +2261,10 @@ func TestPostInbox_Delete_FetchesObject(t *testing.T) { PreparePubberPostInboxTest(t, app, socialApp, fedApp, socialCb, fedCb, d, httpClient, p) resp := httptest.NewRecorder() req := ActivityPubRequest(httptest.NewRequest("POST", testInboxURI, bytes.NewBuffer(MustSerialize(testDeleteNote)))) - app.MockFederateApp.get = func(c context.Context, id url.URL, rw RWType) (PubObject, error) { + app.MockFederateApp.get = func(c context.Context, id *url.URL, rw RWType) (PubObject, error) { if rw != ReadWrite { t.Fatalf("expected RWType of %d, got %d", ReadWrite, rw) - } else if id != *noteIRI { + } else if *id != *noteIRI { t.Fatalf("expected %s, got %s", noteIRI, id) } return testNote, nil @@ -2300,7 +2300,7 @@ func TestPostInbox_Delete_SetsTombstone(t *testing.T) { name: "forward published time", input: func() PubObject { testNote := &vocab.Note{} - testNote.SetId(*noteIRI) + testNote.SetId(noteIRI) testNote.AppendType("Note") testNote.AppendNameString(noteName) testNote.AppendContentString("This is a simple note") @@ -2309,7 +2309,7 @@ func TestPostInbox_Delete_SetsTombstone(t *testing.T) { }, expected: func() vocab.Serializer { testTombstoneNote := &vocab.Tombstone{} - testTombstoneNote.SetId(*noteIRI) + testTombstoneNote.SetId(noteIRI) testTombstoneNote.AppendFormerTypeString("Note") testTombstoneNote.SetDeleted(now) testTombstoneNote.SetPublished(now) @@ -2320,19 +2320,19 @@ func TestPostInbox_Delete_SetsTombstone(t *testing.T) { name: "forward published iri", input: func() PubObject { testNote := &vocab.Note{} - testNote.SetId(*noteIRI) + testNote.SetId(noteIRI) testNote.AppendType("Note") testNote.AppendNameString(noteName) testNote.AppendContentString("This is a simple note") - testNote.SetPublishedIRI(*iri) + testNote.SetPublishedIRI(iri) return testNote }, expected: func() vocab.Serializer { testTombstoneNote := &vocab.Tombstone{} - testTombstoneNote.SetId(*noteIRI) + testTombstoneNote.SetId(noteIRI) testTombstoneNote.AppendFormerTypeString("Note") testTombstoneNote.SetDeleted(now) - testTombstoneNote.SetPublishedIRI(*iri) + testTombstoneNote.SetPublishedIRI(iri) return testTombstoneNote }, }, @@ -2340,7 +2340,7 @@ func TestPostInbox_Delete_SetsTombstone(t *testing.T) { name: "forward updated time", input: func() PubObject { testNote := &vocab.Note{} - testNote.SetId(*noteIRI) + testNote.SetId(noteIRI) testNote.AppendType("Note") testNote.AppendNameString(noteName) testNote.AppendContentString("This is a simple note") @@ -2349,7 +2349,7 @@ func TestPostInbox_Delete_SetsTombstone(t *testing.T) { }, expected: func() vocab.Serializer { testTombstoneNote := &vocab.Tombstone{} - testTombstoneNote.SetId(*noteIRI) + testTombstoneNote.SetId(noteIRI) testTombstoneNote.AppendFormerTypeString("Note") testTombstoneNote.SetDeleted(now) testTombstoneNote.SetUpdated(now) @@ -2360,19 +2360,19 @@ func TestPostInbox_Delete_SetsTombstone(t *testing.T) { name: "forward updated iri", input: func() PubObject { testNote := &vocab.Note{} - testNote.SetId(*noteIRI) + testNote.SetId(noteIRI) testNote.AppendType("Note") testNote.AppendNameString(noteName) testNote.AppendContentString("This is a simple note") - testNote.SetUpdatedIRI(*iri) + testNote.SetUpdatedIRI(iri) return testNote }, expected: func() vocab.Serializer { testTombstoneNote := &vocab.Tombstone{} - testTombstoneNote.SetId(*noteIRI) + testTombstoneNote.SetId(noteIRI) testTombstoneNote.AppendFormerTypeString("Note") testTombstoneNote.SetDeleted(now) - testTombstoneNote.SetUpdatedIRI(*iri) + testTombstoneNote.SetUpdatedIRI(iri) return testTombstoneNote }, }, @@ -2393,7 +2393,7 @@ func TestPostInbox_Delete_SetsTombstone(t *testing.T) { } for _, test := range tests { t.Logf("Running table test case %q", test.name) - app.MockFederateApp.get = func(c context.Context, id url.URL, rw RWType) (PubObject, error) { + app.MockFederateApp.get = func(c context.Context, id *url.URL, rw RWType) (PubObject, error) { return test.input(), nil } gotSet = 0 @@ -2417,7 +2417,7 @@ func TestPostInbox_Delete_CallsCallback(t *testing.T) { PreparePubberPostInboxTest(t, app, socialApp, fedApp, socialCb, fedCb, d, httpClient, p) resp := httptest.NewRecorder() req := ActivityPubRequest(httptest.NewRequest("POST", testInboxURI, bytes.NewBuffer(MustSerialize(testDeleteNote)))) - app.MockFederateApp.get = func(c context.Context, id url.URL, rw RWType) (PubObject, error) { + app.MockFederateApp.get = func(c context.Context, id *url.URL, rw RWType) (PubObject, error) { return testNote, nil } gotCallback := 0 @@ -2482,8 +2482,8 @@ func TestPostInbox_Follow_AutoReject(t *testing.T) { return s, err } gotPrivateKey := 0 - var gotPrivateKeyIRI url.URL - fedApp.privateKey = func(boxIRI url.URL) (crypto.PrivateKey, string, error) { + var gotPrivateKeyIRI *url.URL + fedApp.privateKey = func(boxIRI *url.URL) (crypto.PrivateKey, string, error) { gotPrivateKey++ gotPrivateKeyIRI = boxIRI return testPrivateKey, testPublicKeyId, nil @@ -2492,8 +2492,8 @@ func TestPostInbox_Follow_AutoReject(t *testing.T) { return nil } gotOwns := 0 - var ownsIRI url.URL - app.MockFederateApp.owns = func(c context.Context, id url.URL) bool { + var ownsIRI *url.URL + app.MockFederateApp.owns = func(c context.Context, id *url.URL) bool { gotOwns++ ownsIRI = id return true @@ -2521,9 +2521,9 @@ func TestPostInbox_Follow_AutoReject(t *testing.T) { return nil, nil } gotDoDelivery := 0 - var doDeliveryURL url.URL + var doDeliveryURL *url.URL var bytesToSend []byte - d.do = func(b []byte, u url.URL, toDo func(b []byte, u url.URL) error) { + d.do = func(b []byte, u *url.URL, toDo func(b []byte, u *url.URL) error) { gotDoDelivery++ doDeliveryURL = u bytesToSend = b @@ -2543,7 +2543,7 @@ func TestPostInbox_Follow_AutoReject(t *testing.T) { t.Fatalf("expected %d, got %d", 1, gotNewSigner) } else if gotPrivateKey != 1 { t.Fatalf("expected %d, got %d", 1, gotPrivateKey) - } else if s := (&gotPrivateKeyIRI).String(); s != testInboxURI { + } else if s := gotPrivateKeyIRI.String(); s != testInboxURI { t.Fatalf("expected %s, got %s", testInboxURI, s) } else if gotOnFollow != 1 { t.Fatalf("expected %d, got %d", 1, gotOnFollow) @@ -2586,8 +2586,8 @@ func TestPostInbox_Follow_AutoAccept(t *testing.T) { return s, err } gotPrivateKey := 0 - var gotPrivateKeyIRI url.URL - fedApp.privateKey = func(boxIRI url.URL) (crypto.PrivateKey, string, error) { + var gotPrivateKeyIRI *url.URL + fedApp.privateKey = func(boxIRI *url.URL) (crypto.PrivateKey, string, error) { gotPrivateKey++ gotPrivateKeyIRI = boxIRI return testPrivateKey, testPublicKeyId, nil @@ -2618,9 +2618,9 @@ func TestPostInbox_Follow_AutoAccept(t *testing.T) { return nil, nil } gotDoDelivery := 0 - var doDeliveryURL url.URL + var doDeliveryURL *url.URL var bytesToSend []byte - d.do = func(b []byte, u url.URL, toDo func(b []byte, u url.URL) error) { + d.do = func(b []byte, u *url.URL, toDo func(b []byte, u *url.URL) error) { gotDoDelivery++ doDeliveryURL = u bytesToSend = b @@ -2629,23 +2629,23 @@ func TestPostInbox_Follow_AutoAccept(t *testing.T) { } } gotOwns := 0 - var ownsIRI url.URL - app.MockFederateApp.owns = func(c context.Context, id url.URL) bool { + var ownsIRI *url.URL + app.MockFederateApp.owns = func(c context.Context, id *url.URL) bool { gotOwns++ ownsIRI = id return true } gotGet := 0 - var getIRI url.URL - app.MockFederateApp.get = func(c context.Context, id url.URL, rw RWType) (PubObject, error) { + var getIRI *url.URL + app.MockFederateApp.get = func(c context.Context, id *url.URL, rw RWType) (PubObject, error) { if rw != ReadWrite { t.Fatalf("expected RWType of %d, got %d", ReadWrite, rw) } gotGet++ getIRI = id samActor := &vocab.Person{} - samActor.SetInboxAnyURI(*samIRIInbox) - samActor.SetId(*samIRI) + samActor.SetInboxAnyURI(samIRIInbox) + samActor.SetId(samIRI) samActor.SetFollowersCollection(&vocab.Collection{}) return samActor, nil } @@ -2664,8 +2664,8 @@ func TestPostInbox_Follow_AutoAccept(t *testing.T) { expectedFollowers := &vocab.Collection{} expectedFollowers.AppendItemsObject(sallyActor) expectedActor := &vocab.Person{} - expectedActor.SetInboxAnyURI(*samIRIInbox) - expectedActor.SetId(*samIRI) + expectedActor.SetInboxAnyURI(samIRIInbox) + expectedActor.SetId(samIRI) expectedActor.SetFollowersCollection(expectedFollowers) handled, err := p.PostInbox(context.Background(), resp, req) if err != nil { @@ -2678,7 +2678,7 @@ func TestPostInbox_Follow_AutoAccept(t *testing.T) { t.Fatalf("expected %d, got %d", 1, gotNewSigner) } else if gotPrivateKey != 1 { t.Fatalf("expected %d, got %d", 1, gotPrivateKey) - } else if s := (&gotPrivateKeyIRI).String(); s != testInboxURI { + } else if s := gotPrivateKeyIRI.String(); s != testInboxURI { t.Fatalf("expected %s, got %s", testInboxURI, s) } else if gotHttpDo != 2 { t.Fatalf("expected %d, got %d", 2, gotHttpDo) @@ -2722,7 +2722,7 @@ func TestPostInbox_Follow_DoesNotAddForAutoAcceptIfAlreadyPresent(t *testing.T) } return s, err } - fedApp.privateKey = func(boxIRI url.URL) (crypto.PrivateKey, string, error) { + fedApp.privateKey = func(boxIRI *url.URL) (crypto.PrivateKey, string, error) { return testPrivateKey, testPublicKeyId, nil } fedCb.follow = func(c context.Context, s *streams.Follow) error { @@ -2746,23 +2746,23 @@ func TestPostInbox_Follow_DoesNotAddForAutoAcceptIfAlreadyPresent(t *testing.T) } return nil, nil } - d.do = func(b []byte, u url.URL, toDo func(b []byte, u url.URL) error) { + d.do = func(b []byte, u *url.URL, toDo func(b []byte, u *url.URL) error) { if err := toDo(b, u); err != nil { t.Fatalf("Unexpected error in MockDeliverer.Do: %s", err) } } - app.MockFederateApp.owns = func(c context.Context, id url.URL) bool { + app.MockFederateApp.owns = func(c context.Context, id *url.URL) bool { return true } - app.MockFederateApp.get = func(c context.Context, id url.URL, rw RWType) (PubObject, error) { + app.MockFederateApp.get = func(c context.Context, id *url.URL, rw RWType) (PubObject, error) { if rw != ReadWrite { t.Fatalf("expected RWType of %d, got %d", ReadWrite, rw) } followers := &vocab.Collection{} - followers.AppendItemsIRI(*sallyIRI) + followers.AppendItemsIRI(sallyIRI) samActor := &vocab.Person{} - samActor.SetInboxAnyURI(*samIRIInbox) - samActor.SetId(*samIRI) + samActor.SetInboxAnyURI(samIRIInbox) + samActor.SetId(samIRI) samActor.SetFollowersCollection(followers) return samActor, nil } @@ -2776,10 +2776,10 @@ func TestPostInbox_Follow_DoesNotAddForAutoAcceptIfAlreadyPresent(t *testing.T) return nil } expectedFollowers := &vocab.Collection{} - expectedFollowers.AppendItemsIRI(*sallyIRI) + expectedFollowers.AppendItemsIRI(sallyIRI) expectedActor := &vocab.Person{} - expectedActor.SetInboxAnyURI(*samIRIInbox) - expectedActor.SetId(*samIRI) + expectedActor.SetInboxAnyURI(samIRIInbox) + expectedActor.SetId(samIRI) expectedActor.SetFollowersCollection(expectedFollowers) handled, err := p.PostInbox(context.Background(), resp, req) if err != nil { @@ -2808,7 +2808,7 @@ func TestPostInbox_Follow_AutoAcceptFollowersIsOrderedCollection(t *testing.T) { } return s, err } - fedApp.privateKey = func(boxIRI url.URL) (crypto.PrivateKey, string, error) { + fedApp.privateKey = func(boxIRI *url.URL) (crypto.PrivateKey, string, error) { return testPrivateKey, testPublicKeyId, nil } fedCb.follow = func(c context.Context, s *streams.Follow) error { @@ -2832,21 +2832,21 @@ func TestPostInbox_Follow_AutoAcceptFollowersIsOrderedCollection(t *testing.T) { } return nil, nil } - d.do = func(b []byte, u url.URL, toDo func(b []byte, u url.URL) error) { + d.do = func(b []byte, u *url.URL, toDo func(b []byte, u *url.URL) error) { if err := toDo(b, u); err != nil { t.Fatalf("Unexpected error in MockDeliverer.Do: %s", err) } } - app.MockFederateApp.owns = func(c context.Context, id url.URL) bool { + app.MockFederateApp.owns = func(c context.Context, id *url.URL) bool { return true } - app.MockFederateApp.get = func(c context.Context, id url.URL, rw RWType) (PubObject, error) { + app.MockFederateApp.get = func(c context.Context, id *url.URL, rw RWType) (PubObject, error) { if rw != ReadWrite { t.Fatalf("expected RWType of %d, got %d", ReadWrite, rw) } samActor := &vocab.Person{} - samActor.SetInboxAnyURI(*samIRIInbox) - samActor.SetId(*samIRI) + samActor.SetInboxAnyURI(samIRIInbox) + samActor.SetId(samIRI) samActor.SetFollowersOrderedCollection(&vocab.OrderedCollection{}) return samActor, nil } @@ -2863,8 +2863,8 @@ func TestPostInbox_Follow_AutoAcceptFollowersIsOrderedCollection(t *testing.T) { expectedFollowers := &vocab.OrderedCollection{} expectedFollowers.AppendOrderedItemsObject(sallyActor) expectedActor := &vocab.Person{} - expectedActor.SetInboxAnyURI(*samIRIInbox) - expectedActor.SetId(*samIRI) + expectedActor.SetInboxAnyURI(samIRIInbox) + expectedActor.SetId(samIRI) expectedActor.SetFollowersOrderedCollection(expectedFollowers) if err != nil { t.Fatal(err) @@ -2890,7 +2890,7 @@ func TestPostInbox_Follow_AutoAcceptFollowersIsIRI(t *testing.T) { } return s, err } - fedApp.privateKey = func(boxIRI url.URL) (crypto.PrivateKey, string, error) { + fedApp.privateKey = func(boxIRI *url.URL) (crypto.PrivateKey, string, error) { return testPrivateKey, testPublicKeyId, nil } fedCb.follow = func(c context.Context, s *streams.Follow) error { @@ -2914,28 +2914,28 @@ func TestPostInbox_Follow_AutoAcceptFollowersIsIRI(t *testing.T) { } return nil, nil } - d.do = func(b []byte, u url.URL, toDo func(b []byte, u url.URL) error) { + d.do = func(b []byte, u *url.URL, toDo func(b []byte, u *url.URL) error) { if err := toDo(b, u); err != nil { t.Fatalf("Unexpected error in MockDeliverer.Do: %s", err) } } - app.MockFederateApp.owns = func(c context.Context, id url.URL) bool { + app.MockFederateApp.owns = func(c context.Context, id *url.URL) bool { return true } - app.MockFederateApp.get = func(c context.Context, id url.URL, rw RWType) (PubObject, error) { + app.MockFederateApp.get = func(c context.Context, id *url.URL, rw RWType) (PubObject, error) { if rw != ReadWrite { t.Fatalf("expected RWType of %d, got %d", ReadWrite, rw) } - if id == *samIRI { + if *id == *samIRI { samActor := &vocab.Person{} - samActor.SetInboxAnyURI(*samIRIInbox) - samActor.SetId(*samIRI) - samActor.SetFollowersAnyURI(*testNewIRI) + samActor.SetInboxAnyURI(samIRIInbox) + samActor.SetId(samIRI) + samActor.SetFollowersAnyURI(testNewIRI) return samActor, nil - } else if id == *testNewIRI { + } else if *id == *testNewIRI { return &vocab.Collection{}, nil } - t.Fatalf("unexpected get(%s)", &id) + t.Fatalf("unexpected get(%s)", id) return nil, nil } gotSet := 0 @@ -2970,7 +2970,7 @@ func TestPostInbox_Follow_DoesNotAutoAcceptIfNotOwned(t *testing.T) { fedCb.follow = func(c context.Context, s *streams.Follow) error { return nil } - app.MockFederateApp.owns = func(c context.Context, id url.URL) bool { + app.MockFederateApp.owns = func(c context.Context, id *url.URL) bool { return false } handled, err := p.PostInbox(context.Background(), resp, req) @@ -2992,7 +2992,7 @@ func TestPostInbox_Follow_DoesNotAutoRejectIfNotOwned(t *testing.T) { fedCb.follow = func(c context.Context, s *streams.Follow) error { return nil } - app.MockFederateApp.owns = func(c context.Context, id url.URL) bool { + app.MockFederateApp.owns = func(c context.Context, id *url.URL) bool { return false } handled, err := p.PostInbox(context.Background(), resp, req) @@ -3052,23 +3052,23 @@ func TestPostInbox_Accept_AcceptFollowAddsToFollowersIfOwned(t *testing.T) { resp := httptest.NewRecorder() req := ActivityPubRequest(httptest.NewRequest("POST", testInboxURI, bytes.NewBuffer(MustSerialize(testAcceptFollow)))) gotOwns := 0 - var ownsIRI url.URL - app.MockFederateApp.owns = func(c context.Context, id url.URL) bool { + var ownsIRI *url.URL + app.MockFederateApp.owns = func(c context.Context, id *url.URL) bool { gotOwns++ ownsIRI = id return true } gotGet := 0 - var getIRI url.URL - app.MockFederateApp.get = func(c context.Context, id url.URL, rw RWType) (PubObject, error) { + var getIRI *url.URL + app.MockFederateApp.get = func(c context.Context, id *url.URL, rw RWType) (PubObject, error) { if rw != ReadWrite { t.Fatalf("expected RWType of %d, got %d", ReadWrite, rw) } gotGet++ getIRI = id sallyActor := &vocab.Person{} - sallyActor.SetInboxAnyURI(*sallyIRIInbox) - sallyActor.SetId(*sallyIRI) + sallyActor.SetInboxAnyURI(sallyIRIInbox) + sallyActor.SetId(sallyIRI) sallyActor.SetFollowingCollection(&vocab.Collection{}) return sallyActor, nil } @@ -3087,8 +3087,8 @@ func TestPostInbox_Accept_AcceptFollowAddsToFollowersIfOwned(t *testing.T) { expectedFollowing := &vocab.Collection{} expectedFollowing.AppendItemsObject(samActor) expectedActor := &vocab.Person{} - expectedActor.SetInboxAnyURI(*sallyIRIInbox) - expectedActor.SetId(*sallyIRI) + expectedActor.SetInboxAnyURI(sallyIRIInbox) + expectedActor.SetId(sallyIRI) expectedActor.SetFollowingCollection(expectedFollowing) handled, err := p.PostInbox(context.Background(), resp, req) if err != nil { @@ -3115,15 +3115,15 @@ func TestPostInbox_Accept_AcceptFollowDoesNotAddIfAlreadyInCollection(t *testing PreparePubberPostInboxTest(t, app, socialApp, fedApp, socialCb, fedCb, d, httpClient, p) resp := httptest.NewRecorder() req := ActivityPubRequest(httptest.NewRequest("POST", testInboxURI, bytes.NewBuffer(MustSerialize(testAcceptFollow)))) - app.MockFederateApp.owns = func(c context.Context, id url.URL) bool { + app.MockFederateApp.owns = func(c context.Context, id *url.URL) bool { return true } - app.MockFederateApp.get = func(c context.Context, id url.URL, rw RWType) (PubObject, error) { + app.MockFederateApp.get = func(c context.Context, id *url.URL, rw RWType) (PubObject, error) { following := &vocab.Collection{} - following.AppendItemsIRI(*samIRI) + following.AppendItemsIRI(samIRI) sallyActor := &vocab.Person{} - sallyActor.SetInboxAnyURI(*sallyIRIInbox) - sallyActor.SetId(*sallyIRI) + sallyActor.SetInboxAnyURI(sallyIRIInbox) + sallyActor.SetId(sallyIRI) sallyActor.SetFollowingCollection(following) return sallyActor, nil } @@ -3140,10 +3140,10 @@ func TestPostInbox_Accept_AcceptFollowDoesNotAddIfAlreadyInCollection(t *testing return nil } expectedFollowing := &vocab.Collection{} - expectedFollowing.AppendItemsIRI(*samIRI) + expectedFollowing.AppendItemsIRI(samIRI) expectedActor := &vocab.Person{} - expectedActor.SetInboxAnyURI(*sallyIRIInbox) - expectedActor.SetId(*sallyIRI) + expectedActor.SetInboxAnyURI(sallyIRIInbox) + expectedActor.SetId(sallyIRI) expectedActor.SetFollowingCollection(expectedFollowing) handled, err := p.PostInbox(context.Background(), resp, req) if err != nil { @@ -3162,16 +3162,16 @@ func TestPostInbox_Accept_AcceptFollowAddsToFollowersOrderedCollection(t *testin PreparePubberPostInboxTest(t, app, socialApp, fedApp, socialCb, fedCb, d, httpClient, p) resp := httptest.NewRecorder() req := ActivityPubRequest(httptest.NewRequest("POST", testInboxURI, bytes.NewBuffer(MustSerialize(testAcceptFollow)))) - app.MockFederateApp.owns = func(c context.Context, id url.URL) bool { + app.MockFederateApp.owns = func(c context.Context, id *url.URL) bool { return true } - app.MockFederateApp.get = func(c context.Context, id url.URL, rw RWType) (PubObject, error) { + app.MockFederateApp.get = func(c context.Context, id *url.URL, rw RWType) (PubObject, error) { if rw != ReadWrite { t.Fatalf("expected RWType of %d, got %d", ReadWrite, rw) } sallyActor := &vocab.Person{} - sallyActor.SetInboxAnyURI(*sallyIRIInbox) - sallyActor.SetId(*sallyIRI) + sallyActor.SetInboxAnyURI(sallyIRIInbox) + sallyActor.SetId(sallyIRI) sallyActor.SetFollowingOrderedCollection(&vocab.OrderedCollection{}) return sallyActor, nil } @@ -3190,8 +3190,8 @@ func TestPostInbox_Accept_AcceptFollowAddsToFollowersOrderedCollection(t *testin expectedFollowing := &vocab.OrderedCollection{} expectedFollowing.AppendOrderedItemsObject(samActor) expectedActor := &vocab.Person{} - expectedActor.SetInboxAnyURI(*sallyIRIInbox) - expectedActor.SetId(*sallyIRI) + expectedActor.SetInboxAnyURI(sallyIRIInbox) + expectedActor.SetId(sallyIRI) expectedActor.SetFollowingOrderedCollection(expectedFollowing) handled, err := p.PostInbox(context.Background(), resp, req) if err != nil { @@ -3208,23 +3208,23 @@ func TestPostInbox_Accept_AcceptFollowAddsToFollowersIRI(t *testing.T) { PreparePubberPostInboxTest(t, app, socialApp, fedApp, socialCb, fedCb, d, httpClient, p) resp := httptest.NewRecorder() req := ActivityPubRequest(httptest.NewRequest("POST", testInboxURI, bytes.NewBuffer(MustSerialize(testAcceptFollow)))) - app.MockFederateApp.owns = func(c context.Context, id url.URL) bool { + app.MockFederateApp.owns = func(c context.Context, id *url.URL) bool { return true } - app.MockFederateApp.get = func(c context.Context, id url.URL, rw RWType) (PubObject, error) { + app.MockFederateApp.get = func(c context.Context, id *url.URL, rw RWType) (PubObject, error) { if rw != ReadWrite { t.Fatalf("expected RWType of %d, got %d", ReadWrite, rw) } - if id == *sallyIRI { + if *id == *sallyIRI { sallyActor := &vocab.Person{} - sallyActor.SetInboxAnyURI(*sallyIRIInbox) - sallyActor.SetId(*sallyIRI) - sallyActor.SetFollowingAnyURI(*sallyFollowingIRI) + sallyActor.SetInboxAnyURI(sallyIRIInbox) + sallyActor.SetId(sallyIRI) + sallyActor.SetFollowingAnyURI(sallyFollowingIRI) return sallyActor, nil - } else if id == *sallyFollowingIRI { + } else if *id == *sallyFollowingIRI { return &vocab.OrderedCollection{}, nil } - t.Fatalf("Unexpected get(%s)", (&id).String()) + t.Fatalf("unexpected get(%s)", id.String()) return nil, nil } gotSet := 0 @@ -3257,8 +3257,8 @@ func TestPostInbox_Accept_DoesNothingIfNotOwned(t *testing.T) { resp := httptest.NewRecorder() req := ActivityPubRequest(httptest.NewRequest("POST", testInboxURI, bytes.NewBuffer(MustSerialize(testAcceptFollow)))) gotOwns := 0 - var ownsIRI url.URL - app.MockFederateApp.owns = func(c context.Context, id url.URL) bool { + var ownsIRI *url.URL + app.MockFederateApp.owns = func(c context.Context, id *url.URL) bool { gotOwns++ ownsIRI = id return false @@ -3283,13 +3283,13 @@ func TestPostInbox_Accept_CallsCallback(t *testing.T) { PreparePubberPostInboxTest(t, app, socialApp, fedApp, socialCb, fedCb, d, httpClient, p) resp := httptest.NewRecorder() req := ActivityPubRequest(httptest.NewRequest("POST", testInboxURI, bytes.NewBuffer(MustSerialize(testAcceptFollow)))) - app.MockFederateApp.owns = func(c context.Context, id url.URL) bool { + app.MockFederateApp.owns = func(c context.Context, id *url.URL) bool { return true } - app.MockFederateApp.get = func(c context.Context, id url.URL, rw RWType) (PubObject, error) { + app.MockFederateApp.get = func(c context.Context, id *url.URL, rw RWType) (PubObject, error) { sallyActor := &vocab.Person{} - sallyActor.SetInboxAnyURI(*sallyIRIInbox) - sallyActor.SetId(*sallyIRI) + sallyActor.SetInboxAnyURI(sallyIRIInbox) + sallyActor.SetId(sallyIRI) sallyActor.SetFollowingCollection(&vocab.Collection{}) return sallyActor, nil } @@ -3344,8 +3344,8 @@ func TestPostInbox_Add_DoesNotAddIfTargetNotOwned(t *testing.T) { resp := httptest.NewRecorder() req := ActivityPubRequest(httptest.NewRequest("POST", testInboxURI, bytes.NewBuffer(MustSerialize(testAddNote)))) gotOwns := 0 - var gotOwnsId url.URL - app.MockFederateApp.owns = func(c context.Context, id url.URL) bool { + var gotOwnsId *url.URL + app.MockFederateApp.owns = func(c context.Context, id *url.URL) bool { gotOwns++ gotOwnsId = id return false @@ -3371,15 +3371,15 @@ func TestPostInbox_Add_AddIfTargetOwnedAndAppCanAdd(t *testing.T) { resp := httptest.NewRecorder() req := ActivityPubRequest(httptest.NewRequest("POST", testInboxURI, bytes.NewBuffer(MustSerialize(testAddNote)))) gotOwns := 0 - var gotOwnsId url.URL - app.MockFederateApp.owns = func(c context.Context, id url.URL) bool { + var gotOwnsId *url.URL + app.MockFederateApp.owns = func(c context.Context, id *url.URL) bool { gotOwns++ gotOwnsId = id return true } gotGet := 0 - var gotGetId url.URL - app.MockFederateApp.get = func(c context.Context, id url.URL, rw RWType) (PubObject, error) { + var gotGetId *url.URL + app.MockFederateApp.get = func(c context.Context, id *url.URL, rw RWType) (PubObject, error) { if rw != ReadWrite { t.Fatalf("expected RWType of %d, got %d", ReadWrite, rw) } @@ -3443,15 +3443,15 @@ func TestPostInbox_Add_DoesNotAddIfAppCannotAdd(t *testing.T) { resp := httptest.NewRecorder() req := ActivityPubRequest(httptest.NewRequest("POST", testInboxURI, bytes.NewBuffer(MustSerialize(testAddNote)))) gotOwns := 0 - var gotOwnsId url.URL - app.MockFederateApp.owns = func(c context.Context, id url.URL) bool { + var gotOwnsId *url.URL + app.MockFederateApp.owns = func(c context.Context, id *url.URL) bool { gotOwns++ gotOwnsId = id return true } gotGet := 0 - var gotGetId url.URL - app.MockFederateApp.get = func(c context.Context, id url.URL, rw RWType) (PubObject, error) { + var gotGetId *url.URL + app.MockFederateApp.get = func(c context.Context, id *url.URL, rw RWType) (PubObject, error) { gotGet++ gotGetId = id v := &vocab.Collection{} @@ -3496,10 +3496,10 @@ func TestPostInbox_Add_CallsCallback(t *testing.T) { PreparePubberPostInboxTest(t, app, socialApp, fedApp, socialCb, fedCb, d, httpClient, p) resp := httptest.NewRecorder() req := ActivityPubRequest(httptest.NewRequest("POST", testInboxURI, bytes.NewBuffer(MustSerialize(testAddNote)))) - app.MockFederateApp.owns = func(c context.Context, id url.URL) bool { + app.MockFederateApp.owns = func(c context.Context, id *url.URL) bool { return true } - app.MockFederateApp.get = func(c context.Context, id url.URL, rw RWType) (PubObject, error) { + app.MockFederateApp.get = func(c context.Context, id *url.URL, rw RWType) (PubObject, error) { v := &vocab.Collection{} return v, nil } @@ -3531,8 +3531,8 @@ func TestPostInbox_Remove_DoesNotRemoveIfTargetNotOwned(t *testing.T) { resp := httptest.NewRecorder() req := ActivityPubRequest(httptest.NewRequest("POST", testInboxURI, bytes.NewBuffer(MustSerialize(testRemoveNote)))) gotOwns := 0 - var gotOwnsId url.URL - app.MockFederateApp.owns = func(c context.Context, id url.URL) bool { + var gotOwnsId *url.URL + app.MockFederateApp.owns = func(c context.Context, id *url.URL) bool { gotOwns++ gotOwnsId = id return false @@ -3558,15 +3558,15 @@ func TestPostInbox_Remove_RemoveIfTargetOwnedAndCanRemove(t *testing.T) { resp := httptest.NewRecorder() req := ActivityPubRequest(httptest.NewRequest("POST", testInboxURI, bytes.NewBuffer(MustSerialize(testRemoveNote)))) gotOwns := 0 - var gotOwnsId url.URL - app.MockFederateApp.owns = func(c context.Context, id url.URL) bool { + var gotOwnsId *url.URL + app.MockFederateApp.owns = func(c context.Context, id *url.URL) bool { gotOwns++ gotOwnsId = id return true } gotGet := 0 - var gotGetId url.URL - app.MockFederateApp.get = func(c context.Context, id url.URL, rw RWType) (PubObject, error) { + var gotGetId *url.URL + app.MockFederateApp.get = func(c context.Context, id *url.URL, rw RWType) (PubObject, error) { if rw != ReadWrite { t.Fatalf("expected RWType of %d, got %d", ReadWrite, rw) } @@ -3629,15 +3629,15 @@ func TestPostInbox_Remove_DoesNotRemoveIfAppCannotRemove(t *testing.T) { resp := httptest.NewRecorder() req := ActivityPubRequest(httptest.NewRequest("POST", testInboxURI, bytes.NewBuffer(MustSerialize(testRemoveNote)))) gotOwns := 0 - var gotOwnsId url.URL - app.MockFederateApp.owns = func(c context.Context, id url.URL) bool { + var gotOwnsId *url.URL + app.MockFederateApp.owns = func(c context.Context, id *url.URL) bool { gotOwns++ gotOwnsId = id return true } gotGet := 0 - var gotGetId url.URL - app.MockFederateApp.get = func(c context.Context, id url.URL, rw RWType) (PubObject, error) { + var gotGetId *url.URL + app.MockFederateApp.get = func(c context.Context, id *url.URL, rw RWType) (PubObject, error) { gotGet++ gotGetId = id v := &vocab.Collection{} @@ -3685,10 +3685,10 @@ func TestPostInbox_Remove_CallsCallback(t *testing.T) { PreparePubberPostInboxTest(t, app, socialApp, fedApp, socialCb, fedCb, d, httpClient, p) resp := httptest.NewRecorder() req := ActivityPubRequest(httptest.NewRequest("POST", testInboxURI, bytes.NewBuffer(MustSerialize(testRemoveNote)))) - app.MockFederateApp.owns = func(c context.Context, id url.URL) bool { + app.MockFederateApp.owns = func(c context.Context, id *url.URL) bool { return true } - app.MockFederateApp.get = func(c context.Context, id url.URL, rw RWType) (PubObject, error) { + app.MockFederateApp.get = func(c context.Context, id *url.URL, rw RWType) (PubObject, error) { v := &vocab.Collection{} return v, nil } @@ -3720,22 +3720,22 @@ func TestPostInbox_Like_AddsToLikeCollection(t *testing.T) { resp := httptest.NewRecorder() req := ActivityPubRequest(httptest.NewRequest("POST", testInboxURI, bytes.NewBuffer(MustSerialize(testLikeNote)))) gotOwns := 0 - var gotOwnsId url.URL - app.MockFederateApp.owns = func(c context.Context, id url.URL) bool { + var gotOwnsId *url.URL + app.MockFederateApp.owns = func(c context.Context, id *url.URL) bool { gotOwns++ gotOwnsId = id return true } gotGet := 0 - var gotGetId url.URL - app.MockFederateApp.get = func(c context.Context, id url.URL, rw RWType) (PubObject, error) { + var gotGetId *url.URL + app.MockFederateApp.get = func(c context.Context, id *url.URL, rw RWType) (PubObject, error) { if rw != ReadWrite { t.Fatalf("expected RWType of %d, got %d", ReadWrite, rw) } gotGet++ gotGetId = id v := &vocab.Note{} - v.SetId(*noteIRI) + v.SetId(noteIRI) v.AppendNameString(noteName) v.AppendContentString("This is a simple note") v.SetLikesCollection(&vocab.Collection{}) @@ -3757,7 +3757,7 @@ func TestPostInbox_Like_AddsToLikeCollection(t *testing.T) { expected := &vocab.Collection{} expected.AppendItemsObject(sallyActor) expectedNote := &vocab.Note{} - expectedNote.SetId(*noteIRI) + expectedNote.SetId(noteIRI) expectedNote.AppendNameString(noteName) expectedNote.AppendContentString("This is a simple note") expectedNote.SetLikesCollection(expected) @@ -3785,14 +3785,14 @@ func TestPostInbox_Like_DoesNotAddLikeToCollectionIfAlreadyPresent(t *testing.T) PreparePubberPostInboxTest(t, app, socialApp, fedApp, socialCb, fedCb, d, httpClient, p) resp := httptest.NewRecorder() req := ActivityPubRequest(httptest.NewRequest("POST", testInboxURI, bytes.NewBuffer(MustSerialize(testLikeNote)))) - app.MockFederateApp.owns = func(c context.Context, id url.URL) bool { + app.MockFederateApp.owns = func(c context.Context, id *url.URL) bool { return true } - app.MockFederateApp.get = func(c context.Context, id url.URL, rw RWType) (PubObject, error) { + app.MockFederateApp.get = func(c context.Context, id *url.URL, rw RWType) (PubObject, error) { likes := &vocab.Collection{} - likes.AppendItemsIRI(*sallyIRI) + likes.AppendItemsIRI(sallyIRI) v := &vocab.Note{} - v.SetId(*noteIRI) + v.SetId(noteIRI) v.AppendNameString(noteName) v.AppendContentString("This is a simple note") v.SetLikesCollection(likes) @@ -3812,9 +3812,9 @@ func TestPostInbox_Like_DoesNotAddLikeToCollectionIfAlreadyPresent(t *testing.T) } handled, err := p.PostInbox(context.Background(), resp, req) expected := &vocab.Collection{} - expected.AppendItemsIRI(*sallyIRI) + expected.AppendItemsIRI(sallyIRI) expectedNote := &vocab.Note{} - expectedNote.SetId(*noteIRI) + expectedNote.SetId(noteIRI) expectedNote.AppendNameString(noteName) expectedNote.AppendContentString("This is a simple note") expectedNote.SetLikesCollection(expected) @@ -3834,12 +3834,12 @@ func TestPostInbox_Like_AddsToLikeOrderedCollection(t *testing.T) { PreparePubberPostInboxTest(t, app, socialApp, fedApp, socialCb, fedCb, d, httpClient, p) resp := httptest.NewRecorder() req := ActivityPubRequest(httptest.NewRequest("POST", testInboxURI, bytes.NewBuffer(MustSerialize(testLikeNote)))) - app.MockFederateApp.owns = func(c context.Context, id url.URL) bool { + app.MockFederateApp.owns = func(c context.Context, id *url.URL) bool { return true } - app.MockFederateApp.get = func(c context.Context, id url.URL, rw RWType) (PubObject, error) { + app.MockFederateApp.get = func(c context.Context, id *url.URL, rw RWType) (PubObject, error) { v := &vocab.Note{} - v.SetId(*noteIRI) + v.SetId(noteIRI) v.AppendNameString(noteName) v.AppendContentString("This is a simple note") v.SetLikesOrderedCollection(&vocab.OrderedCollection{}) @@ -3861,7 +3861,7 @@ func TestPostInbox_Like_AddsToLikeOrderedCollection(t *testing.T) { expected := &vocab.OrderedCollection{} expected.AppendOrderedItemsObject(sallyActor) expectedNote := &vocab.Note{} - expectedNote.SetId(*noteIRI) + expectedNote.SetId(noteIRI) expectedNote.AppendNameString(noteName) expectedNote.AppendContentString("This is a simple note") expectedNote.SetLikesOrderedCollection(expected) @@ -3879,21 +3879,21 @@ func TestPostInbox_Like_AddsToLikeIRI(t *testing.T) { PreparePubberPostInboxTest(t, app, socialApp, fedApp, socialCb, fedCb, d, httpClient, p) resp := httptest.NewRecorder() req := ActivityPubRequest(httptest.NewRequest("POST", testInboxURI, bytes.NewBuffer(MustSerialize(testLikeNote)))) - app.MockFederateApp.owns = func(c context.Context, id url.URL) bool { + app.MockFederateApp.owns = func(c context.Context, id *url.URL) bool { return true } - app.MockFederateApp.get = func(c context.Context, id url.URL, rw RWType) (PubObject, error) { - if id == *noteIRI { + app.MockFederateApp.get = func(c context.Context, id *url.URL, rw RWType) (PubObject, error) { + if *id == *noteIRI { v := &vocab.Note{} - v.SetId(*noteIRI) + v.SetId(noteIRI) v.AppendNameString(noteName) v.AppendContentString("This is a simple note") - v.SetLikesAnyURI(*testNewIRI) + v.SetLikesAnyURI(testNewIRI) return v, nil - } else if id == *testNewIRI { + } else if *id == *testNewIRI { return &vocab.OrderedCollection{}, nil } - t.Fatalf("unexpected get(%s)", &id) + t.Fatalf("unexpected get(%s)", id) return nil, nil } gotSet := 0 @@ -3925,12 +3925,12 @@ func TestPostInbox_Like_CallsCallback(t *testing.T) { PreparePubberPostInboxTest(t, app, socialApp, fedApp, socialCb, fedCb, d, httpClient, p) resp := httptest.NewRecorder() req := ActivityPubRequest(httptest.NewRequest("POST", testInboxURI, bytes.NewBuffer(MustSerialize(testLikeNote)))) - app.MockFederateApp.owns = func(c context.Context, id url.URL) bool { + app.MockFederateApp.owns = func(c context.Context, id *url.URL) bool { return true } - app.MockFederateApp.get = func(c context.Context, id url.URL, rw RWType) (PubObject, error) { + app.MockFederateApp.get = func(c context.Context, id *url.URL, rw RWType) (PubObject, error) { v := &vocab.Note{} - v.SetId(*noteIRI) + v.SetId(noteIRI) v.AppendNameString(noteName) v.AppendContentString("This is a simple note") v.SetLikesCollection(&vocab.Collection{}) @@ -4073,7 +4073,7 @@ func TestPostOutbox_RejectUnauthenticatedUnauthorized(t *testing.T) { gotVerifyForOutbox := 0 socialApp.getSocialAPIVerifier = func(c context.Context) SocialAPIVerifier { mockV := &MockSocialAPIVerifier{ - verifyForOutbox: func(r *http.Request, outbox url.URL) (bool, bool, error) { + verifyForOutbox: func(r *http.Request, outbox *url.URL) (bool, bool, error) { gotVerifyForOutbox++ return false, false, nil }, @@ -4099,7 +4099,7 @@ func TestPostOutbox_RejectAuthenticatedUnauthorized(t *testing.T) { gotVerifyForOutbox := 0 socialApp.getSocialAPIVerifier = func(c context.Context) SocialAPIVerifier { mockV := &MockSocialAPIVerifier{ - verifyForOutbox: func(r *http.Request, outbox url.URL) (bool, bool, error) { + verifyForOutbox: func(r *http.Request, outbox *url.URL) (bool, bool, error) { gotVerifyForOutbox++ return true, false, nil }, @@ -4125,7 +4125,7 @@ func TestPostOutbox_RejectFallback_Unauthorized_NotSigned(t *testing.T) { gotVerifyForOutbox := 0 socialApp.getSocialAPIVerifier = func(c context.Context) SocialAPIVerifier { mockV := &MockSocialAPIVerifier{ - verifyForOutbox: func(r *http.Request, outbox url.URL) (bool, bool, error) { + verifyForOutbox: func(r *http.Request, outbox *url.URL) (bool, bool, error) { gotVerifyForOutbox++ return false, true, nil }, @@ -4151,7 +4151,7 @@ func TestPostOutbox_RejectFallback_Unauthorized_WrongSignature(t *testing.T) { gotVerifyForOutbox := 0 socialApp.getSocialAPIVerifier = func(c context.Context) SocialAPIVerifier { mockV := &MockSocialAPIVerifier{ - verifyForOutbox: func(r *http.Request, outbox url.URL) (bool, bool, error) { + verifyForOutbox: func(r *http.Request, outbox *url.URL) (bool, bool, error) { gotVerifyForOutbox++ return false, true, nil }, @@ -4160,8 +4160,8 @@ func TestPostOutbox_RejectFallback_Unauthorized_WrongSignature(t *testing.T) { } gotPublicKey := 0 var gotPublicKeyId string - var gotBoxIRI url.URL - socialApp.getPublicKeyForOutbox = func(c context.Context, publicKeyId string, boxIRI url.URL) (crypto.PublicKey, httpsig.Algorithm, error) { + var gotBoxIRI *url.URL + socialApp.getPublicKeyForOutbox = func(c context.Context, publicKeyId string, boxIRI *url.URL) (crypto.PublicKey, httpsig.Algorithm, error) { gotPublicKey++ gotPublicKeyId = publicKeyId gotBoxIRI = boxIRI @@ -4178,7 +4178,7 @@ func TestPostOutbox_RejectFallback_Unauthorized_WrongSignature(t *testing.T) { t.Fatalf("expected %d, got %d", 1, gotPublicKey) } else if gotPublicKeyId != testPublicKeyId { t.Fatalf("expected %s, got %s", testPublicKeyId, gotPublicKeyId) - } else if s := (&gotBoxIRI).String(); s != testOutboxURI { + } else if s := gotBoxIRI.String(); s != testOutboxURI { t.Fatalf("expected %s, got %s", testOutboxURI, s) } else if resp.Code != http.StatusForbidden { t.Fatalf("expected %d, got %d", http.StatusForbidden, resp.Code) @@ -4196,8 +4196,8 @@ func TestPostOutbox_RejectUnauthorized_WrongSignature(t *testing.T) { } gotPublicKey := 0 var gotPublicKeyId string - var gotBoxIRI url.URL - socialApp.getPublicKeyForOutbox = func(c context.Context, publicKeyId string, boxIRI url.URL) (crypto.PublicKey, httpsig.Algorithm, error) { + var gotBoxIRI *url.URL + socialApp.getPublicKeyForOutbox = func(c context.Context, publicKeyId string, boxIRI *url.URL) (crypto.PublicKey, httpsig.Algorithm, error) { gotPublicKey++ gotPublicKeyId = publicKeyId gotBoxIRI = boxIRI @@ -4214,7 +4214,7 @@ func TestPostOutbox_RejectUnauthorized_WrongSignature(t *testing.T) { t.Fatalf("expected %d, got %d", 1, gotPublicKey) } else if gotPublicKeyId != testPublicKeyId { t.Fatalf("expected %s, got %s", testPublicKeyId, gotPublicKeyId) - } else if s := (&gotBoxIRI).String(); s != testOutboxURI { + } else if s := gotBoxIRI.String(); s != testOutboxURI { t.Fatalf("expected %s, got %s", testOutboxURI, s) } else if resp.Code != http.StatusForbidden { t.Fatalf("expected %d, got %d", http.StatusForbidden, resp.Code) @@ -4226,28 +4226,28 @@ func TestPostOutbox_WrapInCreateActivity(t *testing.T) { PreparePubberPostOutboxTest(t, app, socialApp, fedApp, socialCb, fedCb, d, httpClient, p) // Raw Note rawNote := &vocab.Note{} - rawNote.SetId(*noteIRI) + rawNote.SetId(noteIRI) rawNote.AppendNameString(noteName) rawNote.AppendContentString("This is a simple note") rawNote.AppendToObject(samActor) // Expected result expectedNote := &vocab.Note{} - expectedNote.SetId(*noteIRI) + expectedNote.SetId(noteIRI) expectedNote.AppendNameString(noteName) expectedNote.AppendContentString("This is a simple note") expectedNote.AppendToObject(samActor) - expectedNote.AppendAttributedToIRI(*sallyIRI) + expectedNote.AppendAttributedToIRI(sallyIRI) expectedCreate := &vocab.Create{} - expectedCreate.SetId(*testNewIRI) - expectedCreate.AppendActorIRI(*sallyIRI) + expectedCreate.SetId(testNewIRI) + expectedCreate.AppendActorIRI(sallyIRI) expectedCreate.AppendObject(expectedNote) expectedCreate.AppendToObject(samActor) resp := httptest.NewRecorder() req := Sign(ActivityPubRequest(httptest.NewRequest("POST", testOutboxURI, bytes.NewBuffer(MustSerialize(rawNote))))) gotActorIRI := 0 - socialApp.actorIRI = func(c context.Context, r *http.Request) (url.URL, error) { + socialApp.actorIRI = func(c context.Context, r *http.Request) (*url.URL, error) { gotActorIRI++ - return *sallyIRI, nil + return sallyIRI, nil } gotCallback := 0 var gotCallbackObject *streams.Create @@ -4279,7 +4279,7 @@ func TestPostOutbox_RequiresObject(t *testing.T) { name: "create", input: func() vocab.Serializer { v := &vocab.Create{} - v.SetId(*noteActivityIRI) + v.SetId(noteActivityIRI) v.AppendSummaryString("Sally created a note") v.AppendActorObject(sallyActor) v.AppendToObject(samActor) @@ -4290,7 +4290,7 @@ func TestPostOutbox_RequiresObject(t *testing.T) { name: "update", input: func() vocab.Serializer { v := &vocab.Update{} - v.SetId(*noteActivityIRI) + v.SetId(noteActivityIRI) v.AppendSummaryString("Sally updated a note") v.AppendActorObject(sallyActor) v.AppendToObject(samActor) @@ -4301,7 +4301,7 @@ func TestPostOutbox_RequiresObject(t *testing.T) { name: "delete", input: func() vocab.Serializer { v := &vocab.Delete{} - v.SetId(*noteActivityIRI) + v.SetId(noteActivityIRI) v.AppendActorObject(sallyActor) v.AppendToObject(samActor) return v @@ -4311,7 +4311,7 @@ func TestPostOutbox_RequiresObject(t *testing.T) { name: "follow", input: func() vocab.Serializer { v := &vocab.Follow{} - v.SetId(*noteActivityIRI) + v.SetId(noteActivityIRI) v.AppendActorObject(sallyActor) v.AppendToObject(samActor) return v @@ -4321,7 +4321,7 @@ func TestPostOutbox_RequiresObject(t *testing.T) { name: "add", input: func() vocab.Serializer { v := &vocab.Add{} - v.SetId(*noteActivityIRI) + v.SetId(noteActivityIRI) v.AppendActorObject(sallyActor) v.AppendToObject(samActor) v.AppendTargetObject(testNote) @@ -4332,7 +4332,7 @@ func TestPostOutbox_RequiresObject(t *testing.T) { name: "remove", input: func() vocab.Serializer { v := &vocab.Remove{} - v.SetId(*noteActivityIRI) + v.SetId(noteActivityIRI) v.AppendActorObject(sallyActor) v.AppendToObject(samActor) v.AppendTargetObject(testNote) @@ -4343,7 +4343,7 @@ func TestPostOutbox_RequiresObject(t *testing.T) { name: "like", input: func() vocab.Serializer { v := &vocab.Like{} - v.SetId(*noteActivityIRI) + v.SetId(noteActivityIRI) v.AppendActorObject(sallyActor) v.AppendToObject(samActor) return v @@ -4353,7 +4353,7 @@ func TestPostOutbox_RequiresObject(t *testing.T) { name: "block", input: func() vocab.Serializer { v := &vocab.Block{} - v.SetId(*noteActivityIRI) + v.SetId(noteActivityIRI) v.AppendActorObject(sallyActor) v.AppendToObject(samActor) return v @@ -4363,7 +4363,7 @@ func TestPostOutbox_RequiresObject(t *testing.T) { name: "undo", input: func() vocab.Serializer { v := &vocab.Undo{} - v.SetId(*noteActivityIRI) + v.SetId(noteActivityIRI) v.AppendActorObject(sallyActor) v.AppendToObject(samActor) return v @@ -4396,7 +4396,7 @@ func TestPostOutbox_RequiresTarget(t *testing.T) { name: "add", input: func() vocab.Serializer { v := &vocab.Add{} - v.SetId(*noteActivityIRI) + v.SetId(noteActivityIRI) v.AppendActorObject(sallyActor) v.AppendToObject(samActor) v.AppendObject(testNote) @@ -4407,7 +4407,7 @@ func TestPostOutbox_RequiresTarget(t *testing.T) { name: "remove", input: func() vocab.Serializer { v := &vocab.Remove{} - v.SetId(*noteActivityIRI) + v.SetId(noteActivityIRI) v.AppendActorObject(sallyActor) v.AppendToObject(samActor) v.AppendObject(testNote) @@ -4574,17 +4574,17 @@ func TestPostOutbox_Update_DeleteSubFields(t *testing.T) { return nil } gotGet := 0 - app.MockFederateApp.get = func(c context.Context, id url.URL, rw RWType) (PubObject, error) { + app.MockFederateApp.get = func(c context.Context, id *url.URL, rw RWType) (PubObject, error) { gotGet++ - if id != *noteIRI { + if *id != *noteIRI { t.Fatalf("expected %s, got %s", noteIRI, id) } samActor := &vocab.Person{} - samActor.SetInboxAnyURI(*samIRIInbox) - samActor.SetId(*samIRI) + samActor.SetInboxAnyURI(samIRIInbox) + samActor.SetId(samIRI) samActor.AppendNameString("Sam") v := &vocab.Note{} - v.SetId(*noteIRI) + v.SetId(noteIRI) v.AppendNameString(noteName) v.AppendContentString("This is a simple note") v.AppendToObject(samActor) @@ -4601,10 +4601,10 @@ func TestPostOutbox_Update_DeleteSubFields(t *testing.T) { } handled, err := p.PostOutbox(context.Background(), resp, req) expectedSamActor := &vocab.Person{} - expectedSamActor.SetInboxAnyURI(*samIRIInbox) - expectedSamActor.SetId(*samIRI) + expectedSamActor.SetInboxAnyURI(samIRIInbox) + expectedSamActor.SetId(samIRI) expectedUpdatedNote := &vocab.Note{} - expectedUpdatedNote.SetId(*noteIRI) + expectedUpdatedNote.SetId(noteIRI) expectedUpdatedNote.AppendNameString(noteName) expectedUpdatedNote.AppendContentString("This is a simple note") expectedUpdatedNote.AppendToObject(expectedSamActor) @@ -4630,20 +4630,20 @@ func TestPostOutbox_Update_DeleteFields(t *testing.T) { return nil } gotGet := 0 - app.MockFederateApp.get = func(c context.Context, id url.URL, rw RWType) (PubObject, error) { + app.MockFederateApp.get = func(c context.Context, id *url.URL, rw RWType) (PubObject, error) { if rw != ReadWrite { t.Fatalf("expected RWType of %d, got %d", ReadWrite, rw) } gotGet++ - if id != *noteIRI { + if *id != *noteIRI { t.Fatalf("expected %s, got %s", noteIRI, id) } samActor := &vocab.Person{} - samActor.SetInboxAnyURI(*samIRIInbox) - samActor.SetId(*samIRI) + samActor.SetInboxAnyURI(samIRIInbox) + samActor.SetId(samIRI) samActor.AppendNameString("Sam") v := &vocab.Note{} - v.SetId(*noteIRI) + v.SetId(noteIRI) v.AppendNameString(noteName) v.AppendContentString("This is a simple note") v.AppendToObject(samActor) @@ -4660,7 +4660,7 @@ func TestPostOutbox_Update_DeleteFields(t *testing.T) { } handled, err := p.PostOutbox(context.Background(), resp, req) expectedUpdatedNote := &vocab.Note{} - expectedUpdatedNote.SetId(*noteIRI) + expectedUpdatedNote.SetId(noteIRI) expectedUpdatedNote.AppendNameString(noteName) expectedUpdatedNote.AppendContentString("This is a simple note") if err != nil { @@ -4685,26 +4685,26 @@ func TestPostOutbox_Update_DeleteSubFieldsMultipleObjects(t *testing.T) { return nil } gotGet := 0 - app.MockFederateApp.get = func(c context.Context, id url.URL, rw RWType) (PubObject, error) { + app.MockFederateApp.get = func(c context.Context, id *url.URL, rw RWType) (PubObject, error) { gotGet++ var v *vocab.Note - if id == *noteIRI { + if *id == *noteIRI { samActor := &vocab.Person{} - samActor.SetInboxAnyURI(*samIRIInbox) - samActor.SetId(*samIRI) + samActor.SetInboxAnyURI(samIRIInbox) + samActor.SetId(samIRI) samActor.AppendNameString("Sam") v = &vocab.Note{} - v.SetId(*noteIRI) + v.SetId(noteIRI) v.AppendNameString(noteName) v.AppendContentString("This is a simple note") v.AppendToObject(samActor) - } else if id == *updateActivityIRI { + } else if *id == *updateActivityIRI { samActor := &vocab.Person{} - samActor.SetInboxAnyURI(*samIRIInbox) - samActor.SetId(*samIRI) + samActor.SetInboxAnyURI(samIRIInbox) + samActor.SetId(samIRI) samActor.AppendNameString("Sam") v = &vocab.Note{} - v.SetId(*updateActivityIRI) + v.SetId(updateActivityIRI) v.AppendNameString(noteName) v.AppendContentString("This is a simple note") v.AppendToObject(samActor) @@ -4727,15 +4727,15 @@ func TestPostOutbox_Update_DeleteSubFieldsMultipleObjects(t *testing.T) { } handled, err := p.PostOutbox(context.Background(), resp, req) expectedSamActor := &vocab.Person{} - expectedSamActor.SetInboxAnyURI(*samIRIInbox) - expectedSamActor.SetId(*samIRI) + expectedSamActor.SetInboxAnyURI(samIRIInbox) + expectedSamActor.SetId(samIRI) expectedUpdatedNote := &vocab.Note{} - expectedUpdatedNote.SetId(*noteIRI) + expectedUpdatedNote.SetId(noteIRI) expectedUpdatedNote.AppendNameString(noteName) expectedUpdatedNote.AppendContentString("This is a simple note") expectedUpdatedNote.AppendToObject(expectedSamActor) expectedUpdatedNote2 := &vocab.Note{} - expectedUpdatedNote2.SetId(*updateActivityIRI) + expectedUpdatedNote2.SetId(updateActivityIRI) expectedUpdatedNote2.AppendNameString(noteName) expectedUpdatedNote2.AppendContentString("This is a simple note") expectedUpdatedNote2.AppendToObject(expectedSamActor) @@ -4763,17 +4763,17 @@ func TestPostOutbox_Update_OverwriteUpdatedFields(t *testing.T) { return nil } gotGet := 0 - app.MockFederateApp.get = func(c context.Context, id url.URL, rw RWType) (PubObject, error) { + app.MockFederateApp.get = func(c context.Context, id *url.URL, rw RWType) (PubObject, error) { gotGet++ - if id != *noteIRI { + if *id != *noteIRI { t.Fatalf("expected %s, got %s", noteIRI, id) } samActor := &vocab.Person{} - samActor.SetInboxAnyURI(*samIRIInbox) - samActor.SetId(*samIRI) + samActor.SetInboxAnyURI(samIRIInbox) + samActor.SetId(samIRI) samActor.AppendNameString("Sam") v := &vocab.Note{} - v.SetId(*noteIRI) + v.SetId(noteIRI) v.AppendNameString(noteName) v.AppendContentString("This is a simple note") v.AppendToObject(samActor) @@ -4790,11 +4790,11 @@ func TestPostOutbox_Update_OverwriteUpdatedFields(t *testing.T) { } handled, err := p.PostOutbox(context.Background(), resp, req) samActor := &vocab.Person{} - samActor.SetInboxAnyURI(*samIRIInbox) - samActor.SetId(*samIRI) + samActor.SetInboxAnyURI(samIRIInbox) + samActor.SetId(samIRI) samActor.AppendNameString("Samm") expectedUpdatedNote := &vocab.Note{} - expectedUpdatedNote.SetId(*noteIRI) + expectedUpdatedNote.SetId(noteIRI) expectedUpdatedNote.AppendNameString(noteName) expectedUpdatedNote.AppendContentString("This is a simple note") expectedUpdatedNote.AppendToObject(samActor) @@ -4823,13 +4823,13 @@ func TestPostOutbox_Update_CallsCallback(t *testing.T) { gotCallbackObject = s return nil } - app.MockFederateApp.get = func(c context.Context, id url.URL, rw RWType) (PubObject, error) { + app.MockFederateApp.get = func(c context.Context, id *url.URL, rw RWType) (PubObject, error) { samActor := &vocab.Person{} - samActor.SetInboxAnyURI(*samIRIInbox) - samActor.SetId(*samIRI) + samActor.SetInboxAnyURI(samIRIInbox) + samActor.SetId(samIRI) samActor.AppendNameString("Sam") v := &vocab.Note{} - v.SetId(*noteIRI) + v.SetId(noteIRI) v.AppendNameString(noteName) v.AppendContentString("This is a simple note") v.AppendToObject(samActor) @@ -4884,13 +4884,13 @@ func TestPostOutbox_Update_IsDelivered(t *testing.T) { } return nil, nil } - app.MockFederateApp.get = func(c context.Context, id url.URL, rw RWType) (PubObject, error) { + app.MockFederateApp.get = func(c context.Context, id *url.URL, rw RWType) (PubObject, error) { samActor := &vocab.Person{} - samActor.SetInboxAnyURI(*samIRIInbox) - samActor.SetId(*samIRI) + samActor.SetInboxAnyURI(samIRIInbox) + samActor.SetId(samIRI) samActor.AppendNameString("Sam") v := &vocab.Note{} - v.SetId(*noteIRI) + v.SetId(noteIRI) v.AppendNameString(noteName) v.AppendContentString("This is a simple note") v.AppendToObject(samActor) @@ -4922,17 +4922,17 @@ func TestPostOutbox_Delete_SetsTombstone(t *testing.T) { return nil } gotGet := 0 - app.MockFederateApp.get = func(c context.Context, id url.URL, rw RWType) (PubObject, error) { + app.MockFederateApp.get = func(c context.Context, id *url.URL, rw RWType) (PubObject, error) { if rw != ReadWrite { t.Fatalf("expected RWType of %d, got %d", ReadWrite, rw) } gotGet++ - if id != *noteIRI { + if *id != *noteIRI { t.Fatalf("expected %s, got %s", noteIRI, id) } v := &vocab.Note{} v.AppendType("Note") - v.SetId(*noteIRI) + v.SetId(noteIRI) v.SetPublished(testPublishedTime) v.SetUpdated(testUpdateTime) return v, nil @@ -4948,7 +4948,7 @@ func TestPostOutbox_Delete_SetsTombstone(t *testing.T) { } handled, err := p.PostOutbox(context.Background(), resp, req) expectedTombstone := &vocab.Tombstone{} - expectedTombstone.SetId(*noteIRI) + expectedTombstone.SetId(noteIRI) expectedTombstone.SetPublished(testPublishedTime) expectedTombstone.SetUpdated(testUpdateTime) expectedTombstone.SetDeleted(now) @@ -4978,7 +4978,7 @@ func TestPostOutbox_Delete_CallsCallback(t *testing.T) { gotCallbackObject = s return nil } - app.MockFederateApp.get = func(c context.Context, id url.URL, rw RWType) (PubObject, error) { + app.MockFederateApp.get = func(c context.Context, id *url.URL, rw RWType) (PubObject, error) { return testNote, nil } app.MockFederateApp.set = func(c context.Context, p PubObject) error { @@ -5030,7 +5030,7 @@ func TestPostOutbox_Delete_IsDelivered(t *testing.T) { } return nil, nil } - app.MockFederateApp.get = func(c context.Context, id url.URL, rw RWType) (PubObject, error) { + app.MockFederateApp.get = func(c context.Context, id *url.URL, rw RWType) (PubObject, error) { return testNote, nil } app.MockFederateApp.set = func(c context.Context, p PubObject) error { @@ -5272,8 +5272,8 @@ func TestPostOutbox_Add_DoesNotAddIfTargetNotOwned(t *testing.T) { resp := httptest.NewRecorder() req := Sign(ActivityPubRequest(httptest.NewRequest("POST", testOutboxURI, bytes.NewBuffer(MustSerialize(testAddNote))))) gotOwns := 0 - var gotOwnsIri url.URL - app.MockFederateApp.owns = func(c context.Context, iri url.URL) bool { + var gotOwnsIri *url.URL + app.MockFederateApp.owns = func(c context.Context, iri *url.URL) bool { gotOwns++ gotOwnsIri = iri return false @@ -5288,7 +5288,7 @@ func TestPostOutbox_Add_DoesNotAddIfTargetNotOwned(t *testing.T) { t.Fatalf("expected handled, got !handled") } else if gotOwns != 1 { t.Fatalf("expected %d, got %d", 1, gotOwns) - } else if ownsIri := (&gotOwnsIri).String(); ownsIri != iriString { + } else if ownsIri := gotOwnsIri.String(); ownsIri != iriString { t.Fatalf("expected %s, got %s", iriString, ownsIri) } } @@ -5298,12 +5298,12 @@ func TestPostOutbox_Add_AddsIfTargetOwnedAndAppCanAdd(t *testing.T) { PreparePubberPostOutboxTest(t, app, socialApp, fedApp, socialCb, fedCb, d, httpClient, p) resp := httptest.NewRecorder() req := Sign(ActivityPubRequest(httptest.NewRequest("POST", testOutboxURI, bytes.NewBuffer(MustSerialize(testAddNote))))) - app.MockFederateApp.owns = func(c context.Context, iri url.URL) bool { + app.MockFederateApp.owns = func(c context.Context, iri *url.URL) bool { return true } gotGet := 0 - var gotGetIri url.URL - app.MockFederateApp.get = func(c context.Context, iri url.URL, rw RWType) (PubObject, error) { + var gotGetIri *url.URL + app.MockFederateApp.get = func(c context.Context, iri *url.URL, rw RWType) (PubObject, error) { if rw != ReadWrite { t.Fatalf("expected RWType of %d, got %d", ReadWrite, rw) } @@ -5344,7 +5344,7 @@ func TestPostOutbox_Add_AddsIfTargetOwnedAndAppCanAdd(t *testing.T) { t.Fatalf("expected handled, got !handled") } else if gotGet != 1 { t.Fatalf("expected %d, got %d", 1, gotGet) - } else if getIri := (&gotGetIri).String(); getIri != iriString { + } else if getIri := gotGetIri.String(); getIri != iriString { t.Fatalf("expected %s, got %s", iriString, getIri) } else if gotCanAdd != 1 { t.Fatalf("expected %d, got %d", 1, gotCanAdd) @@ -5364,12 +5364,12 @@ func TestPostOutbox_Add_DoesNotAddIfAppCannotAdd(t *testing.T) { PreparePubberPostOutboxTest(t, app, socialApp, fedApp, socialCb, fedCb, d, httpClient, p) resp := httptest.NewRecorder() req := Sign(ActivityPubRequest(httptest.NewRequest("POST", testOutboxURI, bytes.NewBuffer(MustSerialize(testAddNote))))) - app.MockFederateApp.owns = func(c context.Context, iri url.URL) bool { + app.MockFederateApp.owns = func(c context.Context, iri *url.URL) bool { return true } gotGet := 0 - var gotGetIri url.URL - app.MockFederateApp.get = func(c context.Context, iri url.URL, rw RWType) (PubObject, error) { + var gotGetIri *url.URL + app.MockFederateApp.get = func(c context.Context, iri *url.URL, rw RWType) (PubObject, error) { gotGet++ gotGetIri = iri col := &vocab.Collection{} @@ -5397,7 +5397,7 @@ func TestPostOutbox_Add_DoesNotAddIfAppCannotAdd(t *testing.T) { t.Fatalf("expected handled, got !handled") } else if gotGet != 1 { t.Fatalf("expected %d, got %d", 1, gotGet) - } else if getIri := (&gotGetIri).String(); getIri != iriString { + } else if getIri := gotGetIri.String(); getIri != iriString { t.Fatalf("expected %s, got %s", iriString, getIri) } else if gotCanAdd != 1 { t.Fatalf("expected %d, got %d", 1, gotCanAdd) @@ -5413,7 +5413,7 @@ func TestPostOutbox_Add_CallsCallback(t *testing.T) { PreparePubberPostOutboxTest(t, app, socialApp, fedApp, socialCb, fedCb, d, httpClient, p) resp := httptest.NewRecorder() req := Sign(ActivityPubRequest(httptest.NewRequest("POST", testOutboxURI, bytes.NewBuffer(MustSerialize(testAddNote))))) - app.MockFederateApp.owns = func(c context.Context, iri url.URL) bool { + app.MockFederateApp.owns = func(c context.Context, iri *url.URL) bool { return false } gotCallback := 0 @@ -5440,7 +5440,7 @@ func TestPostOutbox_Add_IsDelivered(t *testing.T) { PreparePubberPostOutboxTest(t, app, socialApp, fedApp, socialCb, fedCb, d, httpClient, p) resp := httptest.NewRecorder() req := Sign(ActivityPubRequest(httptest.NewRequest("POST", testOutboxURI, bytes.NewBuffer(MustSerialize(testAddNote))))) - app.MockFederateApp.owns = func(c context.Context, iri url.URL) bool { + app.MockFederateApp.owns = func(c context.Context, iri *url.URL) bool { return false } socialCb.add = func(c context.Context, s *streams.Add) error { @@ -5492,8 +5492,8 @@ func TestPostOutbox_Remove_DoesNotRemoveIfTargetNotOwned(t *testing.T) { resp := httptest.NewRecorder() req := Sign(ActivityPubRequest(httptest.NewRequest("POST", testOutboxURI, bytes.NewBuffer(MustSerialize(testRemoveNote))))) gotOwns := 0 - var gotOwnsIri url.URL - app.MockFederateApp.owns = func(c context.Context, iri url.URL) bool { + var gotOwnsIri *url.URL + app.MockFederateApp.owns = func(c context.Context, iri *url.URL) bool { gotOwns++ gotOwnsIri = iri return false @@ -5508,7 +5508,7 @@ func TestPostOutbox_Remove_DoesNotRemoveIfTargetNotOwned(t *testing.T) { t.Fatalf("expected handled, got !handled") } else if gotOwns != 1 { t.Fatalf("expected %d, got %d", 1, gotOwns) - } else if ownsIri := (&gotOwnsIri).String(); ownsIri != iriString { + } else if ownsIri := gotOwnsIri.String(); ownsIri != iriString { t.Fatalf("expected %s, got %s", iriString, ownsIri) } } @@ -5518,12 +5518,12 @@ func TestPostOutbox_Remove_RemoveIfTargetOwnedAndCanRemove(t *testing.T) { PreparePubberPostOutboxTest(t, app, socialApp, fedApp, socialCb, fedCb, d, httpClient, p) resp := httptest.NewRecorder() req := Sign(ActivityPubRequest(httptest.NewRequest("POST", testOutboxURI, bytes.NewBuffer(MustSerialize(testRemoveNote))))) - app.MockFederateApp.owns = func(c context.Context, iri url.URL) bool { + app.MockFederateApp.owns = func(c context.Context, iri *url.URL) bool { return true } gotGet := 0 - var gotGetIri url.URL - app.MockFederateApp.get = func(c context.Context, iri url.URL, rw RWType) (PubObject, error) { + var gotGetIri *url.URL + app.MockFederateApp.get = func(c context.Context, iri *url.URL, rw RWType) (PubObject, error) { gotGet++ gotGetIri = iri col := &vocab.Collection{} @@ -5561,7 +5561,7 @@ func TestPostOutbox_Remove_RemoveIfTargetOwnedAndCanRemove(t *testing.T) { t.Fatalf("expected handled, got !handled") } else if gotGet != 1 { t.Fatalf("expected %d, got %d", 1, gotGet) - } else if getIri := (&gotGetIri).String(); getIri != iriString { + } else if getIri := gotGetIri.String(); getIri != iriString { t.Fatalf("expected %s, got %s", iriString, getIri) } else if gotCanRemove != 1 { t.Fatalf("expected %d, got %d", 1, gotCanRemove) @@ -5581,12 +5581,12 @@ func TestPostOutbox_Remove_DoesNotRemoveIfAppCannotRemove(t *testing.T) { PreparePubberPostOutboxTest(t, app, socialApp, fedApp, socialCb, fedCb, d, httpClient, p) resp := httptest.NewRecorder() req := Sign(ActivityPubRequest(httptest.NewRequest("POST", testOutboxURI, bytes.NewBuffer(MustSerialize(testRemoveNote))))) - app.MockFederateApp.owns = func(c context.Context, iri url.URL) bool { + app.MockFederateApp.owns = func(c context.Context, iri *url.URL) bool { return true } gotGet := 0 - var gotGetIri url.URL - app.MockFederateApp.get = func(c context.Context, iri url.URL, rw RWType) (PubObject, error) { + var gotGetIri *url.URL + app.MockFederateApp.get = func(c context.Context, iri *url.URL, rw RWType) (PubObject, error) { gotGet++ gotGetIri = iri col := &vocab.Collection{} @@ -5616,7 +5616,7 @@ func TestPostOutbox_Remove_DoesNotRemoveIfAppCannotRemove(t *testing.T) { t.Fatalf("expected handled, got !handled") } else if gotGet != 1 { t.Fatalf("expected %d, got %d", 1, gotGet) - } else if getIri := (&gotGetIri).String(); getIri != iriString { + } else if getIri := gotGetIri.String(); getIri != iriString { t.Fatalf("expected %s, got %s", iriString, getIri) } else if gotCanRemove != 1 { t.Fatalf("expected %d, got %d", 1, gotCanRemove) @@ -5632,7 +5632,7 @@ func TestPostOutbox_Remove_CallsCallback(t *testing.T) { PreparePubberPostOutboxTest(t, app, socialApp, fedApp, socialCb, fedCb, d, httpClient, p) resp := httptest.NewRecorder() req := Sign(ActivityPubRequest(httptest.NewRequest("POST", testOutboxURI, bytes.NewBuffer(MustSerialize(testRemoveNote))))) - app.MockFederateApp.owns = func(c context.Context, iri url.URL) bool { + app.MockFederateApp.owns = func(c context.Context, iri *url.URL) bool { return false } gotCallback := 0 @@ -5659,7 +5659,7 @@ func TestPostOutbox_Remove_IsDelivered(t *testing.T) { PreparePubberPostOutboxTest(t, app, socialApp, fedApp, socialCb, fedCb, d, httpClient, p) resp := httptest.NewRecorder() req := Sign(ActivityPubRequest(httptest.NewRequest("POST", testOutboxURI, bytes.NewBuffer(MustSerialize(testRemoveNote))))) - app.MockFederateApp.owns = func(c context.Context, iri url.URL) bool { + app.MockFederateApp.owns = func(c context.Context, iri *url.URL) bool { return false } socialCb.remove = func(c context.Context, s *streams.Remove) error { @@ -5711,15 +5711,15 @@ func TestPostOutbox_Like_AddsToLikedCollection(t *testing.T) { resp := httptest.NewRecorder() req := Sign(ActivityPubRequest(httptest.NewRequest("POST", testOutboxURI, bytes.NewBuffer(MustSerialize(testLikeNote))))) gotOwns := 0 - var gotOwnsIri url.URL - app.MockFederateApp.owns = func(c context.Context, iri url.URL) bool { + var gotOwnsIri *url.URL + app.MockFederateApp.owns = func(c context.Context, iri *url.URL) bool { gotOwns++ gotOwnsIri = iri return true } gotGet := 0 - var gotGetIri url.URL - app.MockFederateApp.get = func(c context.Context, iri url.URL, rw RWType) (PubObject, error) { + var gotGetIri *url.URL + app.MockFederateApp.get = func(c context.Context, iri *url.URL, rw RWType) (PubObject, error) { if rw != ReadWrite { t.Fatalf("expected RWType of %d, got %d", ReadWrite, rw) } @@ -5727,7 +5727,7 @@ func TestPostOutbox_Like_AddsToLikedCollection(t *testing.T) { gotGetIri = iri v := &vocab.Person{} v.AppendNameString("Sally") - v.SetId(*sallyIRI) + v.SetId(sallyIRI) v.SetLikedCollection(&vocab.Collection{}) return v, nil } @@ -5748,7 +5748,7 @@ func TestPostOutbox_Like_AddsToLikedCollection(t *testing.T) { expectedLikes.AppendItemsObject(testNote) expectedActor := &vocab.Person{} expectedActor.AppendNameString("Sally") - expectedActor.SetId(*sallyIRI) + expectedActor.SetId(sallyIRI) expectedActor.SetLikedCollection(expectedLikes) if err != nil { t.Fatal(err) @@ -5756,11 +5756,11 @@ func TestPostOutbox_Like_AddsToLikedCollection(t *testing.T) { t.Fatalf("expected handled, got !handled") } else if gotOwns != 1 { t.Fatalf("expected %d, got %d", 1, gotOwns) - } else if gotOwnsString := (&gotOwnsIri).String(); gotOwnsString != sallyIRIString { + } else if gotOwnsString := gotOwnsIri.String(); gotOwnsString != sallyIRIString { t.Fatalf("expected %s, got %s", noteURIString, sallyIRIString) } else if gotGet != 1 { t.Fatalf("expected %d, got %d", 1, gotGet) - } else if gotGetString := (&gotGetIri).String(); gotGetString != sallyIRIString { + } else if gotGetString := gotGetIri.String(); gotGetString != sallyIRIString { t.Fatalf("expected %s, got %s", noteURIString, sallyIRIString) } else if gotSet != 2 { t.Fatalf("expected %d, got %d", 2, gotSet) @@ -5774,15 +5774,15 @@ func TestPostOutbox_Like_DoesNotAddIfAlreadyLiked(t *testing.T) { PreparePubberPostOutboxTest(t, app, socialApp, fedApp, socialCb, fedCb, d, httpClient, p) resp := httptest.NewRecorder() req := Sign(ActivityPubRequest(httptest.NewRequest("POST", testOutboxURI, bytes.NewBuffer(MustSerialize(testLikeNote))))) - app.MockFederateApp.owns = func(c context.Context, iri url.URL) bool { + app.MockFederateApp.owns = func(c context.Context, iri *url.URL) bool { return true } - app.MockFederateApp.get = func(c context.Context, iri url.URL, rw RWType) (PubObject, error) { + app.MockFederateApp.get = func(c context.Context, iri *url.URL, rw RWType) (PubObject, error) { liked := &vocab.Collection{} - liked.AppendItemsIRI(*noteIRI) + liked.AppendItemsIRI(noteIRI) v := &vocab.Person{} v.AppendNameString("Sally") - v.SetId(*sallyIRI) + v.SetId(sallyIRI) v.SetLikedCollection(liked) return v, nil } @@ -5800,10 +5800,10 @@ func TestPostOutbox_Like_DoesNotAddIfAlreadyLiked(t *testing.T) { } handled, err := p.PostOutbox(context.Background(), resp, req) expectedLikes := &vocab.Collection{} - expectedLikes.AppendItemsIRI(*noteIRI) + expectedLikes.AppendItemsIRI(noteIRI) expectedActor := &vocab.Person{} expectedActor.AppendNameString("Sally") - expectedActor.SetId(*sallyIRI) + expectedActor.SetId(sallyIRI) expectedActor.SetLikedCollection(expectedLikes) if err != nil { t.Fatal(err) @@ -5821,13 +5821,13 @@ func TestPostOutbox_Like_AddsToLikedOrderedCollection(t *testing.T) { PreparePubberPostOutboxTest(t, app, socialApp, fedApp, socialCb, fedCb, d, httpClient, p) resp := httptest.NewRecorder() req := Sign(ActivityPubRequest(httptest.NewRequest("POST", testOutboxURI, bytes.NewBuffer(MustSerialize(testLikeNote))))) - app.MockFederateApp.owns = func(c context.Context, iri url.URL) bool { + app.MockFederateApp.owns = func(c context.Context, iri *url.URL) bool { return true } - app.MockFederateApp.get = func(c context.Context, iri url.URL, rw RWType) (PubObject, error) { + app.MockFederateApp.get = func(c context.Context, iri *url.URL, rw RWType) (PubObject, error) { v := &vocab.Person{} v.AppendNameString("Sally") - v.SetId(*sallyIRI) + v.SetId(sallyIRI) v.SetLikedOrderedCollection(&vocab.OrderedCollection{}) return v, nil } @@ -5848,7 +5848,7 @@ func TestPostOutbox_Like_AddsToLikedOrderedCollection(t *testing.T) { expectedLikes.AppendOrderedItemsObject(testNote) expectedActor := &vocab.Person{} expectedActor.AppendNameString("Sally") - expectedActor.SetId(*sallyIRI) + expectedActor.SetId(sallyIRI) expectedActor.SetLikedOrderedCollection(expectedLikes) if err != nil { t.Fatal(err) @@ -5865,8 +5865,8 @@ func TestPostOutbox_Like_DoesNotAddIfCollectionNotOwned(t *testing.T) { resp := httptest.NewRecorder() req := Sign(ActivityPubRequest(httptest.NewRequest("POST", testOutboxURI, bytes.NewBuffer(MustSerialize(testLikeNote))))) gotOwns := 0 - var gotOwnsIri url.URL - app.MockFederateApp.owns = func(c context.Context, iri url.URL) bool { + var gotOwnsIri *url.URL + app.MockFederateApp.owns = func(c context.Context, iri *url.URL) bool { gotOwns++ gotOwnsIri = iri return false @@ -5881,7 +5881,7 @@ func TestPostOutbox_Like_DoesNotAddIfCollectionNotOwned(t *testing.T) { t.Fatalf("expected handled, got !handled") } else if gotOwns != 1 { t.Fatalf("expected %d, got %d", 1, gotOwns) - } else if gotOwnsString := (&gotOwnsIri).String(); gotOwnsString != sallyIRIString { + } else if gotOwnsString := gotOwnsIri.String(); gotOwnsString != sallyIRIString { t.Fatalf("expected %s, got %s", noteURIString, sallyIRIString) } } @@ -5891,13 +5891,13 @@ func TestPostOutbox_Like_CallsCallback(t *testing.T) { PreparePubberPostOutboxTest(t, app, socialApp, fedApp, socialCb, fedCb, d, httpClient, p) resp := httptest.NewRecorder() req := Sign(ActivityPubRequest(httptest.NewRequest("POST", testOutboxURI, bytes.NewBuffer(MustSerialize(testLikeNote))))) - app.MockFederateApp.owns = func(c context.Context, iri url.URL) bool { + app.MockFederateApp.owns = func(c context.Context, iri *url.URL) bool { return true } - app.MockFederateApp.get = func(c context.Context, iri url.URL, rw RWType) (PubObject, error) { + app.MockFederateApp.get = func(c context.Context, iri *url.URL, rw RWType) (PubObject, error) { v := &vocab.Person{} v.AppendNameString("Sally") - v.SetId(*sallyIRI) + v.SetId(sallyIRI) v.SetLikedOrderedCollection(&vocab.OrderedCollection{}) return v, nil } @@ -5928,13 +5928,13 @@ func TestPostOutbox_Like_IsDelivered(t *testing.T) { PreparePubberPostOutboxTest(t, app, socialApp, fedApp, socialCb, fedCb, d, httpClient, p) resp := httptest.NewRecorder() req := Sign(ActivityPubRequest(httptest.NewRequest("POST", testOutboxURI, bytes.NewBuffer(MustSerialize(testLikeNote))))) - app.MockFederateApp.owns = func(c context.Context, iri url.URL) bool { + app.MockFederateApp.owns = func(c context.Context, iri *url.URL) bool { return true } - app.MockFederateApp.get = func(c context.Context, iri url.URL, rw RWType) (PubObject, error) { + app.MockFederateApp.get = func(c context.Context, iri *url.URL, rw RWType) (PubObject, error) { v := &vocab.Person{} v.AppendNameString("Sally") - v.SetId(*sallyIRI) + v.SetId(sallyIRI) v.SetLikedOrderedCollection(&vocab.OrderedCollection{}) return v, nil } diff --git a/pub/handlers.go b/pub/handlers.go index ddd6582..4d7746d 100644 --- a/pub/handlers.go +++ b/pub/handlers.go @@ -31,7 +31,7 @@ func serveActivityPubObject(c context.Context, a Application, clock Clock, w htt if !handled { return } - id := *r.URL + id := r.URL if !a.Owns(c, id) { w.WriteHeader(http.StatusNotFound) return @@ -76,7 +76,7 @@ func serveActivityPubObject(c context.Context, a Application, clock Clock, w htt } else { // Signed request var publicKey crypto.PublicKey var algo httpsig.Algorithm - var user url.URL + var user *url.URL publicKey, algo, user, err = a.GetPublicKey(c, v.KeyId()) if err != nil { return @@ -87,15 +87,15 @@ func serveActivityPubObject(c context.Context, a Application, clock Clock, w htt err = nil return } else if err == nil { - verifiedUser = &user + verifiedUser = user } // Else failed HTTP Signature verification but we still allow access. } } var pObj PubObject if verifiedUser != nil { - pObj, err = a.GetAsVerifiedUser(c, *r.URL, *verifiedUser, Read) + pObj, err = a.GetAsVerifiedUser(c, r.URL, verifiedUser, Read) } else { - pObj, err = a.Get(c, *r.URL, Read) + pObj, err = a.Get(c, r.URL, Read) } if err != nil { return diff --git a/pub/handlers_test.go b/pub/handlers_test.go index e31e8fd..5d5ed08 100644 --- a/pub/handlers_test.go +++ b/pub/handlers_test.go @@ -25,20 +25,20 @@ func TestServeActivityPubObject(t *testing.T) { name: "unsigned request", app: &MockApplication{ t: t, - get: func(c context.Context, id url.URL, rw RWType) (PubObject, error) { + get: func(c context.Context, id *url.URL, rw RWType) (PubObject, error) { if rw != Read { t.Fatalf("expected RWType of %d, got %d", Read, rw) - } else if s := (&id).String(); s != noteURIString { + } else if s := id.String(); s != noteURIString { t.Fatalf("(%q) expected %s, got %s", noteURIString, s) } testNote = &vocab.Note{} - testNote.SetId(*noteIRI) + testNote.SetId(noteIRI) testNote.AppendNameString(noteName) testNote.AppendContentString("This is a simple note") return testNote, nil }, - owns: func(c context.Context, id url.URL) bool { - if s := (&id).String(); s != noteURIString { + owns: func(c context.Context, id *url.URL) bool { + if s := id.String(); s != noteURIString { t.Fatalf("(%q) expected %s, got %s", noteURIString, s) } return true @@ -49,7 +49,7 @@ func TestServeActivityPubObject(t *testing.T) { expectedCode: http.StatusOK, expectedObjFn: func() vocab.Serializer { testNote = &vocab.Note{} - testNote.SetId(*noteIRI) + testNote.SetId(noteIRI) testNote.AppendNameString(noteName) testNote.AppendContentString("This is a simple note") return testNote @@ -61,28 +61,28 @@ func TestServeActivityPubObject(t *testing.T) { input: Sign(ActivityPubRequest(httptest.NewRequest("GET", noteURIString, nil))), app: &MockApplication{ t: t, - getPublicKey: func(c context.Context, publicKeyId string) (crypto.PublicKey, httpsig.Algorithm, url.URL, error) { + getPublicKey: func(c context.Context, publicKeyId string) (crypto.PublicKey, httpsig.Algorithm, *url.URL, error) { if publicKeyId != testPublicKeyId { t.Fatalf("(%q) expected %s, got %s", testPublicKeyId, publicKeyId) } - return testPrivateKey.Public(), httpsig.RSA_SHA256, *samIRI, nil + return testPrivateKey.Public(), httpsig.RSA_SHA256, samIRI, nil }, - getAsVerifiedUser: func(c context.Context, id, user url.URL, rw RWType) (PubObject, error) { + getAsVerifiedUser: func(c context.Context, id, user *url.URL, rw RWType) (PubObject, error) { if rw != Read { t.Fatalf("expected RWType of %d, got %d", Read, rw) - } else if s := (&id).String(); s != noteURIString { + } else if s := id.String(); s != noteURIString { t.Fatalf("(%q) expected %s, got %s", noteURIString, s) - } else if u := (&user).String(); u != samIRIString { + } else if u := user.String(); u != samIRIString { t.Fatalf("(%q) expected %s, got %s", samIRIString, u) } testNote = &vocab.Note{} - testNote.SetId(*noteIRI) + testNote.SetId(noteIRI) testNote.AppendNameString(noteName) testNote.AppendContentString("This is a simple note") return testNote, nil }, - owns: func(c context.Context, id url.URL) bool { - if s := (&id).String(); s != noteURIString { + owns: func(c context.Context, id *url.URL) bool { + if s := id.String(); s != noteURIString { t.Fatalf("(%q) expected %s, got %s", noteURIString, s) } return true @@ -92,7 +92,7 @@ func TestServeActivityPubObject(t *testing.T) { expectedCode: http.StatusOK, expectedObjFn: func() vocab.Serializer { testNote = &vocab.Note{} - testNote.SetId(*noteIRI) + testNote.SetId(noteIRI) testNote.AppendNameString(noteName) testNote.AppendContentString("This is a simple note") return testNote @@ -104,8 +104,8 @@ func TestServeActivityPubObject(t *testing.T) { input: ActivityPubRequest(httptest.NewRequest("GET", noteURIString, nil)), app: &MockApplication{ t: t, - owns: func(c context.Context, id url.URL) bool { - if s := (&id).String(); s != noteURIString { + owns: func(c context.Context, id *url.URL) bool { + if s := id.String(); s != noteURIString { t.Fatalf("(%q) expected %s, got %s", noteURIString, s) } return false @@ -124,14 +124,14 @@ func TestServeActivityPubObject(t *testing.T) { input: BadSignature(ActivityPubRequest(httptest.NewRequest("GET", noteURIString, nil))), app: &MockApplication{ t: t, - getPublicKey: func(c context.Context, publicKeyId string) (crypto.PublicKey, httpsig.Algorithm, url.URL, error) { + getPublicKey: func(c context.Context, publicKeyId string) (crypto.PublicKey, httpsig.Algorithm, *url.URL, error) { if publicKeyId != testPublicKeyId { t.Fatalf("(%q) expected %s, got %s", testPublicKeyId, publicKeyId) } - return testPrivateKey.Public(), httpsig.RSA_SHA256, *samIRI, nil + return testPrivateKey.Public(), httpsig.RSA_SHA256, samIRI, nil }, - owns: func(c context.Context, id url.URL) bool { - if s := (&id).String(); s != noteURIString { + owns: func(c context.Context, id *url.URL) bool { + if s := id.String(); s != noteURIString { t.Fatalf("(%q) expected %s, got %s", noteURIString, s) } return true @@ -176,20 +176,20 @@ func TestServeActivityPubObjectWithVerificationMethod(t *testing.T) { name: "unsigned request", app: &MockApplication{ t: t, - get: func(c context.Context, id url.URL, rw RWType) (PubObject, error) { + get: func(c context.Context, id *url.URL, rw RWType) (PubObject, error) { if rw != Read { t.Fatalf("expected RWType of %d, got %d", Read, rw) - } else if s := (&id).String(); s != noteURIString { + } else if s := id.String(); s != noteURIString { t.Fatalf("(%q) expected %s, got %s", noteURIString, s) } testNote = &vocab.Note{} - testNote.SetId(*noteIRI) + testNote.SetId(noteIRI) testNote.AppendNameString(noteName) testNote.AppendContentString("This is a simple note") return testNote, nil }, - owns: func(c context.Context, id url.URL) bool { - if s := (&id).String(); s != noteURIString { + owns: func(c context.Context, id *url.URL) bool { + if s := id.String(); s != noteURIString { t.Fatalf("(%q) expected %s, got %s", noteURIString, s) } return true @@ -200,7 +200,7 @@ func TestServeActivityPubObjectWithVerificationMethod(t *testing.T) { expectedCode: http.StatusOK, expectedObjFn: func() vocab.Serializer { testNote = &vocab.Note{} - testNote.SetId(*noteIRI) + testNote.SetId(noteIRI) testNote.AppendNameString(noteName) testNote.AppendContentString("This is a simple note") return testNote @@ -212,28 +212,28 @@ func TestServeActivityPubObjectWithVerificationMethod(t *testing.T) { input: Sign(ActivityPubRequest(httptest.NewRequest("GET", noteURIString, nil))), app: &MockApplication{ t: t, - getPublicKey: func(c context.Context, publicKeyId string) (crypto.PublicKey, httpsig.Algorithm, url.URL, error) { + getPublicKey: func(c context.Context, publicKeyId string) (crypto.PublicKey, httpsig.Algorithm, *url.URL, error) { if publicKeyId != testPublicKeyId { t.Fatalf("(%q) expected %s, got %s", testPublicKeyId, publicKeyId) } - return testPrivateKey.Public(), httpsig.RSA_SHA256, *samIRI, nil + return testPrivateKey.Public(), httpsig.RSA_SHA256, samIRI, nil }, - getAsVerifiedUser: func(c context.Context, id, user url.URL, rw RWType) (PubObject, error) { + getAsVerifiedUser: func(c context.Context, id, user *url.URL, rw RWType) (PubObject, error) { if rw != Read { t.Fatalf("expected RWType of %d, got %d", Read, rw) - } else if s := (&id).String(); s != noteURIString { + } else if s := id.String(); s != noteURIString { t.Fatalf("(%q) expected %s, got %s", noteURIString, s) - } else if u := (&user).String(); u != samIRIString { + } else if u := user.String(); u != samIRIString { t.Fatalf("(%q) expected %s, got %s", samIRIString, u) } testNote = &vocab.Note{} - testNote.SetId(*noteIRI) + testNote.SetId(noteIRI) testNote.AppendNameString(noteName) testNote.AppendContentString("This is a simple note") return testNote, nil }, - owns: func(c context.Context, id url.URL) bool { - if s := (&id).String(); s != noteURIString { + owns: func(c context.Context, id *url.URL) bool { + if s := id.String(); s != noteURIString { t.Fatalf("(%q) expected %s, got %s", noteURIString, s) } return true @@ -243,7 +243,7 @@ func TestServeActivityPubObjectWithVerificationMethod(t *testing.T) { expectedCode: http.StatusOK, expectedObjFn: func() vocab.Serializer { testNote = &vocab.Note{} - testNote.SetId(*noteIRI) + testNote.SetId(noteIRI) testNote.AppendNameString(noteName) testNote.AppendContentString("This is a simple note") return testNote @@ -255,8 +255,8 @@ func TestServeActivityPubObjectWithVerificationMethod(t *testing.T) { input: ActivityPubRequest(httptest.NewRequest("GET", noteURIString, nil)), app: &MockApplication{ t: t, - owns: func(c context.Context, id url.URL) bool { - if s := (&id).String(); s != noteURIString { + owns: func(c context.Context, id *url.URL) bool { + if s := id.String(); s != noteURIString { t.Fatalf("(%q) expected %s, got %s", noteURIString, s) } return false @@ -275,14 +275,14 @@ func TestServeActivityPubObjectWithVerificationMethod(t *testing.T) { input: BadSignature(ActivityPubRequest(httptest.NewRequest("GET", noteURIString, nil))), app: &MockApplication{ t: t, - getPublicKey: func(c context.Context, publicKeyId string) (crypto.PublicKey, httpsig.Algorithm, url.URL, error) { + getPublicKey: func(c context.Context, publicKeyId string) (crypto.PublicKey, httpsig.Algorithm, *url.URL, error) { if publicKeyId != testPublicKeyId { t.Fatalf("(%q) expected %s, got %s", testPublicKeyId, publicKeyId) } - return testPrivateKey.Public(), httpsig.RSA_SHA256, *samIRI, nil + return testPrivateKey.Public(), httpsig.RSA_SHA256, samIRI, nil }, - owns: func(c context.Context, id url.URL) bool { - if s := (&id).String(); s != noteURIString { + owns: func(c context.Context, id *url.URL) bool { + if s := id.String(); s != noteURIString { t.Fatalf("(%q) expected %s, got %s", noteURIString, s) } return true @@ -295,22 +295,22 @@ func TestServeActivityPubObjectWithVerificationMethod(t *testing.T) { name: "unsigned request passes verifier", app: &MockApplication{ t: t, - getAsVerifiedUser: func(c context.Context, id, user url.URL, rw RWType) (PubObject, error) { + getAsVerifiedUser: func(c context.Context, id, user *url.URL, rw RWType) (PubObject, error) { if rw != Read { t.Fatalf("expected RWType of %d, got %d", Read, rw) - } else if s := (&id).String(); s != noteURIString { + } else if s := id.String(); s != noteURIString { t.Fatalf("(%q) expected %s, got %s", noteURIString, s) - } else if u := (&user).String(); u != samIRIString { + } else if u := user.String(); u != samIRIString { t.Fatalf("(%q) expected %s, got %s", samIRIString, u) } testNote = &vocab.Note{} - testNote.SetId(*noteIRI) + testNote.SetId(noteIRI) testNote.AppendNameString(noteName) testNote.AppendContentString("This is a simple note") return testNote, nil }, - owns: func(c context.Context, id url.URL) bool { - if s := (&id).String(); s != noteURIString { + owns: func(c context.Context, id *url.URL) bool { + if s := id.String(); s != noteURIString { t.Fatalf("(%q) expected %s, got %s", noteURIString, s) } return true @@ -327,7 +327,7 @@ func TestServeActivityPubObjectWithVerificationMethod(t *testing.T) { expectedCode: http.StatusOK, expectedObjFn: func() vocab.Serializer { testNote = &vocab.Note{} - testNote.SetId(*noteIRI) + testNote.SetId(noteIRI) testNote.AppendNameString(noteName) testNote.AppendContentString("This is a simple note") return testNote @@ -339,22 +339,22 @@ func TestServeActivityPubObjectWithVerificationMethod(t *testing.T) { input: Sign(ActivityPubRequest(httptest.NewRequest("GET", noteURIString, nil))), app: &MockApplication{ t: t, - getAsVerifiedUser: func(c context.Context, id, user url.URL, rw RWType) (PubObject, error) { + getAsVerifiedUser: func(c context.Context, id, user *url.URL, rw RWType) (PubObject, error) { if rw != Read { t.Fatalf("expected RWType of %d, got %d", Read, rw) - } else if s := (&id).String(); s != noteURIString { + } else if s := id.String(); s != noteURIString { t.Fatalf("(%q) expected %s, got %s", noteURIString, s) - } else if u := (&user).String(); u != samIRIString { + } else if u := user.String(); u != samIRIString { t.Fatalf("(%q) expected %s, got %s", samIRIString, u) } testNote = &vocab.Note{} - testNote.SetId(*noteIRI) + testNote.SetId(noteIRI) testNote.AppendNameString(noteName) testNote.AppendContentString("This is a simple note") return testNote, nil }, - owns: func(c context.Context, id url.URL) bool { - if s := (&id).String(); s != noteURIString { + owns: func(c context.Context, id *url.URL) bool { + if s := id.String(); s != noteURIString { t.Fatalf("(%q) expected %s, got %s", noteURIString, s) } return true @@ -370,7 +370,7 @@ func TestServeActivityPubObjectWithVerificationMethod(t *testing.T) { expectedCode: http.StatusOK, expectedObjFn: func() vocab.Serializer { testNote = &vocab.Note{} - testNote.SetId(*noteIRI) + testNote.SetId(noteIRI) testNote.AppendNameString(noteName) testNote.AppendContentString("This is a simple note") return testNote @@ -381,8 +381,8 @@ func TestServeActivityPubObjectWithVerificationMethod(t *testing.T) { name: "verifier authed unauthz", app: &MockApplication{ t: t, - owns: func(c context.Context, id url.URL) bool { - if s := (&id).String(); s != noteURIString { + owns: func(c context.Context, id *url.URL) bool { + if s := id.String(); s != noteURIString { t.Fatalf("(%q) expected %s, got %s", noteURIString, s) } return true @@ -403,8 +403,8 @@ func TestServeActivityPubObjectWithVerificationMethod(t *testing.T) { name: "verifier unauthed unauthz", app: &MockApplication{ t: t, - owns: func(c context.Context, id url.URL) bool { - if s := (&id).String(); s != noteURIString { + owns: func(c context.Context, id *url.URL) bool { + if s := id.String(); s != noteURIString { t.Fatalf("(%q) expected %s, got %s", noteURIString, s) } return true @@ -425,8 +425,8 @@ func TestServeActivityPubObjectWithVerificationMethod(t *testing.T) { name: "verifier unauthed authz unsigned fails", app: &MockApplication{ t: t, - owns: func(c context.Context, id url.URL) bool { - if s := (&id).String(); s != noteURIString { + owns: func(c context.Context, id *url.URL) bool { + if s := id.String(); s != noteURIString { t.Fatalf("(%q) expected %s, got %s", noteURIString, s) } return true @@ -448,28 +448,28 @@ func TestServeActivityPubObjectWithVerificationMethod(t *testing.T) { input: Sign(ActivityPubRequest(httptest.NewRequest("GET", noteURIString, nil))), app: &MockApplication{ t: t, - getPublicKey: func(c context.Context, publicKeyId string) (crypto.PublicKey, httpsig.Algorithm, url.URL, error) { + getPublicKey: func(c context.Context, publicKeyId string) (crypto.PublicKey, httpsig.Algorithm, *url.URL, error) { if publicKeyId != testPublicKeyId { t.Fatalf("(%q) expected %s, got %s", testPublicKeyId, publicKeyId) } - return testPrivateKey.Public(), httpsig.RSA_SHA256, *samIRI, nil + return testPrivateKey.Public(), httpsig.RSA_SHA256, samIRI, nil }, - getAsVerifiedUser: func(c context.Context, id, user url.URL, rw RWType) (PubObject, error) { + getAsVerifiedUser: func(c context.Context, id, user *url.URL, rw RWType) (PubObject, error) { if rw != Read { t.Fatalf("expected RWType of %d, got %d", Read, rw) - } else if s := (&id).String(); s != noteURIString { + } else if s := id.String(); s != noteURIString { t.Fatalf("(%q) expected %s, got %s", noteURIString, s) - } else if u := (&user).String(); u != samIRIString { + } else if u := user.String(); u != samIRIString { t.Fatalf("(%q) expected %s, got %s", samIRIString, u) } testNote = &vocab.Note{} - testNote.SetId(*noteIRI) + testNote.SetId(noteIRI) testNote.AppendNameString(noteName) testNote.AppendContentString("This is a simple note") return testNote, nil }, - owns: func(c context.Context, id url.URL) bool { - if s := (&id).String(); s != noteURIString { + owns: func(c context.Context, id *url.URL) bool { + if s := id.String(); s != noteURIString { t.Fatalf("(%q) expected %s, got %s", noteURIString, s) } return true @@ -485,7 +485,7 @@ func TestServeActivityPubObjectWithVerificationMethod(t *testing.T) { expectedCode: http.StatusOK, expectedObjFn: func() vocab.Serializer { testNote = &vocab.Note{} - testNote.SetId(*noteIRI) + testNote.SetId(noteIRI) testNote.AppendNameString(noteName) testNote.AppendContentString("This is a simple note") return testNote @@ -496,8 +496,8 @@ func TestServeActivityPubObjectWithVerificationMethod(t *testing.T) { name: "verifier unauthed authz unsigned fails with bad impl returning user", app: &MockApplication{ t: t, - owns: func(c context.Context, id url.URL) bool { - if s := (&id).String(); s != noteURIString { + owns: func(c context.Context, id *url.URL) bool { + if s := id.String(); s != noteURIString { t.Fatalf("(%q) expected %s, got %s", noteURIString, s) } return true diff --git a/pub/interfaces.go b/pub/interfaces.go index b157fd7..2940269 100644 --- a/pub/interfaces.go +++ b/pub/interfaces.go @@ -65,7 +65,7 @@ type SocialAPIVerifier interface { // (false, true, ) => authentication failed: must pass HTTP Signature verification or will be Permission Denied // (false, false, ) => authentication failed: deny access (Bad request) // (, , error) => an internal error occurred during validation - VerifyForOutbox(r *http.Request, outbox url.URL) (authn, authz bool, err error) + VerifyForOutbox(r *http.Request, outbox *url.URL) (authn, authz bool, err error) } // Application is provided by users of this library in order to implement a @@ -76,16 +76,16 @@ type SocialAPIVerifier interface { // order to properly handle the request. type Application interface { // Owns returns true if the provided id is owned by this server. - Owns(c context.Context, id url.URL) bool + Owns(c context.Context, id *url.URL) bool // Get fetches the ActivityStream representation of the given id. - Get(c context.Context, id url.URL, rw RWType) (PubObject, error) + Get(c context.Context, id *url.URL, rw RWType) (PubObject, error) // GetAsVerifiedUser fetches the ActivityStream representation of the // given id with the provided IRI representing the authenticated user // making the request. - GetAsVerifiedUser(c context.Context, id, authdUser url.URL, rw RWType) (PubObject, error) + GetAsVerifiedUser(c context.Context, id, authdUser *url.URL, rw RWType) (PubObject, error) // Has determines if the server already knows about the object or // Activity specified by the given id. - Has(c context.Context, id url.URL) (bool, error) + Has(c context.Context, id *url.URL) (bool, error) // Set should write or overwrite the value of the provided object for // its 'id'. Set(c context.Context, o PubObject) error @@ -100,11 +100,11 @@ type Application interface { // NewId takes in a client id token and returns an ActivityStreams IRI // id for a new Activity posted to the outbox. The object is provided // as a Typer so clients can use it to decide how to generate the IRI. - NewId(c context.Context, t Typer) url.URL + NewId(c context.Context, t Typer) *url.URL // GetPublicKey fetches the public key for a user based on the public // key id. It also determines which algorithm to use to verify the // signature. - GetPublicKey(c context.Context, publicKeyId string) (pubKey crypto.PublicKey, algo httpsig.Algorithm, user url.URL, err error) + GetPublicKey(c context.Context, publicKeyId string) (pubKey crypto.PublicKey, algo httpsig.Algorithm, user *url.URL, err error) } // RWType indicates the kind of reading being done. @@ -128,7 +128,7 @@ type SocialAPI interface { CanRemove(c context.Context, o vocab.ObjectType, t vocab.ObjectType) bool // AddToOutboxResolver(c context.Context) (*streams.Resolver, error) // ActorIRI returns the actor's IRI associated with the given request. - ActorIRI(c context.Context, r *http.Request) (url.URL, error) + ActorIRI(c context.Context, r *http.Request) (*url.URL, error) // GetSocialAPIVerifier returns the authentication mechanism used for // incoming ActivityPub client requests. It is optional and allowed to // return null. @@ -143,7 +143,7 @@ type SocialAPI interface { // Note that a key difference from Application's GetPublicKey is that // this function must make sure that the actor whose boxIRI is passed in // matches the public key id that is requested, or return an error. - GetPublicKeyForOutbox(c context.Context, publicKeyId string, boxIRI url.URL) (crypto.PublicKey, httpsig.Algorithm, error) + GetPublicKeyForOutbox(c context.Context, publicKeyId string, boxIRI *url.URL) (crypto.PublicKey, httpsig.Algorithm, error) } // FederateAPI is provided by users of this library and designed to handle @@ -167,7 +167,7 @@ type FederateAPI interface { // // If nil error is returned, then the received activity is processed as // a normal unblocked interaction. - Unblocked(c context.Context, actorIRIs []url.URL) error + Unblocked(c context.Context, actorIRIs []*url.URL) error // FilterForwarding is invoked when a received activity needs to be // forwarded to specific inboxes owned by this server in order to avoid // the ghost reply problem. The IRIs provided are collections owned by @@ -178,7 +178,7 @@ type FederateAPI interface { // vulnerable to becoming a spam bot for a malicious federate peer. // Typical implementations will filter the iris down to be only the // follower collections owned by the actors targeted in the activity. - FilterForwarding(c context.Context, activity vocab.ActivityType, iris []url.URL) ([]url.URL, error) + FilterForwarding(c context.Context, activity vocab.ActivityType, iris []*url.URL) ([]*url.URL, error) // NewSigner returns a new httpsig.Signer for which deliveries can be // signed by the actor delivering the Activity. Let me take this moment // to really level with you, dear anonymous reader-of-documentation. You @@ -201,7 +201,7 @@ type FederateAPI interface { // PrivateKey fetches the private key and its associated public key ID. // The given URL is the inbox or outbox for the actor whose key is // needed. - PrivateKey(boxIRI url.URL) (privKey crypto.PrivateKey, pubKeyId string, err error) + PrivateKey(boxIRI *url.URL) (privKey crypto.PrivateKey, pubKeyId string, err error) } // SocialApp is an implementation only for the Social API part of the @@ -296,15 +296,15 @@ type Callbacker interface { type Deliverer interface { // Do schedules a message to be sent to a specific URL endpoint by // using toDo. - Do(b []byte, to url.URL, toDo func(b []byte, u url.URL) error) + Do(b []byte, to *url.URL, toDo func(b []byte, u *url.URL) error) } // PubObject is an ActivityPub Object. type PubObject interface { vocab.Serializer Typer - GetId() url.URL - SetId(url.URL) + GetId() *url.URL + SetId(*url.URL) HasId() bool AppendType(interface{}) RemoveType(int) @@ -319,7 +319,7 @@ type Typer interface { // typeIder is a Typer with additional generic capabilities. type typeIder interface { Typer - SetId(v url.URL) + SetId(v *url.URL) Serialize() (m map[string]interface{}, e error) } @@ -327,7 +327,7 @@ type typeIder interface { // strict than what we include here, only for our internal use. type actor interface { IsInboxAnyURI() (ok bool) - GetInboxAnyURI() (v url.URL) + GetInboxAnyURI() (v *url.URL) IsInboxOrderedCollection() (ok bool) GetInboxOrderedCollection() (v vocab.OrderedCollectionType) } @@ -338,7 +338,7 @@ var _ actor = &vocab.Object{} // representing the author or originator of the object. type actorObject interface { IsInboxAnyURI() (ok bool) - GetInboxAnyURI() (v url.URL) + GetInboxAnyURI() (v *url.URL) IsInboxOrderedCollection() (ok bool) GetInboxOrderedCollection() (v vocab.OrderedCollectionType) AttributedToLen() (l int) @@ -347,14 +347,14 @@ type actorObject interface { IsAttributedToLink(index int) (ok bool) GetAttributedToLink(index int) (v vocab.LinkType) IsAttributedToIRI(index int) (ok bool) - GetAttributedToIRI(index int) (v url.URL) + GetAttributedToIRI(index int) (v *url.URL) ActorLen() (l int) IsActorObject(index int) (ok bool) GetActorObject(index int) (v vocab.ObjectType) IsActorLink(index int) (ok bool) GetActorLink(index int) (v vocab.LinkType) IsActorIRI(index int) (ok bool) - GetActorIRI(index int) (v url.URL) + GetActorIRI(index int) (v *url.URL) } // deliverableObject is an object that is able to be sent to recipients via the @@ -367,7 +367,7 @@ type deliverableObject interface { IsToLink(index int) (ok bool) GetToLink(index int) (v vocab.LinkType) IsToIRI(index int) (ok bool) - GetToIRI(index int) (v url.URL) + GetToIRI(index int) (v *url.URL) BtoLen() (l int) IsBtoObject(index int) (ok bool) GetBtoObject(index int) (v vocab.ObjectType) @@ -376,7 +376,7 @@ type deliverableObject interface { GetBtoLink(index int) (v vocab.LinkType) RemoveBtoLink(index int) IsBtoIRI(index int) (ok bool) - GetBtoIRI(index int) (v url.URL) + GetBtoIRI(index int) (v *url.URL) RemoveBtoIRI(index int) CcLen() (l int) IsCcObject(index int) (ok bool) @@ -384,7 +384,7 @@ type deliverableObject interface { IsCcLink(index int) (ok bool) GetCcLink(index int) (v vocab.LinkType) IsCcIRI(index int) (ok bool) - GetCcIRI(index int) (v url.URL) + GetCcIRI(index int) (v *url.URL) BccLen() (l int) IsBccObject(index int) (ok bool) GetBccObject(index int) (v vocab.ObjectType) @@ -393,7 +393,7 @@ type deliverableObject interface { GetBccLink(index int) (v vocab.LinkType) RemoveBccLink(index int) IsBccIRI(index int) (ok bool) - GetBccIRI(index int) (v url.URL) + GetBccIRI(index int) (v *url.URL) RemoveBccIRI(index int) AudienceLen() (l int) IsAudienceObject(index int) (ok bool) @@ -401,5 +401,5 @@ type deliverableObject interface { IsAudienceLink(index int) (ok bool) GetAudienceLink(index int) (v vocab.LinkType) IsAudienceIRI(index int) (ok bool) - GetAudienceIRI(index int) (v url.URL) + GetAudienceIRI(index int) (v *url.URL) } diff --git a/pub/internal.go b/pub/internal.go index f38a32f..87e5eee 100644 --- a/pub/internal.go +++ b/pub/internal.go @@ -92,7 +92,7 @@ func addResponseHeaders(h http.Header, c Clock, responseContent []byte) { // ActivityStream representation. // // creds is allowed to be nil. -func dereference(c HttpClient, u url.URL, agent string, creds *creds, clock Clock) ([]byte, error) { +func dereference(c HttpClient, u *url.URL, agent string, creds *creds, clock Clock) ([]byte, error) { // TODO: (section 7.1) The server MUST dereference the collection (with the user's credentials) req, err := http.NewRequest("GET", u.String(), nil) if err != nil { @@ -130,7 +130,7 @@ type creds struct { // body set to the provided bytes. // // creds is able to be nil. -func postToOutbox(c HttpClient, b []byte, to url.URL, agent string, creds *creds, clock Clock) error { +func postToOutbox(c HttpClient, b []byte, to *url.URL, agent string, creds *creds, clock Clock) error { byteCopy := make([]byte, 0, len(b)) copy(b, byteCopy) buf := bytes.NewBuffer(byteCopy) @@ -163,7 +163,7 @@ func postToOutbox(c HttpClient, b []byte, to url.URL, agent string, creds *creds // wrapInCreate will automatically wrap the provided object in a Create // activity. This will copy over the 'to', 'bto', 'cc', 'bcc', and 'audience' // properties. It will also copy over the published time if present. -func (f *federator) wrapInCreate(o vocab.ObjectType, actor url.URL) *vocab.Create { +func (f *federator) wrapInCreate(o vocab.ObjectType, actor *url.URL) *vocab.Create { c := &vocab.Create{} c.AppendObject(o) c.AppendActorIRI(actor) @@ -236,13 +236,13 @@ func (f *federator) sameRecipients(a vocab.ActivityType) error { for j := 0; j < o.ToLen(); j++ { if o.IsToObject(j) { id := o.GetToObject(j).GetId() - to[i][(&id).String()] = o.GetToObject(j) + to[i][id.String()] = o.GetToObject(j) } else if o.IsToLink(j) { id := o.GetToLink(j).GetHref() - to[i][(&id).String()] = o.GetToLink(j) + to[i][id.String()] = o.GetToLink(j) } else if o.IsToIRI(j) { id := o.GetToIRI(j) - to[i][(&id).String()] = id + to[i][id.String()] = id } } } @@ -250,13 +250,13 @@ func (f *federator) sameRecipients(a vocab.ActivityType) error { for i := 0; i < a.ToLen(); i++ { if a.IsToObject(i) { id := a.GetToObject(i).GetId() - toActivity[(&id).String()] = a.GetToObject(i) + toActivity[id.String()] = a.GetToObject(i) } else if a.IsToLink(i) { id := a.GetToLink(i).GetHref() - toActivity[(&id).String()] = a.GetToLink(i) + toActivity[id.String()] = a.GetToLink(i) } else if a.IsToIRI(i) { id := a.GetToIRI(i) - toActivity[(&id).String()] = id + toActivity[id.String()] = id } } bto := make([]map[string]interface{}, a.ObjectLen()) @@ -269,13 +269,13 @@ func (f *federator) sameRecipients(a vocab.ActivityType) error { for j := 0; j < o.BtoLen(); j++ { if o.IsBtoObject(j) { id := o.GetBtoObject(j).GetId() - bto[i][(&id).String()] = o.GetBtoObject(j) + bto[i][id.String()] = o.GetBtoObject(j) } else if o.IsBtoLink(j) { id := o.GetBtoLink(j).GetHref() - bto[i][(&id).String()] = o.GetBtoLink(j) + bto[i][id.String()] = o.GetBtoLink(j) } else if o.IsBtoIRI(j) { id := o.GetBtoIRI(j) - bto[i][(&id).String()] = id + bto[i][id.String()] = id } } } @@ -283,13 +283,13 @@ func (f *federator) sameRecipients(a vocab.ActivityType) error { for i := 0; i < a.BtoLen(); i++ { if a.IsBtoObject(i) { id := a.GetBtoObject(i).GetId() - btoActivity[(&id).String()] = a.GetBtoObject(i) + btoActivity[id.String()] = a.GetBtoObject(i) } else if a.IsBtoLink(i) { id := a.GetBtoLink(i).GetHref() - btoActivity[(&id).String()] = a.GetBtoLink(i) + btoActivity[id.String()] = a.GetBtoLink(i) } else if a.IsBtoIRI(i) { id := a.GetBtoIRI(i) - btoActivity[(&id).String()] = id + btoActivity[id.String()] = id } } cc := make([]map[string]interface{}, a.ObjectLen()) @@ -302,13 +302,13 @@ func (f *federator) sameRecipients(a vocab.ActivityType) error { for j := 0; j < o.CcLen(); j++ { if o.IsCcObject(j) { id := o.GetCcObject(j).GetId() - cc[i][(&id).String()] = o.GetCcObject(j) + cc[i][id.String()] = o.GetCcObject(j) } else if o.IsCcLink(j) { id := o.GetCcLink(j).GetHref() - cc[i][(&id).String()] = o.GetCcLink(j) + cc[i][id.String()] = o.GetCcLink(j) } else if o.IsCcIRI(j) { id := o.GetCcIRI(j) - cc[i][(&id).String()] = id + cc[i][id.String()] = id } } } @@ -316,13 +316,13 @@ func (f *federator) sameRecipients(a vocab.ActivityType) error { for i := 0; i < a.CcLen(); i++ { if a.IsCcObject(i) { id := a.GetCcObject(i).GetId() - ccActivity[(&id).String()] = a.GetCcObject(i) + ccActivity[id.String()] = a.GetCcObject(i) } else if a.IsCcLink(i) { id := a.GetCcLink(i).GetHref() - ccActivity[(&id).String()] = a.GetCcLink(i) + ccActivity[id.String()] = a.GetCcLink(i) } else if a.IsCcIRI(i) { id := a.GetCcIRI(i) - ccActivity[(&id).String()] = id + ccActivity[id.String()] = id } } bcc := make([]map[string]interface{}, a.ObjectLen()) @@ -335,13 +335,13 @@ func (f *federator) sameRecipients(a vocab.ActivityType) error { for j := 0; j < o.BccLen(); j++ { if o.IsBccObject(j) { id := o.GetBccObject(j).GetId() - bcc[i][(&id).String()] = o.GetBccObject(j) + bcc[i][id.String()] = o.GetBccObject(j) } else if o.IsBccLink(j) { id := o.GetBccLink(j).GetHref() - bcc[i][(&id).String()] = o.GetBccLink(j) + bcc[i][id.String()] = o.GetBccLink(j) } else if o.IsBccIRI(j) { id := o.GetBccIRI(j) - bcc[i][(&id).String()] = id + bcc[i][id.String()] = id } } } @@ -349,13 +349,13 @@ func (f *federator) sameRecipients(a vocab.ActivityType) error { for i := 0; i < a.BccLen(); i++ { if a.IsBccObject(i) { id := a.GetBccObject(i).GetId() - bccActivity[(&id).String()] = a.GetBccObject(i) + bccActivity[id.String()] = a.GetBccObject(i) } else if a.IsBccLink(i) { id := a.GetBccLink(i).GetHref() - bccActivity[(&id).String()] = a.GetBccLink(i) + bccActivity[id.String()] = a.GetBccLink(i) } else if a.IsBccIRI(i) { id := a.GetBccIRI(i) - bccActivity[(&id).String()] = id + bccActivity[id.String()] = id } } audience := make([]map[string]interface{}, a.ObjectLen()) @@ -368,13 +368,13 @@ func (f *federator) sameRecipients(a vocab.ActivityType) error { for j := 0; j < o.AudienceLen(); j++ { if o.IsAudienceObject(j) { id := o.GetAudienceObject(j).GetId() - audience[i][(&id).String()] = o.GetAudienceObject(j) + audience[i][id.String()] = o.GetAudienceObject(j) } else if o.IsAudienceLink(j) { id := o.GetAudienceLink(j).GetHref() - audience[i][(&id).String()] = o.GetAudienceLink(j) + audience[i][id.String()] = o.GetAudienceLink(j) } else if o.IsAudienceIRI(j) { id := o.GetAudienceIRI(j) - audience[i][(&id).String()] = id + audience[i][id.String()] = id } } } @@ -382,13 +382,13 @@ func (f *federator) sameRecipients(a vocab.ActivityType) error { for i := 0; i < a.AudienceLen(); i++ { if a.IsAudienceObject(i) { id := a.GetAudienceObject(i).GetId() - audienceActivity[(&id).String()] = a.GetAudienceObject(i) + audienceActivity[id.String()] = a.GetAudienceObject(i) } else if a.IsAudienceLink(i) { id := a.GetAudienceLink(i).GetHref() - audienceActivity[(&id).String()] = a.GetAudienceLink(i) + audienceActivity[id.String()] = a.GetAudienceLink(i) } else if a.IsAudienceIRI(i) { id := a.GetAudienceIRI(i) - audienceActivity[(&id).String()] = id + audienceActivity[id.String()] = id } } // Next, add activity recipients to all objects if not already present @@ -399,7 +399,7 @@ func (f *federator) sameRecipients(a vocab.ActivityType) error { a.GetObject(i).AppendToObject(vObj) } else if vLink, ok := v.(vocab.LinkType); ok { a.GetObject(i).AppendToLink(vLink) - } else if vIRI, ok := v.(url.URL); ok { + } else if vIRI, ok := v.(*url.URL); ok { a.GetObject(i).AppendToIRI(vIRI) } } @@ -412,7 +412,7 @@ func (f *federator) sameRecipients(a vocab.ActivityType) error { a.GetObject(i).AppendBtoObject(vObj) } else if vLink, ok := v.(vocab.LinkType); ok { a.GetObject(i).AppendBtoLink(vLink) - } else if vIRI, ok := v.(url.URL); ok { + } else if vIRI, ok := v.(*url.URL); ok { a.GetObject(i).AppendBtoIRI(vIRI) } } @@ -425,7 +425,7 @@ func (f *federator) sameRecipients(a vocab.ActivityType) error { a.GetObject(i).AppendCcObject(vObj) } else if vLink, ok := v.(vocab.LinkType); ok { a.GetObject(i).AppendCcLink(vLink) - } else if vIRI, ok := v.(url.URL); ok { + } else if vIRI, ok := v.(*url.URL); ok { a.GetObject(i).AppendCcIRI(vIRI) } } @@ -438,7 +438,7 @@ func (f *federator) sameRecipients(a vocab.ActivityType) error { a.GetObject(i).AppendBccObject(vObj) } else if vLink, ok := v.(vocab.LinkType); ok { a.GetObject(i).AppendBccLink(vLink) - } else if vIRI, ok := v.(url.URL); ok { + } else if vIRI, ok := v.(*url.URL); ok { a.GetObject(i).AppendBccIRI(vIRI) } } @@ -451,7 +451,7 @@ func (f *federator) sameRecipients(a vocab.ActivityType) error { a.GetObject(i).AppendAudienceObject(vObj) } else if vLink, ok := v.(vocab.LinkType); ok { a.GetObject(i).AppendAudienceLink(vLink) - } else if vIRI, ok := v.(url.URL); ok { + } else if vIRI, ok := v.(*url.URL); ok { a.GetObject(i).AppendAudienceIRI(vIRI) } } @@ -466,7 +466,7 @@ func (f *federator) sameRecipients(a vocab.ActivityType) error { a.AppendToObject(vObj) } else if vLink, ok := v.(vocab.LinkType); ok { a.AppendToLink(vLink) - } else if vIRI, ok := v.(url.URL); ok { + } else if vIRI, ok := v.(*url.URL); ok { a.AppendToIRI(vIRI) } } @@ -477,7 +477,7 @@ func (f *federator) sameRecipients(a vocab.ActivityType) error { a.AppendBtoObject(vObj) } else if vLink, ok := v.(vocab.LinkType); ok { a.AppendBtoLink(vLink) - } else if vIRI, ok := v.(url.URL); ok { + } else if vIRI, ok := v.(*url.URL); ok { a.AppendBtoIRI(vIRI) } } @@ -488,7 +488,7 @@ func (f *federator) sameRecipients(a vocab.ActivityType) error { a.AppendCcObject(vObj) } else if vLink, ok := v.(vocab.LinkType); ok { a.AppendCcLink(vLink) - } else if vIRI, ok := v.(url.URL); ok { + } else if vIRI, ok := v.(*url.URL); ok { a.AppendCcIRI(vIRI) } } @@ -499,7 +499,7 @@ func (f *federator) sameRecipients(a vocab.ActivityType) error { a.AppendBccObject(vObj) } else if vLink, ok := v.(vocab.LinkType); ok { a.AppendBccLink(vLink) - } else if vIRI, ok := v.(url.URL); ok { + } else if vIRI, ok := v.(*url.URL); ok { a.AppendBccIRI(vIRI) } } @@ -510,7 +510,7 @@ func (f *federator) sameRecipients(a vocab.ActivityType) error { a.AppendAudienceObject(vObj) } else if vLink, ok := v.(vocab.LinkType); ok { a.AppendAudienceLink(vLink) - } else if vIRI, ok := v.(url.URL); ok { + } else if vIRI, ok := v.(*url.URL); ok { a.AppendAudienceIRI(vIRI) } } @@ -523,7 +523,7 @@ func (f *federator) sameRecipients(a vocab.ActivityType) error { // deliver will complete the peer-to-peer sending of a federated message to // another server. -func (f *federator) deliver(obj vocab.ActivityType, boxIRI url.URL) error { +func (f *federator) deliver(obj vocab.ActivityType, boxIRI *url.URL) error { recipients, err := f.prepare(boxIRI, obj) if err != nil { return err @@ -542,7 +542,7 @@ func (f *federator) deliver(obj vocab.ActivityType, boxIRI url.URL) error { // deliverToRecipients will take a prepared Activity and send it to specific // recipients without examining the activity. -func (f *federator) deliverToRecipients(obj vocab.ActivityType, recipients []url.URL, creds *creds) error { +func (f *federator) deliverToRecipients(obj vocab.ActivityType, recipients []*url.URL, creds *creds) error { m, err := obj.Serialize() if err != nil { return err @@ -553,7 +553,7 @@ func (f *federator) deliverToRecipients(obj vocab.ActivityType, recipients []url return err } for _, to := range recipients { - f.deliverer.Do(b, to, func(b []byte, u url.URL) error { + f.deliverer.Do(b, to, func(b []byte, u *url.URL) error { return postToOutbox(f.Client, b, u, f.Agent, creds, f.Clock) }) } @@ -563,9 +563,9 @@ func (f *federator) deliverToRecipients(obj vocab.ActivityType, recipients []url // prepare takes a deliverableObject and returns a list of the proper recipient // target URIs. Additionally, the deliverableObject will have any hidden // hidden recipients ("bto" and "bcc") stripped from it. -func (c *federator) prepare(boxIRI url.URL, o deliverableObject) ([]url.URL, error) { +func (c *federator) prepare(boxIRI *url.URL, o deliverableObject) ([]*url.URL, error) { // Get inboxes of recipients - var r []url.URL + var r []*url.URL r = append(r, getToIRIs(o)...) r = append(r, getBToIRIs(o)...) r = append(r, getCcIRIs(o)...) @@ -607,7 +607,7 @@ func (c *federator) prepare(boxIRI url.URL, o deliverableObject) ([]url.URL, err // resolveInboxes takes a list of Actor id URIs and returns them as concrete // instances of actorObject. It applies recursively when it encounters a target // that is a Collection or OrderedCollection. -func (c *federator) resolveInboxes(boxIRI url.URL, r []url.URL, depth int, max int) ([]actor, error) { +func (c *federator) resolveInboxes(boxIRI *url.URL, r []*url.URL, depth int, max int) ([]actor, error) { if depth >= max { return nil, nil } @@ -619,7 +619,7 @@ func (c *federator) resolveInboxes(boxIRI url.URL, r []url.URL, depth int, max i if err != nil { return nil, err } - var uris []url.URL + var uris []*url.URL if co != nil { uris := getURIsInItemer(co.Raw()) actors, err := c.resolveInboxes(boxIRI, uris, depth+1, max) @@ -669,7 +669,7 @@ func (c *federator) resolveInboxes(boxIRI url.URL, r []url.URL, depth int, max i return a, nil } -func (c *federator) dereferenceForResolvingInboxes(u, boxIRI url.URL, cr *creds) (actor actor, co *streams.Collection, oc *streams.OrderedCollection, cp *streams.CollectionPage, ocp *streams.OrderedCollectionPage, cred *creds, err error) { +func (c *federator) dereferenceForResolvingInboxes(u, boxIRI *url.URL, cr *creds) (actor actor, co *streams.Collection, oc *streams.OrderedCollection, cp *streams.CollectionPage, ocp *streams.OrderedCollectionPage, cred *creds, err error) { // To pass back to calling function, since may be set recursively: cred = cr var resp []byte @@ -711,8 +711,8 @@ func (c *federator) dereferenceForResolvingInboxes(u, boxIRI url.URL, cr *creds) } // getInboxes extracts the 'inbox' IRIs from actors. -func getInboxes(a []actor) ([]url.URL, error) { - var u []url.URL +func getInboxes(a []actor) ([]*url.URL, error) { + var u []*url.URL for _, actor := range a { if actor.IsInboxAnyURI() { u = append(u, actor.GetInboxAnyURI()) @@ -729,8 +729,8 @@ func getInboxes(a []actor) ([]url.URL, error) { // getActorAttributedToURI attempts to find the URIs for the "actor" and // "attributedTo" originators on the object. -func getActorsAttributedToURI(a actorObject) []url.URL { - var u []url.URL +func getActorsAttributedToURI(a actorObject) []*url.URL { + var u []*url.URL for i := 0; i < a.AttributedToLen(); i++ { if a.IsAttributedToObject(i) { obj := a.GetAttributedToObject(i) @@ -790,16 +790,17 @@ func stripHiddenRecipients(o deliverableObject) { // dedupeIRIs will deduplicate final inbox IRIs. The ignore list is applied to // the final list -func dedupeIRIs(recipients, ignored []url.URL) (out []url.URL) { - ignoredMap := make(map[url.URL]bool, len(ignored)) +func dedupeIRIs(recipients, ignored []*url.URL) (out []*url.URL) { + ignoredMap := make(map[string]bool, len(ignored)) for _, elem := range ignored { - ignoredMap[elem] = true + ignoredMap[elem.String()] = true } - outMap := make(map[url.URL]bool, len(recipients)) + outMap := make(map[string]bool, len(recipients)) for _, k := range recipients { - if !ignoredMap[k] && !outMap[k] { + kStr := k.String() + if !ignoredMap[kStr] && !outMap[kStr] { out = append(out, k) - outMap[k] = true + outMap[kStr] = true } } return @@ -816,13 +817,11 @@ func (f *federator) dedupeOrderedItems(oc vocab.OrderedCollectionType) (vocab.Or if oc.IsOrderedItemsObject(i) { removeFn = oc.RemoveOrderedItemsObject iri := oc.GetOrderedItemsObject(i).GetId() - pIri := &iri - id = pIri.String() + id = iri.String() } else if oc.IsOrderedItemsLink(i) { removeFn = oc.RemoveOrderedItemsLink iri := oc.GetOrderedItemsLink(i).GetId() - pIri := &iri - id = pIri.String() + id = iri.String() } else if oc.IsOrderedItemsIRI(i) { removeFn = oc.RemoveOrderedItemsIRI b, err := dereference(f.Client, oc.GetOrderedItemsIRI(i), f.Agent, nil, f.Clock) @@ -830,13 +829,12 @@ func (f *federator) dedupeOrderedItems(oc vocab.OrderedCollectionType) (vocab.Or if err := json.Unmarshal(b, &m); err != nil { return oc, err } - var iri url.URL + var iri *url.URL var hasIri bool if err = toIdResolver(&hasIri, &iri).Deserialize(m); err != nil { return oc, err } - pIri := &iri - id = pIri.String() + id = iri.String() } if seen[id] { removeFn(i) @@ -849,7 +847,7 @@ func (f *federator) dedupeOrderedItems(oc vocab.OrderedCollectionType) (vocab.Or } // filterURLs removes urls whose strings match the provided filter -func filterURLs(u []url.URL, fn func(s string) bool) []url.URL { +func filterURLs(u []*url.URL, fn func(s string) bool) []*url.URL { i := 0 for i < len(u) { if fn(u[i].String()) { @@ -861,8 +859,8 @@ func filterURLs(u []url.URL, fn func(s string) bool) []url.URL { return u } -func getToIRIs(o deliverableObject) []url.URL { - var r []url.URL +func getToIRIs(o deliverableObject) []*url.URL { + var r []*url.URL for i := 0; i < o.ToLen(); i++ { if o.IsToObject(i) { obj := o.GetToObject(i) @@ -881,8 +879,8 @@ func getToIRIs(o deliverableObject) []url.URL { return r } -func getBToIRIs(o deliverableObject) []url.URL { - var r []url.URL +func getBToIRIs(o deliverableObject) []*url.URL { + var r []*url.URL for i := 0; i < o.BtoLen(); i++ { if o.IsBtoObject(i) { obj := o.GetBtoObject(i) @@ -901,8 +899,8 @@ func getBToIRIs(o deliverableObject) []url.URL { return r } -func getCcIRIs(o deliverableObject) []url.URL { - var r []url.URL +func getCcIRIs(o deliverableObject) []*url.URL { + var r []*url.URL for i := 0; i < o.CcLen(); i++ { if o.IsCcObject(i) { obj := o.GetCcObject(i) @@ -921,8 +919,8 @@ func getCcIRIs(o deliverableObject) []url.URL { return r } -func getBccIRIs(o deliverableObject) []url.URL { - var r []url.URL +func getBccIRIs(o deliverableObject) []*url.URL { + var r []*url.URL for i := 0; i < o.BccLen(); i++ { if o.IsBccObject(i) { obj := o.GetBccObject(i) @@ -941,8 +939,8 @@ func getBccIRIs(o deliverableObject) []url.URL { return r } -func getAudienceIRIs(o deliverableObject) []url.URL { - var r []url.URL +func getAudienceIRIs(o deliverableObject) []*url.URL { + var r []*url.URL for i := 0; i < o.AudienceLen(); i++ { if o.IsAudienceObject(i) { obj := o.GetAudienceObject(i) @@ -1077,13 +1075,16 @@ type itemer interface { IsItemsLink(index int) (ok bool) GetItemsLink(index int) (v vocab.LinkType) IsItemsIRI(index int) (ok bool) - GetItemsIRI(index int) (v url.URL) + GetItemsIRI(index int) (v *url.URL) } +var _ itemer = &vocab.Collection{} +var _ itemer = &vocab.CollectionPage{} + // getURIsInItemer will extract 'items' from the provided Collection or // CollectionPage. -func getURIsInItemer(i itemer) []url.URL { - var u []url.URL +func getURIsInItemer(i itemer) []*url.URL { + var u []*url.URL for j := 0; j < i.ItemsLen(); j++ { if i.IsItemsObject(j) { obj := i.GetItemsObject(j) @@ -1109,13 +1110,16 @@ type orderedItemer interface { IsOrderedItemsLink(index int) (ok bool) GetOrderedItemsLink(index int) (v vocab.LinkType) IsOrderedItemsIRI(index int) (ok bool) - GetOrderedItemsIRI(index int) (v url.URL) + GetOrderedItemsIRI(index int) (v *url.URL) } +var _ orderedItemer = &vocab.OrderedCollection{} +var _ orderedItemer = &vocab.OrderedCollectionPage{} + // getURIsInOrderedItemer will extract 'items' from the provided // OrderedCollection or OrderedCollectionPage. -func getURIsInOrderedItemer(i orderedItemer) []url.URL { - var u []url.URL +func getURIsInOrderedItemer(i orderedItemer) []*url.URL { + var u []*url.URL for j := 0; j < i.OrderedItemsLen(); j++ { if i.IsOrderedItemsObject(j) { obj := i.GetOrderedItemsObject(j) @@ -1139,10 +1143,10 @@ type activityWithObject interface { IsObject(index int) (ok bool) GetObject(index int) (v vocab.ObjectType) IsObjectIRI(index int) (ok bool) - GetObjectIRI(index int) (v url.URL) + GetObjectIRI(index int) (v *url.URL) } -func getObjectIds(a activityWithObject) (u []url.URL, e error) { +func getObjectIds(a activityWithObject) (u []*url.URL, e error) { for i := 0; i < a.ObjectLen(); i++ { if a.IsObject(i) { obj := a.GetObject(i) @@ -1163,10 +1167,10 @@ type activityWithTarget interface { IsTargetObject(index int) (ok bool) GetTargetObject(index int) (v vocab.ObjectType) IsTargetIRI(index int) (ok bool) - GetTargetIRI(index int) (v url.URL) + GetTargetIRI(index int) (v *url.URL) } -func getTargetIds(a activityWithTarget) (u []url.URL, e error) { +func getTargetIds(a activityWithTarget) (u []*url.URL, e error) { for i := 0; i < a.TargetLen(); i++ { if a.IsTargetObject(i) { obj := a.GetTargetObject(i) @@ -1182,14 +1186,14 @@ func getTargetIds(a activityWithTarget) (u []url.URL, e error) { return } -func removeCollectionItemWithId(c vocab.CollectionType, iri url.URL) { +func removeCollectionItemWithId(c vocab.CollectionType, iri *url.URL) { for i := 0; i < c.ItemsLen(); i++ { if c.IsItemsObject(i) { o := c.GetItemsObject(i) if !o.HasId() { continue } - if o.GetId() == iri { + if *o.GetId() == *iri { c.RemoveItemsObject(i) return } @@ -1198,12 +1202,12 @@ func removeCollectionItemWithId(c vocab.CollectionType, iri url.URL) { if !l.HasHref() { continue } - if l.GetHref() == iri { + if *l.GetHref() == *iri { c.RemoveItemsLink(i) return } } else if c.IsItemsIRI(i) { - if c.GetItemsIRI(i) == iri { + if *c.GetItemsIRI(i) == *iri { c.RemoveItemsIRI(i) return } @@ -1211,14 +1215,14 @@ func removeCollectionItemWithId(c vocab.CollectionType, iri url.URL) { } } -func removeOrderedCollectionItemWithId(c vocab.OrderedCollectionType, iri url.URL) { +func removeOrderedCollectionItemWithId(c vocab.OrderedCollectionType, iri *url.URL) { for i := 0; i < c.OrderedItemsLen(); i++ { if c.IsOrderedItemsObject(i) { o := c.GetOrderedItemsObject(i) if !o.HasId() { continue } - if o.GetId() == iri { + if *o.GetId() == *iri { c.RemoveOrderedItemsObject(i) return } @@ -1227,12 +1231,12 @@ func removeOrderedCollectionItemWithId(c vocab.OrderedCollectionType, iri url.UR if !l.HasHref() { continue } - if l.GetHref() == iri { + if *l.GetHref() == *iri { c.RemoveOrderedItemsLink(i) return } } else if c.IsOrderedItemsIRI(i) { - if c.GetOrderedItemsIRI(i) == iri { + if *c.GetOrderedItemsIRI(i) == *iri { c.RemoveOrderedItemsIRI(i) return } @@ -1241,7 +1245,7 @@ func removeOrderedCollectionItemWithId(c vocab.OrderedCollectionType, iri url.UR } // toTombstone creates a Tombstone for the given object. -func toTombstone(obj vocab.ObjectType, id url.URL, now time.Time) vocab.TombstoneType { +func toTombstone(obj vocab.ObjectType, id *url.URL, now time.Time) vocab.TombstoneType { tomb := &vocab.Tombstone{} tomb.SetId(id) for i := 0; i < obj.TypeLen(); i++ { @@ -1269,7 +1273,7 @@ type getActorCollectionFn func(actor vocab.ObjectType, lc *vocab.CollectionType, func (f *federator) addAllObjectsToActorCollection(ctx context.Context, getter getActorCollectionFn, c vocab.ActivityType, prepend bool) error { for i := 0; i < c.ActorLen(); i++ { - var iri url.URL + var iri *url.URL if c.IsActorObject(i) { obj := c.GetActorObject(i) if !obj.HasId() { @@ -1306,7 +1310,7 @@ func (f *federator) addAllObjectsToActorCollection(ctx context.Context, getter g return err } // Duplication detection - var iriSet map[url.URL]bool + var iriSet map[string]bool if lc != nil { iriSet, err = getIRISetFromItems(lc) } else if loc != nil { @@ -1319,7 +1323,7 @@ func (f *federator) addAllObjectsToActorCollection(ctx context.Context, getter g for i := 0; i < c.ObjectLen(); i++ { if c.IsObjectIRI(i) { iri := c.GetObjectIRI(i) - if iriSet[iri] { + if iriSet[iri.String()] { continue } if lc != nil { @@ -1341,7 +1345,7 @@ func (f *federator) addAllObjectsToActorCollection(ctx context.Context, getter g return fmt.Errorf("object at index %d has no id", i) } iri := obj.GetId() - if iriSet[iri] { + if iriSet[iri.String()] { continue } if lc != nil { @@ -1380,7 +1384,7 @@ type getObjectCollectionFn func(object vocab.ObjectType, lc *vocab.CollectionTyp func (f *federator) addAllActorsToObjectCollection(ctx context.Context, getter getObjectCollectionFn, c vocab.ActivityType, prepend bool) (bool, error) { ownsAny := false for i := 0; i < c.ObjectLen(); i++ { - var iri url.URL + var iri *url.URL if c.IsObject(i) { obj := c.GetObject(i) if !obj.HasId() { @@ -1412,7 +1416,7 @@ func (f *federator) addAllActorsToObjectCollection(ctx context.Context, getter g return ownsAny, err } // Duplication detection - var iriSet map[url.URL]bool + var iriSet map[string]bool if lc != nil { iriSet, err = getIRISetFromItems(lc) } else if loc != nil { @@ -1425,7 +1429,7 @@ func (f *federator) addAllActorsToObjectCollection(ctx context.Context, getter g for i := 0; i < c.ActorLen(); i++ { if c.IsActorIRI(i) { iri := c.GetActorIRI(i) - if iriSet[iri] { + if iriSet[iri.String()] { continue } if lc != nil { @@ -1447,7 +1451,7 @@ func (f *federator) addAllActorsToObjectCollection(ctx context.Context, getter g return ownsAny, fmt.Errorf("actor object at index %d has no id", i) } iri := obj.GetId() - if iriSet[iri] { + if iriSet[iri.String()] { continue } if lc != nil { @@ -1469,7 +1473,7 @@ func (f *federator) addAllActorsToObjectCollection(ctx context.Context, getter g return ownsAny, fmt.Errorf("actor link at index %d has no id", i) } iri := l.GetHref() - if iriSet[iri] { + if iriSet[iri.String()] { continue } if lc != nil { @@ -1504,7 +1508,7 @@ func (f *federator) addAllActorsToObjectCollection(ctx context.Context, getter g } func (f *federator) ownsAnyObjects(c context.Context, a vocab.ActivityType) (bool, error) { - var iris []url.URL + var iris []*url.URL for i := 0; i < a.ObjectLen(); i++ { if a.IsObject(i) { obj := a.GetObject(i) @@ -1545,7 +1549,7 @@ func (f *federator) addToInbox(c context.Context, r *http.Request, m map[string] if err != nil { return err } - if !iriSet[activity.GetId()] { + if !iriSet[activity.GetId().String()] { inbox.PrependOrderedItemsObject(activity) return f.App.Set(c, inbox) } @@ -1575,11 +1579,11 @@ func (f *federator) inboxForwarding(c context.Context, m map[string]interface{}) } // 2. The values of 'to', 'cc', or 'audience' are Collections owned by // this server. - var r []url.URL + var r []*url.URL r = append(r, getToIRIs(a)...) r = append(r, getCcIRIs(a)...) r = append(r, getAudienceIRIs(a)...) - var myIRIs []url.URL + var myIRIs []*url.URL col := make(map[string]vocab.CollectionType, 0) oCol := make(map[string]vocab.OrderedCollectionType, 0) for _, iri := range r { @@ -1593,10 +1597,10 @@ func (f *federator) inboxForwarding(c context.Context, m map[string]interface{}) return err } if c, ok := obj.(vocab.CollectionType); ok { - col[(&iri).String()] = c + col[iri.String()] = c myIRIs = append(myIRIs, iri) } else if oc, ok := obj.(vocab.OrderedCollectionType); ok { - oCol[(&iri).String()] = oc + oCol[iri.String()] = oc myIRIs = append(myIRIs, iri) } } @@ -1629,9 +1633,9 @@ func (f *federator) inboxForwarding(c context.Context, m map[string]interface{}) if err != nil { return err } - recipients := make([]url.URL, 0, len(toSend)) + recipients := make([]*url.URL, 0, len(toSend)) for _, iri := range toSend { - if c, ok := col[(&iri).String()]; ok { + if c, ok := col[iri.String()]; ok { for i := 0; i < c.ItemsLen(); i++ { if c.IsItemsObject(i) { obj := c.GetItemsObject(i) @@ -1647,7 +1651,7 @@ func (f *federator) inboxForwarding(c context.Context, m map[string]interface{}) recipients = append(recipients, c.GetItemsIRI(i)) } } - } else if oc, ok := oCol[(&iri).String()]; ok { + } else if oc, ok := oCol[iri.String()]; ok { for i := 0; i < oc.OrderedItemsLen(); i++ { if oc.IsOrderedItemsObject(i) { obj := oc.GetOrderedItemsObject(i) @@ -1690,7 +1694,7 @@ func (f *federator) hasInboxForwardingValues(c context.Context, depth, maxDepth return f.ownsAnyIRIs(c, iris) } -func (f *federator) ownsAnyIRIs(c context.Context, iris []url.URL) bool { +func (f *federator) ownsAnyIRIs(c context.Context, iris []*url.URL) bool { for _, iri := range iris { if f.App.Owns(c, iri) { return true @@ -1740,25 +1744,25 @@ func (f *federator) ensureActivityOriginMatchesObjects(a vocab.ActivityType) err } func (f *federator) ensureActivityActorsMatchObjectActors(a vocab.ActivityType) error { - actorSet := make(map[url.URL]bool, a.ActorLen()) + actorSet := make(map[string]bool, a.ActorLen()) for i := 0; i < a.ActorLen(); i++ { if a.IsActorObject(i) { obj := a.GetActorObject(i) if !obj.HasId() { return fmt.Errorf("actor object at index %d has no id", i) } - actorSet[obj.GetId()] = true + actorSet[obj.GetId().String()] = true } else if a.IsActorLink(i) { l := a.GetActorLink(i) if !l.HasHref() { return fmt.Errorf("actor link at index %d has no href", i) } - actorSet[l.GetHref()] = true + actorSet[l.GetHref().String()] = true } else if a.IsActorIRI(i) { - actorSet[a.GetActorIRI(i)] = true + actorSet[a.GetActorIRI(i).String()] = true } } - objectActors := make(map[url.URL]bool, a.ObjectLen()) + objectActors := make(map[string]bool, a.ObjectLen()) for i := 0; i < a.ObjectLen(); i++ { if a.IsObject(i) { obj := a.GetObject(i) @@ -1775,15 +1779,15 @@ func (f *federator) ensureActivityActorsMatchObjectActors(a vocab.ActivityType) if !obj.HasId() { return fmt.Errorf("actor object at index (%d,%d) has no id", i, j) } - objectActors[obj.GetId()] = true + objectActors[obj.GetId().String()] = true } else if objectActivity.IsActorLink(j) { l := objectActivity.GetActorLink(j) if !l.HasHref() { return fmt.Errorf("actor link at index (%d,%d) has no href", i, j) } - objectActors[l.GetHref()] = true + objectActors[l.GetHref().String()] = true } else if objectActivity.IsActorIRI(j) { - objectActors[objectActivity.GetActorIRI(j)] = true + objectActors[objectActivity.GetActorIRI(j).String()] = true } } } else if a.IsObjectIRI(i) { @@ -1800,7 +1804,7 @@ func (f *federator) ensureActivityActorsMatchObjectActors(a vocab.ActivityType) return nil } -func getInboxForwardingValues(o vocab.ObjectType) (objs []vocab.ObjectType, l []vocab.LinkType, iri []url.URL) { +func getInboxForwardingValues(o vocab.ObjectType) (objs []vocab.ObjectType, l []vocab.LinkType, iri []*url.URL) { // 'inReplyTo' for i := 0; i < o.InReplyToLen(); i++ { if o.IsInReplyToObject(i) { @@ -1891,45 +1895,45 @@ func recursivelyApplyDeletes(m, hasNils map[string]interface{}) { } } -func getIRISetFromItems(c vocab.CollectionType) (map[url.URL]bool, error) { - r := make(map[url.URL]bool, c.ItemsLen()) +func getIRISetFromItems(c vocab.CollectionType) (map[string]bool, error) { + r := make(map[string]bool, c.ItemsLen()) for i := 0; i < c.ItemsLen(); i++ { if c.IsItemsObject(i) { obj := c.GetItemsObject(i) if !obj.HasId() { return r, fmt.Errorf("items object at index %d has no id", i) } - r[obj.GetId()] = true + r[obj.GetId().String()] = true } else if c.IsItemsLink(i) { l := c.GetItemsLink(i) if !l.HasHref() { return r, fmt.Errorf("items link at index %d has no href", i) } - r[l.GetHref()] = true + r[l.GetHref().String()] = true } else if c.IsItemsIRI(i) { - r[c.GetItemsIRI(i)] = true + r[c.GetItemsIRI(i).String()] = true } } return r, nil } -func getIRISetFromOrderedItems(c vocab.OrderedCollectionType) (map[url.URL]bool, error) { - r := make(map[url.URL]bool, c.OrderedItemsLen()) +func getIRISetFromOrderedItems(c vocab.OrderedCollectionType) (map[string]bool, error) { + r := make(map[string]bool, c.OrderedItemsLen()) for i := 0; i < c.OrderedItemsLen(); i++ { if c.IsOrderedItemsObject(i) { obj := c.GetOrderedItemsObject(i) if !obj.HasId() { return r, fmt.Errorf("items object at index %d has no id", i) } - r[obj.GetId()] = true + r[obj.GetId().String()] = true } else if c.IsOrderedItemsLink(i) { l := c.GetOrderedItemsLink(i) if !l.HasHref() { return r, fmt.Errorf("items link at index %d has no href", i) } - r[l.GetHref()] = true + r[l.GetHref().String()] = true } else if c.IsOrderedItemsIRI(i) { - r[c.GetOrderedItemsIRI(i)] = true + r[c.GetOrderedItemsIRI(i).String()] = true } } return r, nil diff --git a/pub/resolvers.go b/pub/resolvers.go index ce378c9..98ad634 100644 --- a/pub/resolvers.go +++ b/pub/resolvers.go @@ -84,7 +84,7 @@ func toActorCollectionResolver(a *actor, c **streams.Collection, oc **streams.Or return r } -func toIdResolver(ok *bool, u *url.URL) *streams.Resolver { +func toIdResolver(ok *bool, u **url.URL) *streams.Resolver { return &streams.Resolver{ AnyObjectCallback: func(i vocab.ObjectType) error { *ok = i.HasId() diff --git a/streams/streams.go b/streams/streams.go index 263e0f2..5046b18 100644 --- a/streams/streams.go +++ b/streams/streams.go @@ -3173,8 +3173,8 @@ func (t *Object) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Object) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Object) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -3192,13 +3192,13 @@ func (t *Object) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Object) AppendAttributedTo(k url.URL) { +func (t *Object) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Object) PrependAttributedTo(k url.URL) { +func (t *Object) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -3229,8 +3229,8 @@ func (t *Object) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Object) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Object) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -3248,13 +3248,13 @@ func (t *Object) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Object) AppendAudience(k url.URL) { +func (t *Object) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Object) PrependAudience(k url.URL) { +func (t *Object) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -3647,8 +3647,8 @@ func (t *Object) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Object) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Object) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -3672,7 +3672,7 @@ func (t *Object) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Object) SetId(k url.URL) { +func (t *Object) SetId(k *url.URL) { t.raw.SetId(k) } @@ -3739,8 +3739,8 @@ func (t *Object) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Object) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Object) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -3758,13 +3758,13 @@ func (t *Object) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Object) AppendInReplyTo(k url.URL) { +func (t *Object) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Object) PrependInReplyTo(k url.URL) { +func (t *Object) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -4239,8 +4239,8 @@ func (t *Object) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Object) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Object) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -4256,13 +4256,13 @@ func (t *Object) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Object) AppendUrl(k url.URL) { +func (t *Object) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Object) PrependUrl(k url.URL) { +func (t *Object) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -4291,8 +4291,8 @@ func (t *Object) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Object) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Object) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -4310,13 +4310,13 @@ func (t *Object) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Object) AppendTo(k url.URL) { +func (t *Object) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Object) PrependTo(k url.URL) { +func (t *Object) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -4347,8 +4347,8 @@ func (t *Object) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Object) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Object) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -4366,13 +4366,13 @@ func (t *Object) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Object) AppendBto(k url.URL) { +func (t *Object) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Object) PrependBto(k url.URL) { +func (t *Object) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -4403,8 +4403,8 @@ func (t *Object) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Object) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Object) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -4422,13 +4422,13 @@ func (t *Object) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Object) AppendCc(k url.URL) { +func (t *Object) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Object) PrependCc(k url.URL) { +func (t *Object) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -4459,8 +4459,8 @@ func (t *Object) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Object) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Object) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -4478,13 +4478,13 @@ func (t *Object) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Object) AppendBcc(k url.URL) { +func (t *Object) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Object) PrependBcc(k url.URL) { +func (t *Object) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -4837,8 +4837,8 @@ func (t *Object) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Object) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Object) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -4852,13 +4852,13 @@ func (t *Object) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Object) AppendStreams(k url.URL) { +func (t *Object) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Object) PrependStreams(k url.URL) { +func (t *Object) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -4955,8 +4955,8 @@ func (t *Object) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Object) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Object) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -4980,13 +4980,13 @@ func (t *Object) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Object) SetProxyUrl(k url.URL) { +func (t *Object) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Object) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Object) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -5010,13 +5010,13 @@ func (t *Object) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Object) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Object) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Object) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Object) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -5040,13 +5040,13 @@ func (t *Object) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Object) SetOauthTokenEndpoint(k url.URL) { +func (t *Object) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Object) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Object) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -5070,13 +5070,13 @@ func (t *Object) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Object) SetProvideClientKey(k url.URL) { +func (t *Object) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Object) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Object) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -5100,13 +5100,13 @@ func (t *Object) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Object) SetSignClientKey(k url.URL) { +func (t *Object) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Object) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Object) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -5130,7 +5130,7 @@ func (t *Object) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Object) SetSharedInbox(k url.URL) { +func (t *Object) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -5159,8 +5159,8 @@ func (t *Link) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Link) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Link) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -5178,13 +5178,13 @@ func (t *Link) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Link) AppendAttributedTo(k url.URL) { +func (t *Link) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Link) PrependAttributedTo(k url.URL) { +func (t *Link) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -5209,8 +5209,8 @@ func (t *Link) HasAttributedTo(idx int) (p Presence) { } -// GetHref attempts to get this 'href' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Link) GetHref() (r Resolution, k url.URL) { +// GetHref attempts to get this 'href' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Link) GetHref() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasHref() { @@ -5234,13 +5234,13 @@ func (t *Link) HasHref() (p Presence) { } // SetHref sets the value for property 'href'. -func (t *Link) SetHref(k url.URL) { +func (t *Link) SetHref(k *url.URL) { t.raw.SetHref(k) } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Link) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Link) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -5264,7 +5264,7 @@ func (t *Link) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Link) SetId(k url.URL) { +func (t *Link) SetId(k *url.URL) { t.raw.SetId(k) } @@ -5733,8 +5733,8 @@ func (t *Activity) LenActor() (idx int) { } -// GetActor attempts to get this 'actor' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Activity) GetActor(idx int) (r Resolution, k url.URL) { +// GetActor attempts to get this 'actor' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Activity) GetActor(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsActorIRI(idx) { @@ -5752,13 +5752,13 @@ func (t *Activity) GetActor(idx int) (r Resolution, k url.URL) { } // AppendActor appends the value for property 'actor'. -func (t *Activity) AppendActor(k url.URL) { +func (t *Activity) AppendActor(k *url.URL) { t.raw.AppendActorIRI(k) } // PrependActor prepends the value for property 'actor'. -func (t *Activity) PrependActor(k url.URL) { +func (t *Activity) PrependActor(k *url.URL) { t.raw.PrependActorIRI(k) } @@ -5841,8 +5841,8 @@ func (t *Activity) LenTarget() (idx int) { } -// GetTarget attempts to get this 'target' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Activity) GetTarget(idx int) (r Resolution, k url.URL) { +// GetTarget attempts to get this 'target' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Activity) GetTarget(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsTargetIRI(idx) { @@ -5860,13 +5860,13 @@ func (t *Activity) GetTarget(idx int) (r Resolution, k url.URL) { } // AppendTarget appends the value for property 'target'. -func (t *Activity) AppendTarget(k url.URL) { +func (t *Activity) AppendTarget(k *url.URL) { t.raw.AppendTargetIRI(k) } // PrependTarget prepends the value for property 'target'. -func (t *Activity) PrependTarget(k url.URL) { +func (t *Activity) PrependTarget(k *url.URL) { t.raw.PrependTargetIRI(k) } @@ -6191,8 +6191,8 @@ func (t *Activity) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Activity) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Activity) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -6210,13 +6210,13 @@ func (t *Activity) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Activity) AppendAttributedTo(k url.URL) { +func (t *Activity) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Activity) PrependAttributedTo(k url.URL) { +func (t *Activity) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -6247,8 +6247,8 @@ func (t *Activity) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Activity) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Activity) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -6266,13 +6266,13 @@ func (t *Activity) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Activity) AppendAudience(k url.URL) { +func (t *Activity) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Activity) PrependAudience(k url.URL) { +func (t *Activity) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -6665,8 +6665,8 @@ func (t *Activity) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Activity) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Activity) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -6690,7 +6690,7 @@ func (t *Activity) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Activity) SetId(k url.URL) { +func (t *Activity) SetId(k *url.URL) { t.raw.SetId(k) } @@ -6757,8 +6757,8 @@ func (t *Activity) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Activity) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Activity) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -6776,13 +6776,13 @@ func (t *Activity) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Activity) AppendInReplyTo(k url.URL) { +func (t *Activity) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Activity) PrependInReplyTo(k url.URL) { +func (t *Activity) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -7257,8 +7257,8 @@ func (t *Activity) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Activity) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Activity) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -7274,13 +7274,13 @@ func (t *Activity) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Activity) AppendUrl(k url.URL) { +func (t *Activity) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Activity) PrependUrl(k url.URL) { +func (t *Activity) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -7309,8 +7309,8 @@ func (t *Activity) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Activity) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Activity) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -7328,13 +7328,13 @@ func (t *Activity) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Activity) AppendTo(k url.URL) { +func (t *Activity) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Activity) PrependTo(k url.URL) { +func (t *Activity) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -7365,8 +7365,8 @@ func (t *Activity) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Activity) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Activity) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -7384,13 +7384,13 @@ func (t *Activity) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Activity) AppendBto(k url.URL) { +func (t *Activity) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Activity) PrependBto(k url.URL) { +func (t *Activity) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -7421,8 +7421,8 @@ func (t *Activity) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Activity) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Activity) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -7440,13 +7440,13 @@ func (t *Activity) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Activity) AppendCc(k url.URL) { +func (t *Activity) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Activity) PrependCc(k url.URL) { +func (t *Activity) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -7477,8 +7477,8 @@ func (t *Activity) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Activity) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Activity) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -7496,13 +7496,13 @@ func (t *Activity) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Activity) AppendBcc(k url.URL) { +func (t *Activity) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Activity) PrependBcc(k url.URL) { +func (t *Activity) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -7855,8 +7855,8 @@ func (t *Activity) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Activity) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Activity) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -7870,13 +7870,13 @@ func (t *Activity) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Activity) AppendStreams(k url.URL) { +func (t *Activity) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Activity) PrependStreams(k url.URL) { +func (t *Activity) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -7973,8 +7973,8 @@ func (t *Activity) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Activity) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Activity) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -7998,13 +7998,13 @@ func (t *Activity) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Activity) SetProxyUrl(k url.URL) { +func (t *Activity) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Activity) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Activity) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -8028,13 +8028,13 @@ func (t *Activity) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Activity) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Activity) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Activity) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Activity) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -8058,13 +8058,13 @@ func (t *Activity) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Activity) SetOauthTokenEndpoint(k url.URL) { +func (t *Activity) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Activity) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Activity) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -8088,13 +8088,13 @@ func (t *Activity) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Activity) SetProvideClientKey(k url.URL) { +func (t *Activity) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Activity) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Activity) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -8118,13 +8118,13 @@ func (t *Activity) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Activity) SetSignClientKey(k url.URL) { +func (t *Activity) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Activity) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Activity) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -8148,7 +8148,7 @@ func (t *Activity) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Activity) SetSharedInbox(k url.URL) { +func (t *Activity) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -8177,8 +8177,8 @@ func (t *IntransitiveActivity) LenActor() (idx int) { } -// GetActor attempts to get this 'actor' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *IntransitiveActivity) GetActor(idx int) (r Resolution, k url.URL) { +// GetActor attempts to get this 'actor' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *IntransitiveActivity) GetActor(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsActorIRI(idx) { @@ -8196,13 +8196,13 @@ func (t *IntransitiveActivity) GetActor(idx int) (r Resolution, k url.URL) { } // AppendActor appends the value for property 'actor'. -func (t *IntransitiveActivity) AppendActor(k url.URL) { +func (t *IntransitiveActivity) AppendActor(k *url.URL) { t.raw.AppendActorIRI(k) } // PrependActor prepends the value for property 'actor'. -func (t *IntransitiveActivity) PrependActor(k url.URL) { +func (t *IntransitiveActivity) PrependActor(k *url.URL) { t.raw.PrependActorIRI(k) } @@ -8233,8 +8233,8 @@ func (t *IntransitiveActivity) LenTarget() (idx int) { } -// GetTarget attempts to get this 'target' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *IntransitiveActivity) GetTarget(idx int) (r Resolution, k url.URL) { +// GetTarget attempts to get this 'target' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *IntransitiveActivity) GetTarget(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsTargetIRI(idx) { @@ -8252,13 +8252,13 @@ func (t *IntransitiveActivity) GetTarget(idx int) (r Resolution, k url.URL) { } // AppendTarget appends the value for property 'target'. -func (t *IntransitiveActivity) AppendTarget(k url.URL) { +func (t *IntransitiveActivity) AppendTarget(k *url.URL) { t.raw.AppendTargetIRI(k) } // PrependTarget prepends the value for property 'target'. -func (t *IntransitiveActivity) PrependTarget(k url.URL) { +func (t *IntransitiveActivity) PrependTarget(k *url.URL) { t.raw.PrependTargetIRI(k) } @@ -8583,8 +8583,8 @@ func (t *IntransitiveActivity) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *IntransitiveActivity) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *IntransitiveActivity) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -8602,13 +8602,13 @@ func (t *IntransitiveActivity) GetAttributedTo(idx int) (r Resolution, k url.URL } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *IntransitiveActivity) AppendAttributedTo(k url.URL) { +func (t *IntransitiveActivity) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *IntransitiveActivity) PrependAttributedTo(k url.URL) { +func (t *IntransitiveActivity) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -8639,8 +8639,8 @@ func (t *IntransitiveActivity) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *IntransitiveActivity) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *IntransitiveActivity) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -8658,13 +8658,13 @@ func (t *IntransitiveActivity) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *IntransitiveActivity) AppendAudience(k url.URL) { +func (t *IntransitiveActivity) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *IntransitiveActivity) PrependAudience(k url.URL) { +func (t *IntransitiveActivity) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -9057,8 +9057,8 @@ func (t *IntransitiveActivity) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *IntransitiveActivity) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *IntransitiveActivity) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -9082,7 +9082,7 @@ func (t *IntransitiveActivity) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *IntransitiveActivity) SetId(k url.URL) { +func (t *IntransitiveActivity) SetId(k *url.URL) { t.raw.SetId(k) } @@ -9149,8 +9149,8 @@ func (t *IntransitiveActivity) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *IntransitiveActivity) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *IntransitiveActivity) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -9168,13 +9168,13 @@ func (t *IntransitiveActivity) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *IntransitiveActivity) AppendInReplyTo(k url.URL) { +func (t *IntransitiveActivity) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *IntransitiveActivity) PrependInReplyTo(k url.URL) { +func (t *IntransitiveActivity) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -9649,8 +9649,8 @@ func (t *IntransitiveActivity) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *IntransitiveActivity) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *IntransitiveActivity) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -9666,13 +9666,13 @@ func (t *IntransitiveActivity) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *IntransitiveActivity) AppendUrl(k url.URL) { +func (t *IntransitiveActivity) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *IntransitiveActivity) PrependUrl(k url.URL) { +func (t *IntransitiveActivity) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -9701,8 +9701,8 @@ func (t *IntransitiveActivity) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *IntransitiveActivity) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *IntransitiveActivity) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -9720,13 +9720,13 @@ func (t *IntransitiveActivity) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *IntransitiveActivity) AppendTo(k url.URL) { +func (t *IntransitiveActivity) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *IntransitiveActivity) PrependTo(k url.URL) { +func (t *IntransitiveActivity) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -9757,8 +9757,8 @@ func (t *IntransitiveActivity) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *IntransitiveActivity) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *IntransitiveActivity) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -9776,13 +9776,13 @@ func (t *IntransitiveActivity) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *IntransitiveActivity) AppendBto(k url.URL) { +func (t *IntransitiveActivity) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *IntransitiveActivity) PrependBto(k url.URL) { +func (t *IntransitiveActivity) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -9813,8 +9813,8 @@ func (t *IntransitiveActivity) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *IntransitiveActivity) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *IntransitiveActivity) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -9832,13 +9832,13 @@ func (t *IntransitiveActivity) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *IntransitiveActivity) AppendCc(k url.URL) { +func (t *IntransitiveActivity) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *IntransitiveActivity) PrependCc(k url.URL) { +func (t *IntransitiveActivity) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -9869,8 +9869,8 @@ func (t *IntransitiveActivity) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *IntransitiveActivity) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *IntransitiveActivity) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -9888,13 +9888,13 @@ func (t *IntransitiveActivity) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *IntransitiveActivity) AppendBcc(k url.URL) { +func (t *IntransitiveActivity) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *IntransitiveActivity) PrependBcc(k url.URL) { +func (t *IntransitiveActivity) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -10247,8 +10247,8 @@ func (t *IntransitiveActivity) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *IntransitiveActivity) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *IntransitiveActivity) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -10262,13 +10262,13 @@ func (t *IntransitiveActivity) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *IntransitiveActivity) AppendStreams(k url.URL) { +func (t *IntransitiveActivity) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *IntransitiveActivity) PrependStreams(k url.URL) { +func (t *IntransitiveActivity) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -10365,8 +10365,8 @@ func (t *IntransitiveActivity) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *IntransitiveActivity) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *IntransitiveActivity) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -10390,13 +10390,13 @@ func (t *IntransitiveActivity) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *IntransitiveActivity) SetProxyUrl(k url.URL) { +func (t *IntransitiveActivity) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *IntransitiveActivity) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *IntransitiveActivity) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -10420,13 +10420,13 @@ func (t *IntransitiveActivity) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *IntransitiveActivity) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *IntransitiveActivity) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *IntransitiveActivity) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *IntransitiveActivity) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -10450,13 +10450,13 @@ func (t *IntransitiveActivity) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *IntransitiveActivity) SetOauthTokenEndpoint(k url.URL) { +func (t *IntransitiveActivity) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *IntransitiveActivity) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *IntransitiveActivity) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -10480,13 +10480,13 @@ func (t *IntransitiveActivity) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *IntransitiveActivity) SetProvideClientKey(k url.URL) { +func (t *IntransitiveActivity) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *IntransitiveActivity) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *IntransitiveActivity) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -10510,13 +10510,13 @@ func (t *IntransitiveActivity) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *IntransitiveActivity) SetSignClientKey(k url.URL) { +func (t *IntransitiveActivity) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *IntransitiveActivity) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *IntransitiveActivity) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -10540,7 +10540,7 @@ func (t *IntransitiveActivity) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *IntransitiveActivity) SetSharedInbox(k url.URL) { +func (t *IntransitiveActivity) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -10597,8 +10597,8 @@ func (t *Collection) SetTotalItems(k int64) { } -// GetCurrent attempts to get this 'current' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Collection) GetCurrent() (r Resolution, k url.URL) { +// GetCurrent attempts to get this 'current' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Collection) GetCurrent() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCurrentIRI() { @@ -10630,13 +10630,13 @@ func (t *Collection) HasCurrent() (p Presence) { } // SetCurrent sets the value for property 'current'. -func (t *Collection) SetCurrent(k url.URL) { +func (t *Collection) SetCurrent(k *url.URL) { t.raw.SetCurrentIRI(k) } -// GetFirst attempts to get this 'first' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Collection) GetFirst() (r Resolution, k url.URL) { +// GetFirst attempts to get this 'first' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Collection) GetFirst() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsFirstIRI() { @@ -10668,13 +10668,13 @@ func (t *Collection) HasFirst() (p Presence) { } // SetFirst sets the value for property 'first'. -func (t *Collection) SetFirst(k url.URL) { +func (t *Collection) SetFirst(k *url.URL) { t.raw.SetFirstIRI(k) } -// GetLast attempts to get this 'last' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Collection) GetLast() (r Resolution, k url.URL) { +// GetLast attempts to get this 'last' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Collection) GetLast() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsLastIRI() { @@ -10706,7 +10706,7 @@ func (t *Collection) HasLast() (p Presence) { } // SetLast sets the value for property 'last'. -func (t *Collection) SetLast(k url.URL) { +func (t *Collection) SetLast(k *url.URL) { t.raw.SetLastIRI(k) } @@ -10881,8 +10881,8 @@ func (t *Collection) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Collection) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Collection) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -10900,13 +10900,13 @@ func (t *Collection) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Collection) AppendAttributedTo(k url.URL) { +func (t *Collection) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Collection) PrependAttributedTo(k url.URL) { +func (t *Collection) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -10937,8 +10937,8 @@ func (t *Collection) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Collection) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Collection) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -10956,13 +10956,13 @@ func (t *Collection) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Collection) AppendAudience(k url.URL) { +func (t *Collection) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Collection) PrependAudience(k url.URL) { +func (t *Collection) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -11355,8 +11355,8 @@ func (t *Collection) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Collection) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Collection) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -11380,7 +11380,7 @@ func (t *Collection) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Collection) SetId(k url.URL) { +func (t *Collection) SetId(k *url.URL) { t.raw.SetId(k) } @@ -11447,8 +11447,8 @@ func (t *Collection) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Collection) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Collection) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -11466,13 +11466,13 @@ func (t *Collection) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Collection) AppendInReplyTo(k url.URL) { +func (t *Collection) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Collection) PrependInReplyTo(k url.URL) { +func (t *Collection) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -11947,8 +11947,8 @@ func (t *Collection) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Collection) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Collection) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -11964,13 +11964,13 @@ func (t *Collection) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Collection) AppendUrl(k url.URL) { +func (t *Collection) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Collection) PrependUrl(k url.URL) { +func (t *Collection) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -11999,8 +11999,8 @@ func (t *Collection) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Collection) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Collection) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -12018,13 +12018,13 @@ func (t *Collection) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Collection) AppendTo(k url.URL) { +func (t *Collection) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Collection) PrependTo(k url.URL) { +func (t *Collection) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -12055,8 +12055,8 @@ func (t *Collection) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Collection) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Collection) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -12074,13 +12074,13 @@ func (t *Collection) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Collection) AppendBto(k url.URL) { +func (t *Collection) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Collection) PrependBto(k url.URL) { +func (t *Collection) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -12111,8 +12111,8 @@ func (t *Collection) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Collection) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Collection) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -12130,13 +12130,13 @@ func (t *Collection) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Collection) AppendCc(k url.URL) { +func (t *Collection) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Collection) PrependCc(k url.URL) { +func (t *Collection) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -12167,8 +12167,8 @@ func (t *Collection) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Collection) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Collection) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -12186,13 +12186,13 @@ func (t *Collection) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Collection) AppendBcc(k url.URL) { +func (t *Collection) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Collection) PrependBcc(k url.URL) { +func (t *Collection) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -12545,8 +12545,8 @@ func (t *Collection) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Collection) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Collection) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -12560,13 +12560,13 @@ func (t *Collection) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Collection) AppendStreams(k url.URL) { +func (t *Collection) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Collection) PrependStreams(k url.URL) { +func (t *Collection) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -12663,8 +12663,8 @@ func (t *Collection) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Collection) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Collection) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -12688,13 +12688,13 @@ func (t *Collection) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Collection) SetProxyUrl(k url.URL) { +func (t *Collection) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Collection) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Collection) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -12718,13 +12718,13 @@ func (t *Collection) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Collection) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Collection) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Collection) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Collection) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -12748,13 +12748,13 @@ func (t *Collection) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Collection) SetOauthTokenEndpoint(k url.URL) { +func (t *Collection) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Collection) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Collection) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -12778,13 +12778,13 @@ func (t *Collection) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Collection) SetProvideClientKey(k url.URL) { +func (t *Collection) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Collection) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Collection) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -12808,13 +12808,13 @@ func (t *Collection) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Collection) SetSignClientKey(k url.URL) { +func (t *Collection) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Collection) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Collection) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -12838,7 +12838,7 @@ func (t *Collection) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Collection) SetSharedInbox(k url.URL) { +func (t *Collection) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -12926,8 +12926,8 @@ func (t *OrderedCollection) PrependOrderedItemsLink(i vocab.LinkType) { } -// GetCurrent attempts to get this 'current' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollection) GetCurrent() (r Resolution, k url.URL) { +// GetCurrent attempts to get this 'current' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollection) GetCurrent() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCurrentIRI() { @@ -12959,13 +12959,13 @@ func (t *OrderedCollection) HasCurrent() (p Presence) { } // SetCurrent sets the value for property 'current'. -func (t *OrderedCollection) SetCurrent(k url.URL) { +func (t *OrderedCollection) SetCurrent(k *url.URL) { t.raw.SetCurrentIRI(k) } -// GetFirst attempts to get this 'first' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollection) GetFirst() (r Resolution, k url.URL) { +// GetFirst attempts to get this 'first' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollection) GetFirst() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsFirstIRI() { @@ -12997,13 +12997,13 @@ func (t *OrderedCollection) HasFirst() (p Presence) { } // SetFirst sets the value for property 'first'. -func (t *OrderedCollection) SetFirst(k url.URL) { +func (t *OrderedCollection) SetFirst(k *url.URL) { t.raw.SetFirstIRI(k) } -// GetLast attempts to get this 'last' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollection) GetLast() (r Resolution, k url.URL) { +// GetLast attempts to get this 'last' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollection) GetLast() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsLastIRI() { @@ -13035,7 +13035,7 @@ func (t *OrderedCollection) HasLast() (p Presence) { } // SetLast sets the value for property 'last'. -func (t *OrderedCollection) SetLast(k url.URL) { +func (t *OrderedCollection) SetLast(k *url.URL) { t.raw.SetLastIRI(k) } @@ -13179,8 +13179,8 @@ func (t *OrderedCollection) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollection) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollection) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -13198,13 +13198,13 @@ func (t *OrderedCollection) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *OrderedCollection) AppendAttributedTo(k url.URL) { +func (t *OrderedCollection) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *OrderedCollection) PrependAttributedTo(k url.URL) { +func (t *OrderedCollection) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -13235,8 +13235,8 @@ func (t *OrderedCollection) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollection) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollection) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -13254,13 +13254,13 @@ func (t *OrderedCollection) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *OrderedCollection) AppendAudience(k url.URL) { +func (t *OrderedCollection) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *OrderedCollection) PrependAudience(k url.URL) { +func (t *OrderedCollection) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -13653,8 +13653,8 @@ func (t *OrderedCollection) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollection) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollection) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -13678,7 +13678,7 @@ func (t *OrderedCollection) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *OrderedCollection) SetId(k url.URL) { +func (t *OrderedCollection) SetId(k *url.URL) { t.raw.SetId(k) } @@ -13745,8 +13745,8 @@ func (t *OrderedCollection) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollection) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollection) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -13764,13 +13764,13 @@ func (t *OrderedCollection) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *OrderedCollection) AppendInReplyTo(k url.URL) { +func (t *OrderedCollection) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *OrderedCollection) PrependInReplyTo(k url.URL) { +func (t *OrderedCollection) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -14245,8 +14245,8 @@ func (t *OrderedCollection) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollection) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollection) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -14262,13 +14262,13 @@ func (t *OrderedCollection) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *OrderedCollection) AppendUrl(k url.URL) { +func (t *OrderedCollection) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *OrderedCollection) PrependUrl(k url.URL) { +func (t *OrderedCollection) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -14297,8 +14297,8 @@ func (t *OrderedCollection) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollection) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollection) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -14316,13 +14316,13 @@ func (t *OrderedCollection) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *OrderedCollection) AppendTo(k url.URL) { +func (t *OrderedCollection) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *OrderedCollection) PrependTo(k url.URL) { +func (t *OrderedCollection) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -14353,8 +14353,8 @@ func (t *OrderedCollection) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollection) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollection) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -14372,13 +14372,13 @@ func (t *OrderedCollection) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *OrderedCollection) AppendBto(k url.URL) { +func (t *OrderedCollection) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *OrderedCollection) PrependBto(k url.URL) { +func (t *OrderedCollection) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -14409,8 +14409,8 @@ func (t *OrderedCollection) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollection) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollection) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -14428,13 +14428,13 @@ func (t *OrderedCollection) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *OrderedCollection) AppendCc(k url.URL) { +func (t *OrderedCollection) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *OrderedCollection) PrependCc(k url.URL) { +func (t *OrderedCollection) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -14465,8 +14465,8 @@ func (t *OrderedCollection) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollection) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollection) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -14484,13 +14484,13 @@ func (t *OrderedCollection) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *OrderedCollection) AppendBcc(k url.URL) { +func (t *OrderedCollection) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *OrderedCollection) PrependBcc(k url.URL) { +func (t *OrderedCollection) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -14843,8 +14843,8 @@ func (t *OrderedCollection) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollection) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollection) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -14858,13 +14858,13 @@ func (t *OrderedCollection) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *OrderedCollection) AppendStreams(k url.URL) { +func (t *OrderedCollection) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *OrderedCollection) PrependStreams(k url.URL) { +func (t *OrderedCollection) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -14961,8 +14961,8 @@ func (t *OrderedCollection) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollection) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollection) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -14986,13 +14986,13 @@ func (t *OrderedCollection) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *OrderedCollection) SetProxyUrl(k url.URL) { +func (t *OrderedCollection) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollection) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollection) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -15016,13 +15016,13 @@ func (t *OrderedCollection) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *OrderedCollection) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *OrderedCollection) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollection) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollection) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -15046,13 +15046,13 @@ func (t *OrderedCollection) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *OrderedCollection) SetOauthTokenEndpoint(k url.URL) { +func (t *OrderedCollection) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollection) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollection) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -15076,13 +15076,13 @@ func (t *OrderedCollection) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *OrderedCollection) SetProvideClientKey(k url.URL) { +func (t *OrderedCollection) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollection) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollection) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -15106,13 +15106,13 @@ func (t *OrderedCollection) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *OrderedCollection) SetSignClientKey(k url.URL) { +func (t *OrderedCollection) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollection) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollection) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -15136,7 +15136,7 @@ func (t *OrderedCollection) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *OrderedCollection) SetSharedInbox(k url.URL) { +func (t *OrderedCollection) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -15197,8 +15197,8 @@ func (t *CollectionPage) SetPartOf(i vocab.LinkType) { } -// GetNext attempts to get this 'next' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *CollectionPage) GetNext() (r Resolution, k url.URL) { +// GetNext attempts to get this 'next' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *CollectionPage) GetNext() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsNextIRI() { @@ -15230,13 +15230,13 @@ func (t *CollectionPage) HasNext() (p Presence) { } // SetNext sets the value for property 'next'. -func (t *CollectionPage) SetNext(k url.URL) { +func (t *CollectionPage) SetNext(k *url.URL) { t.raw.SetNextIRI(k) } -// GetPrev attempts to get this 'prev' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *CollectionPage) GetPrev() (r Resolution, k url.URL) { +// GetPrev attempts to get this 'prev' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *CollectionPage) GetPrev() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsPrevIRI() { @@ -15268,7 +15268,7 @@ func (t *CollectionPage) HasPrev() (p Presence) { } // SetPrev sets the value for property 'prev'. -func (t *CollectionPage) SetPrev(k url.URL) { +func (t *CollectionPage) SetPrev(k *url.URL) { t.raw.SetPrevIRI(k) } @@ -15307,8 +15307,8 @@ func (t *CollectionPage) SetTotalItems(k int64) { } -// GetCurrent attempts to get this 'current' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *CollectionPage) GetCurrent() (r Resolution, k url.URL) { +// GetCurrent attempts to get this 'current' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *CollectionPage) GetCurrent() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCurrentIRI() { @@ -15340,13 +15340,13 @@ func (t *CollectionPage) HasCurrent() (p Presence) { } // SetCurrent sets the value for property 'current'. -func (t *CollectionPage) SetCurrent(k url.URL) { +func (t *CollectionPage) SetCurrent(k *url.URL) { t.raw.SetCurrentIRI(k) } -// GetFirst attempts to get this 'first' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *CollectionPage) GetFirst() (r Resolution, k url.URL) { +// GetFirst attempts to get this 'first' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *CollectionPage) GetFirst() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsFirstIRI() { @@ -15378,13 +15378,13 @@ func (t *CollectionPage) HasFirst() (p Presence) { } // SetFirst sets the value for property 'first'. -func (t *CollectionPage) SetFirst(k url.URL) { +func (t *CollectionPage) SetFirst(k *url.URL) { t.raw.SetFirstIRI(k) } -// GetLast attempts to get this 'last' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *CollectionPage) GetLast() (r Resolution, k url.URL) { +// GetLast attempts to get this 'last' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *CollectionPage) GetLast() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsLastIRI() { @@ -15416,7 +15416,7 @@ func (t *CollectionPage) HasLast() (p Presence) { } // SetLast sets the value for property 'last'. -func (t *CollectionPage) SetLast(k url.URL) { +func (t *CollectionPage) SetLast(k *url.URL) { t.raw.SetLastIRI(k) } @@ -15591,8 +15591,8 @@ func (t *CollectionPage) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *CollectionPage) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *CollectionPage) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -15610,13 +15610,13 @@ func (t *CollectionPage) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *CollectionPage) AppendAttributedTo(k url.URL) { +func (t *CollectionPage) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *CollectionPage) PrependAttributedTo(k url.URL) { +func (t *CollectionPage) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -15647,8 +15647,8 @@ func (t *CollectionPage) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *CollectionPage) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *CollectionPage) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -15666,13 +15666,13 @@ func (t *CollectionPage) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *CollectionPage) AppendAudience(k url.URL) { +func (t *CollectionPage) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *CollectionPage) PrependAudience(k url.URL) { +func (t *CollectionPage) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -16065,8 +16065,8 @@ func (t *CollectionPage) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *CollectionPage) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *CollectionPage) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -16090,7 +16090,7 @@ func (t *CollectionPage) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *CollectionPage) SetId(k url.URL) { +func (t *CollectionPage) SetId(k *url.URL) { t.raw.SetId(k) } @@ -16157,8 +16157,8 @@ func (t *CollectionPage) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *CollectionPage) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *CollectionPage) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -16176,13 +16176,13 @@ func (t *CollectionPage) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *CollectionPage) AppendInReplyTo(k url.URL) { +func (t *CollectionPage) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *CollectionPage) PrependInReplyTo(k url.URL) { +func (t *CollectionPage) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -16657,8 +16657,8 @@ func (t *CollectionPage) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *CollectionPage) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *CollectionPage) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -16674,13 +16674,13 @@ func (t *CollectionPage) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *CollectionPage) AppendUrl(k url.URL) { +func (t *CollectionPage) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *CollectionPage) PrependUrl(k url.URL) { +func (t *CollectionPage) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -16709,8 +16709,8 @@ func (t *CollectionPage) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *CollectionPage) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *CollectionPage) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -16728,13 +16728,13 @@ func (t *CollectionPage) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *CollectionPage) AppendTo(k url.URL) { +func (t *CollectionPage) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *CollectionPage) PrependTo(k url.URL) { +func (t *CollectionPage) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -16765,8 +16765,8 @@ func (t *CollectionPage) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *CollectionPage) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *CollectionPage) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -16784,13 +16784,13 @@ func (t *CollectionPage) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *CollectionPage) AppendBto(k url.URL) { +func (t *CollectionPage) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *CollectionPage) PrependBto(k url.URL) { +func (t *CollectionPage) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -16821,8 +16821,8 @@ func (t *CollectionPage) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *CollectionPage) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *CollectionPage) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -16840,13 +16840,13 @@ func (t *CollectionPage) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *CollectionPage) AppendCc(k url.URL) { +func (t *CollectionPage) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *CollectionPage) PrependCc(k url.URL) { +func (t *CollectionPage) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -16877,8 +16877,8 @@ func (t *CollectionPage) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *CollectionPage) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *CollectionPage) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -16896,13 +16896,13 @@ func (t *CollectionPage) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *CollectionPage) AppendBcc(k url.URL) { +func (t *CollectionPage) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *CollectionPage) PrependBcc(k url.URL) { +func (t *CollectionPage) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -17255,8 +17255,8 @@ func (t *CollectionPage) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *CollectionPage) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *CollectionPage) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -17270,13 +17270,13 @@ func (t *CollectionPage) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *CollectionPage) AppendStreams(k url.URL) { +func (t *CollectionPage) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *CollectionPage) PrependStreams(k url.URL) { +func (t *CollectionPage) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -17373,8 +17373,8 @@ func (t *CollectionPage) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *CollectionPage) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *CollectionPage) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -17398,13 +17398,13 @@ func (t *CollectionPage) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *CollectionPage) SetProxyUrl(k url.URL) { +func (t *CollectionPage) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *CollectionPage) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *CollectionPage) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -17428,13 +17428,13 @@ func (t *CollectionPage) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *CollectionPage) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *CollectionPage) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *CollectionPage) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *CollectionPage) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -17458,13 +17458,13 @@ func (t *CollectionPage) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *CollectionPage) SetOauthTokenEndpoint(k url.URL) { +func (t *CollectionPage) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *CollectionPage) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *CollectionPage) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -17488,13 +17488,13 @@ func (t *CollectionPage) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *CollectionPage) SetProvideClientKey(k url.URL) { +func (t *CollectionPage) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *CollectionPage) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *CollectionPage) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -17518,13 +17518,13 @@ func (t *CollectionPage) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *CollectionPage) SetSignClientKey(k url.URL) { +func (t *CollectionPage) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *CollectionPage) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *CollectionPage) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -17548,7 +17548,7 @@ func (t *CollectionPage) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *CollectionPage) SetSharedInbox(k url.URL) { +func (t *CollectionPage) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -17605,8 +17605,8 @@ func (t *OrderedCollectionPage) SetStartIndex(k int64) { } -// GetNext attempts to get this 'next' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollectionPage) GetNext() (r Resolution, k url.URL) { +// GetNext attempts to get this 'next' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollectionPage) GetNext() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsNextIRI() { @@ -17638,13 +17638,13 @@ func (t *OrderedCollectionPage) HasNext() (p Presence) { } // SetNext sets the value for property 'next'. -func (t *OrderedCollectionPage) SetNext(k url.URL) { +func (t *OrderedCollectionPage) SetNext(k *url.URL) { t.raw.SetNextIRI(k) } -// GetPrev attempts to get this 'prev' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollectionPage) GetPrev() (r Resolution, k url.URL) { +// GetPrev attempts to get this 'prev' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollectionPage) GetPrev() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsPrevIRI() { @@ -17676,7 +17676,7 @@ func (t *OrderedCollectionPage) HasPrev() (p Presence) { } // SetPrev sets the value for property 'prev'. -func (t *OrderedCollectionPage) SetPrev(k url.URL) { +func (t *OrderedCollectionPage) SetPrev(k *url.URL) { t.raw.SetPrevIRI(k) } @@ -17746,8 +17746,8 @@ func (t *OrderedCollectionPage) PrependOrderedItemsLink(i vocab.LinkType) { } -// GetCurrent attempts to get this 'current' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollectionPage) GetCurrent() (r Resolution, k url.URL) { +// GetCurrent attempts to get this 'current' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollectionPage) GetCurrent() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCurrentIRI() { @@ -17779,13 +17779,13 @@ func (t *OrderedCollectionPage) HasCurrent() (p Presence) { } // SetCurrent sets the value for property 'current'. -func (t *OrderedCollectionPage) SetCurrent(k url.URL) { +func (t *OrderedCollectionPage) SetCurrent(k *url.URL) { t.raw.SetCurrentIRI(k) } -// GetFirst attempts to get this 'first' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollectionPage) GetFirst() (r Resolution, k url.URL) { +// GetFirst attempts to get this 'first' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollectionPage) GetFirst() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsFirstIRI() { @@ -17817,13 +17817,13 @@ func (t *OrderedCollectionPage) HasFirst() (p Presence) { } // SetFirst sets the value for property 'first'. -func (t *OrderedCollectionPage) SetFirst(k url.URL) { +func (t *OrderedCollectionPage) SetFirst(k *url.URL) { t.raw.SetFirstIRI(k) } -// GetLast attempts to get this 'last' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollectionPage) GetLast() (r Resolution, k url.URL) { +// GetLast attempts to get this 'last' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollectionPage) GetLast() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsLastIRI() { @@ -17855,7 +17855,7 @@ func (t *OrderedCollectionPage) HasLast() (p Presence) { } // SetLast sets the value for property 'last'. -func (t *OrderedCollectionPage) SetLast(k url.URL) { +func (t *OrderedCollectionPage) SetLast(k *url.URL) { t.raw.SetLastIRI(k) } @@ -17999,8 +17999,8 @@ func (t *OrderedCollectionPage) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollectionPage) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollectionPage) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -18018,13 +18018,13 @@ func (t *OrderedCollectionPage) GetAttributedTo(idx int) (r Resolution, k url.UR } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *OrderedCollectionPage) AppendAttributedTo(k url.URL) { +func (t *OrderedCollectionPage) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *OrderedCollectionPage) PrependAttributedTo(k url.URL) { +func (t *OrderedCollectionPage) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -18055,8 +18055,8 @@ func (t *OrderedCollectionPage) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollectionPage) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollectionPage) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -18074,13 +18074,13 @@ func (t *OrderedCollectionPage) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *OrderedCollectionPage) AppendAudience(k url.URL) { +func (t *OrderedCollectionPage) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *OrderedCollectionPage) PrependAudience(k url.URL) { +func (t *OrderedCollectionPage) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -18473,8 +18473,8 @@ func (t *OrderedCollectionPage) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollectionPage) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollectionPage) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -18498,7 +18498,7 @@ func (t *OrderedCollectionPage) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *OrderedCollectionPage) SetId(k url.URL) { +func (t *OrderedCollectionPage) SetId(k *url.URL) { t.raw.SetId(k) } @@ -18565,8 +18565,8 @@ func (t *OrderedCollectionPage) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollectionPage) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollectionPage) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -18584,13 +18584,13 @@ func (t *OrderedCollectionPage) GetInReplyTo(idx int) (r Resolution, k url.URL) } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *OrderedCollectionPage) AppendInReplyTo(k url.URL) { +func (t *OrderedCollectionPage) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *OrderedCollectionPage) PrependInReplyTo(k url.URL) { +func (t *OrderedCollectionPage) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -19065,8 +19065,8 @@ func (t *OrderedCollectionPage) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollectionPage) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollectionPage) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -19082,13 +19082,13 @@ func (t *OrderedCollectionPage) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *OrderedCollectionPage) AppendUrl(k url.URL) { +func (t *OrderedCollectionPage) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *OrderedCollectionPage) PrependUrl(k url.URL) { +func (t *OrderedCollectionPage) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -19117,8 +19117,8 @@ func (t *OrderedCollectionPage) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollectionPage) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollectionPage) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -19136,13 +19136,13 @@ func (t *OrderedCollectionPage) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *OrderedCollectionPage) AppendTo(k url.URL) { +func (t *OrderedCollectionPage) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *OrderedCollectionPage) PrependTo(k url.URL) { +func (t *OrderedCollectionPage) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -19173,8 +19173,8 @@ func (t *OrderedCollectionPage) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollectionPage) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollectionPage) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -19192,13 +19192,13 @@ func (t *OrderedCollectionPage) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *OrderedCollectionPage) AppendBto(k url.URL) { +func (t *OrderedCollectionPage) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *OrderedCollectionPage) PrependBto(k url.URL) { +func (t *OrderedCollectionPage) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -19229,8 +19229,8 @@ func (t *OrderedCollectionPage) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollectionPage) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollectionPage) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -19248,13 +19248,13 @@ func (t *OrderedCollectionPage) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *OrderedCollectionPage) AppendCc(k url.URL) { +func (t *OrderedCollectionPage) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *OrderedCollectionPage) PrependCc(k url.URL) { +func (t *OrderedCollectionPage) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -19285,8 +19285,8 @@ func (t *OrderedCollectionPage) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollectionPage) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollectionPage) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -19304,13 +19304,13 @@ func (t *OrderedCollectionPage) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *OrderedCollectionPage) AppendBcc(k url.URL) { +func (t *OrderedCollectionPage) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *OrderedCollectionPage) PrependBcc(k url.URL) { +func (t *OrderedCollectionPage) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -19663,8 +19663,8 @@ func (t *OrderedCollectionPage) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollectionPage) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollectionPage) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -19678,13 +19678,13 @@ func (t *OrderedCollectionPage) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *OrderedCollectionPage) AppendStreams(k url.URL) { +func (t *OrderedCollectionPage) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *OrderedCollectionPage) PrependStreams(k url.URL) { +func (t *OrderedCollectionPage) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -19781,8 +19781,8 @@ func (t *OrderedCollectionPage) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollectionPage) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollectionPage) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -19806,13 +19806,13 @@ func (t *OrderedCollectionPage) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *OrderedCollectionPage) SetProxyUrl(k url.URL) { +func (t *OrderedCollectionPage) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollectionPage) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollectionPage) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -19836,13 +19836,13 @@ func (t *OrderedCollectionPage) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *OrderedCollectionPage) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *OrderedCollectionPage) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollectionPage) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollectionPage) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -19866,13 +19866,13 @@ func (t *OrderedCollectionPage) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *OrderedCollectionPage) SetOauthTokenEndpoint(k url.URL) { +func (t *OrderedCollectionPage) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollectionPage) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollectionPage) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -19896,13 +19896,13 @@ func (t *OrderedCollectionPage) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *OrderedCollectionPage) SetProvideClientKey(k url.URL) { +func (t *OrderedCollectionPage) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollectionPage) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollectionPage) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -19926,13 +19926,13 @@ func (t *OrderedCollectionPage) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *OrderedCollectionPage) SetSignClientKey(k url.URL) { +func (t *OrderedCollectionPage) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *OrderedCollectionPage) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *OrderedCollectionPage) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -19956,7 +19956,7 @@ func (t *OrderedCollectionPage) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *OrderedCollectionPage) SetSharedInbox(k url.URL) { +func (t *OrderedCollectionPage) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -20023,8 +20023,8 @@ func (t *Accept) LenActor() (idx int) { } -// GetActor attempts to get this 'actor' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Accept) GetActor(idx int) (r Resolution, k url.URL) { +// GetActor attempts to get this 'actor' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Accept) GetActor(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsActorIRI(idx) { @@ -20042,13 +20042,13 @@ func (t *Accept) GetActor(idx int) (r Resolution, k url.URL) { } // AppendActor appends the value for property 'actor'. -func (t *Accept) AppendActor(k url.URL) { +func (t *Accept) AppendActor(k *url.URL) { t.raw.AppendActorIRI(k) } // PrependActor prepends the value for property 'actor'. -func (t *Accept) PrependActor(k url.URL) { +func (t *Accept) PrependActor(k *url.URL) { t.raw.PrependActorIRI(k) } @@ -20131,8 +20131,8 @@ func (t *Accept) LenTarget() (idx int) { } -// GetTarget attempts to get this 'target' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Accept) GetTarget(idx int) (r Resolution, k url.URL) { +// GetTarget attempts to get this 'target' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Accept) GetTarget(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsTargetIRI(idx) { @@ -20150,13 +20150,13 @@ func (t *Accept) GetTarget(idx int) (r Resolution, k url.URL) { } // AppendTarget appends the value for property 'target'. -func (t *Accept) AppendTarget(k url.URL) { +func (t *Accept) AppendTarget(k *url.URL) { t.raw.AppendTargetIRI(k) } // PrependTarget prepends the value for property 'target'. -func (t *Accept) PrependTarget(k url.URL) { +func (t *Accept) PrependTarget(k *url.URL) { t.raw.PrependTargetIRI(k) } @@ -20481,8 +20481,8 @@ func (t *Accept) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Accept) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Accept) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -20500,13 +20500,13 @@ func (t *Accept) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Accept) AppendAttributedTo(k url.URL) { +func (t *Accept) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Accept) PrependAttributedTo(k url.URL) { +func (t *Accept) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -20537,8 +20537,8 @@ func (t *Accept) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Accept) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Accept) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -20556,13 +20556,13 @@ func (t *Accept) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Accept) AppendAudience(k url.URL) { +func (t *Accept) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Accept) PrependAudience(k url.URL) { +func (t *Accept) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -20955,8 +20955,8 @@ func (t *Accept) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Accept) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Accept) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -20980,7 +20980,7 @@ func (t *Accept) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Accept) SetId(k url.URL) { +func (t *Accept) SetId(k *url.URL) { t.raw.SetId(k) } @@ -21047,8 +21047,8 @@ func (t *Accept) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Accept) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Accept) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -21066,13 +21066,13 @@ func (t *Accept) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Accept) AppendInReplyTo(k url.URL) { +func (t *Accept) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Accept) PrependInReplyTo(k url.URL) { +func (t *Accept) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -21547,8 +21547,8 @@ func (t *Accept) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Accept) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Accept) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -21564,13 +21564,13 @@ func (t *Accept) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Accept) AppendUrl(k url.URL) { +func (t *Accept) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Accept) PrependUrl(k url.URL) { +func (t *Accept) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -21599,8 +21599,8 @@ func (t *Accept) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Accept) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Accept) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -21618,13 +21618,13 @@ func (t *Accept) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Accept) AppendTo(k url.URL) { +func (t *Accept) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Accept) PrependTo(k url.URL) { +func (t *Accept) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -21655,8 +21655,8 @@ func (t *Accept) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Accept) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Accept) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -21674,13 +21674,13 @@ func (t *Accept) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Accept) AppendBto(k url.URL) { +func (t *Accept) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Accept) PrependBto(k url.URL) { +func (t *Accept) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -21711,8 +21711,8 @@ func (t *Accept) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Accept) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Accept) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -21730,13 +21730,13 @@ func (t *Accept) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Accept) AppendCc(k url.URL) { +func (t *Accept) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Accept) PrependCc(k url.URL) { +func (t *Accept) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -21767,8 +21767,8 @@ func (t *Accept) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Accept) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Accept) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -21786,13 +21786,13 @@ func (t *Accept) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Accept) AppendBcc(k url.URL) { +func (t *Accept) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Accept) PrependBcc(k url.URL) { +func (t *Accept) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -22145,8 +22145,8 @@ func (t *Accept) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Accept) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Accept) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -22160,13 +22160,13 @@ func (t *Accept) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Accept) AppendStreams(k url.URL) { +func (t *Accept) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Accept) PrependStreams(k url.URL) { +func (t *Accept) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -22263,8 +22263,8 @@ func (t *Accept) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Accept) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Accept) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -22288,13 +22288,13 @@ func (t *Accept) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Accept) SetProxyUrl(k url.URL) { +func (t *Accept) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Accept) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Accept) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -22318,13 +22318,13 @@ func (t *Accept) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Accept) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Accept) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Accept) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Accept) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -22348,13 +22348,13 @@ func (t *Accept) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Accept) SetOauthTokenEndpoint(k url.URL) { +func (t *Accept) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Accept) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Accept) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -22378,13 +22378,13 @@ func (t *Accept) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Accept) SetProvideClientKey(k url.URL) { +func (t *Accept) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Accept) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Accept) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -22408,13 +22408,13 @@ func (t *Accept) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Accept) SetSignClientKey(k url.URL) { +func (t *Accept) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Accept) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Accept) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -22438,7 +22438,7 @@ func (t *Accept) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Accept) SetSharedInbox(k url.URL) { +func (t *Accept) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -22467,8 +22467,8 @@ func (t *TentativeAccept) LenActor() (idx int) { } -// GetActor attempts to get this 'actor' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeAccept) GetActor(idx int) (r Resolution, k url.URL) { +// GetActor attempts to get this 'actor' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeAccept) GetActor(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsActorIRI(idx) { @@ -22486,13 +22486,13 @@ func (t *TentativeAccept) GetActor(idx int) (r Resolution, k url.URL) { } // AppendActor appends the value for property 'actor'. -func (t *TentativeAccept) AppendActor(k url.URL) { +func (t *TentativeAccept) AppendActor(k *url.URL) { t.raw.AppendActorIRI(k) } // PrependActor prepends the value for property 'actor'. -func (t *TentativeAccept) PrependActor(k url.URL) { +func (t *TentativeAccept) PrependActor(k *url.URL) { t.raw.PrependActorIRI(k) } @@ -22575,8 +22575,8 @@ func (t *TentativeAccept) LenTarget() (idx int) { } -// GetTarget attempts to get this 'target' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeAccept) GetTarget(idx int) (r Resolution, k url.URL) { +// GetTarget attempts to get this 'target' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeAccept) GetTarget(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsTargetIRI(idx) { @@ -22594,13 +22594,13 @@ func (t *TentativeAccept) GetTarget(idx int) (r Resolution, k url.URL) { } // AppendTarget appends the value for property 'target'. -func (t *TentativeAccept) AppendTarget(k url.URL) { +func (t *TentativeAccept) AppendTarget(k *url.URL) { t.raw.AppendTargetIRI(k) } // PrependTarget prepends the value for property 'target'. -func (t *TentativeAccept) PrependTarget(k url.URL) { +func (t *TentativeAccept) PrependTarget(k *url.URL) { t.raw.PrependTargetIRI(k) } @@ -22925,8 +22925,8 @@ func (t *TentativeAccept) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeAccept) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeAccept) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -22944,13 +22944,13 @@ func (t *TentativeAccept) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *TentativeAccept) AppendAttributedTo(k url.URL) { +func (t *TentativeAccept) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *TentativeAccept) PrependAttributedTo(k url.URL) { +func (t *TentativeAccept) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -22981,8 +22981,8 @@ func (t *TentativeAccept) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeAccept) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeAccept) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -23000,13 +23000,13 @@ func (t *TentativeAccept) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *TentativeAccept) AppendAudience(k url.URL) { +func (t *TentativeAccept) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *TentativeAccept) PrependAudience(k url.URL) { +func (t *TentativeAccept) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -23399,8 +23399,8 @@ func (t *TentativeAccept) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeAccept) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeAccept) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -23424,7 +23424,7 @@ func (t *TentativeAccept) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *TentativeAccept) SetId(k url.URL) { +func (t *TentativeAccept) SetId(k *url.URL) { t.raw.SetId(k) } @@ -23491,8 +23491,8 @@ func (t *TentativeAccept) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeAccept) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeAccept) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -23510,13 +23510,13 @@ func (t *TentativeAccept) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *TentativeAccept) AppendInReplyTo(k url.URL) { +func (t *TentativeAccept) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *TentativeAccept) PrependInReplyTo(k url.URL) { +func (t *TentativeAccept) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -23991,8 +23991,8 @@ func (t *TentativeAccept) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeAccept) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeAccept) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -24008,13 +24008,13 @@ func (t *TentativeAccept) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *TentativeAccept) AppendUrl(k url.URL) { +func (t *TentativeAccept) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *TentativeAccept) PrependUrl(k url.URL) { +func (t *TentativeAccept) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -24043,8 +24043,8 @@ func (t *TentativeAccept) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeAccept) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeAccept) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -24062,13 +24062,13 @@ func (t *TentativeAccept) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *TentativeAccept) AppendTo(k url.URL) { +func (t *TentativeAccept) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *TentativeAccept) PrependTo(k url.URL) { +func (t *TentativeAccept) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -24099,8 +24099,8 @@ func (t *TentativeAccept) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeAccept) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeAccept) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -24118,13 +24118,13 @@ func (t *TentativeAccept) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *TentativeAccept) AppendBto(k url.URL) { +func (t *TentativeAccept) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *TentativeAccept) PrependBto(k url.URL) { +func (t *TentativeAccept) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -24155,8 +24155,8 @@ func (t *TentativeAccept) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeAccept) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeAccept) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -24174,13 +24174,13 @@ func (t *TentativeAccept) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *TentativeAccept) AppendCc(k url.URL) { +func (t *TentativeAccept) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *TentativeAccept) PrependCc(k url.URL) { +func (t *TentativeAccept) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -24211,8 +24211,8 @@ func (t *TentativeAccept) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeAccept) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeAccept) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -24230,13 +24230,13 @@ func (t *TentativeAccept) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *TentativeAccept) AppendBcc(k url.URL) { +func (t *TentativeAccept) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *TentativeAccept) PrependBcc(k url.URL) { +func (t *TentativeAccept) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -24589,8 +24589,8 @@ func (t *TentativeAccept) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeAccept) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeAccept) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -24604,13 +24604,13 @@ func (t *TentativeAccept) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *TentativeAccept) AppendStreams(k url.URL) { +func (t *TentativeAccept) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *TentativeAccept) PrependStreams(k url.URL) { +func (t *TentativeAccept) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -24707,8 +24707,8 @@ func (t *TentativeAccept) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeAccept) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeAccept) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -24732,13 +24732,13 @@ func (t *TentativeAccept) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *TentativeAccept) SetProxyUrl(k url.URL) { +func (t *TentativeAccept) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeAccept) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeAccept) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -24762,13 +24762,13 @@ func (t *TentativeAccept) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *TentativeAccept) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *TentativeAccept) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeAccept) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeAccept) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -24792,13 +24792,13 @@ func (t *TentativeAccept) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *TentativeAccept) SetOauthTokenEndpoint(k url.URL) { +func (t *TentativeAccept) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeAccept) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeAccept) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -24822,13 +24822,13 @@ func (t *TentativeAccept) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *TentativeAccept) SetProvideClientKey(k url.URL) { +func (t *TentativeAccept) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeAccept) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeAccept) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -24852,13 +24852,13 @@ func (t *TentativeAccept) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *TentativeAccept) SetSignClientKey(k url.URL) { +func (t *TentativeAccept) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeAccept) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeAccept) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -24882,7 +24882,7 @@ func (t *TentativeAccept) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *TentativeAccept) SetSharedInbox(k url.URL) { +func (t *TentativeAccept) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -24911,8 +24911,8 @@ func (t *Add) LenActor() (idx int) { } -// GetActor attempts to get this 'actor' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Add) GetActor(idx int) (r Resolution, k url.URL) { +// GetActor attempts to get this 'actor' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Add) GetActor(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsActorIRI(idx) { @@ -24930,13 +24930,13 @@ func (t *Add) GetActor(idx int) (r Resolution, k url.URL) { } // AppendActor appends the value for property 'actor'. -func (t *Add) AppendActor(k url.URL) { +func (t *Add) AppendActor(k *url.URL) { t.raw.AppendActorIRI(k) } // PrependActor prepends the value for property 'actor'. -func (t *Add) PrependActor(k url.URL) { +func (t *Add) PrependActor(k *url.URL) { t.raw.PrependActorIRI(k) } @@ -25019,8 +25019,8 @@ func (t *Add) LenTarget() (idx int) { } -// GetTarget attempts to get this 'target' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Add) GetTarget(idx int) (r Resolution, k url.URL) { +// GetTarget attempts to get this 'target' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Add) GetTarget(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsTargetIRI(idx) { @@ -25038,13 +25038,13 @@ func (t *Add) GetTarget(idx int) (r Resolution, k url.URL) { } // AppendTarget appends the value for property 'target'. -func (t *Add) AppendTarget(k url.URL) { +func (t *Add) AppendTarget(k *url.URL) { t.raw.AppendTargetIRI(k) } // PrependTarget prepends the value for property 'target'. -func (t *Add) PrependTarget(k url.URL) { +func (t *Add) PrependTarget(k *url.URL) { t.raw.PrependTargetIRI(k) } @@ -25369,8 +25369,8 @@ func (t *Add) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Add) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Add) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -25388,13 +25388,13 @@ func (t *Add) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Add) AppendAttributedTo(k url.URL) { +func (t *Add) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Add) PrependAttributedTo(k url.URL) { +func (t *Add) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -25425,8 +25425,8 @@ func (t *Add) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Add) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Add) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -25444,13 +25444,13 @@ func (t *Add) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Add) AppendAudience(k url.URL) { +func (t *Add) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Add) PrependAudience(k url.URL) { +func (t *Add) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -25843,8 +25843,8 @@ func (t *Add) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Add) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Add) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -25868,7 +25868,7 @@ func (t *Add) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Add) SetId(k url.URL) { +func (t *Add) SetId(k *url.URL) { t.raw.SetId(k) } @@ -25935,8 +25935,8 @@ func (t *Add) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Add) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Add) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -25954,13 +25954,13 @@ func (t *Add) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Add) AppendInReplyTo(k url.URL) { +func (t *Add) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Add) PrependInReplyTo(k url.URL) { +func (t *Add) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -26435,8 +26435,8 @@ func (t *Add) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Add) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Add) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -26452,13 +26452,13 @@ func (t *Add) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Add) AppendUrl(k url.URL) { +func (t *Add) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Add) PrependUrl(k url.URL) { +func (t *Add) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -26487,8 +26487,8 @@ func (t *Add) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Add) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Add) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -26506,13 +26506,13 @@ func (t *Add) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Add) AppendTo(k url.URL) { +func (t *Add) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Add) PrependTo(k url.URL) { +func (t *Add) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -26543,8 +26543,8 @@ func (t *Add) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Add) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Add) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -26562,13 +26562,13 @@ func (t *Add) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Add) AppendBto(k url.URL) { +func (t *Add) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Add) PrependBto(k url.URL) { +func (t *Add) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -26599,8 +26599,8 @@ func (t *Add) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Add) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Add) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -26618,13 +26618,13 @@ func (t *Add) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Add) AppendCc(k url.URL) { +func (t *Add) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Add) PrependCc(k url.URL) { +func (t *Add) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -26655,8 +26655,8 @@ func (t *Add) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Add) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Add) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -26674,13 +26674,13 @@ func (t *Add) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Add) AppendBcc(k url.URL) { +func (t *Add) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Add) PrependBcc(k url.URL) { +func (t *Add) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -27033,8 +27033,8 @@ func (t *Add) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Add) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Add) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -27048,13 +27048,13 @@ func (t *Add) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Add) AppendStreams(k url.URL) { +func (t *Add) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Add) PrependStreams(k url.URL) { +func (t *Add) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -27151,8 +27151,8 @@ func (t *Add) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Add) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Add) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -27176,13 +27176,13 @@ func (t *Add) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Add) SetProxyUrl(k url.URL) { +func (t *Add) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Add) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Add) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -27206,13 +27206,13 @@ func (t *Add) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Add) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Add) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Add) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Add) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -27236,13 +27236,13 @@ func (t *Add) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Add) SetOauthTokenEndpoint(k url.URL) { +func (t *Add) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Add) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Add) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -27266,13 +27266,13 @@ func (t *Add) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Add) SetProvideClientKey(k url.URL) { +func (t *Add) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Add) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Add) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -27296,13 +27296,13 @@ func (t *Add) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Add) SetSignClientKey(k url.URL) { +func (t *Add) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Add) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Add) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -27326,7 +27326,7 @@ func (t *Add) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Add) SetSharedInbox(k url.URL) { +func (t *Add) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -27355,8 +27355,8 @@ func (t *Arrive) LenActor() (idx int) { } -// GetActor attempts to get this 'actor' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Arrive) GetActor(idx int) (r Resolution, k url.URL) { +// GetActor attempts to get this 'actor' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Arrive) GetActor(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsActorIRI(idx) { @@ -27374,13 +27374,13 @@ func (t *Arrive) GetActor(idx int) (r Resolution, k url.URL) { } // AppendActor appends the value for property 'actor'. -func (t *Arrive) AppendActor(k url.URL) { +func (t *Arrive) AppendActor(k *url.URL) { t.raw.AppendActorIRI(k) } // PrependActor prepends the value for property 'actor'. -func (t *Arrive) PrependActor(k url.URL) { +func (t *Arrive) PrependActor(k *url.URL) { t.raw.PrependActorIRI(k) } @@ -27411,8 +27411,8 @@ func (t *Arrive) LenTarget() (idx int) { } -// GetTarget attempts to get this 'target' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Arrive) GetTarget(idx int) (r Resolution, k url.URL) { +// GetTarget attempts to get this 'target' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Arrive) GetTarget(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsTargetIRI(idx) { @@ -27430,13 +27430,13 @@ func (t *Arrive) GetTarget(idx int) (r Resolution, k url.URL) { } // AppendTarget appends the value for property 'target'. -func (t *Arrive) AppendTarget(k url.URL) { +func (t *Arrive) AppendTarget(k *url.URL) { t.raw.AppendTargetIRI(k) } // PrependTarget prepends the value for property 'target'. -func (t *Arrive) PrependTarget(k url.URL) { +func (t *Arrive) PrependTarget(k *url.URL) { t.raw.PrependTargetIRI(k) } @@ -27761,8 +27761,8 @@ func (t *Arrive) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Arrive) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Arrive) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -27780,13 +27780,13 @@ func (t *Arrive) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Arrive) AppendAttributedTo(k url.URL) { +func (t *Arrive) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Arrive) PrependAttributedTo(k url.URL) { +func (t *Arrive) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -27817,8 +27817,8 @@ func (t *Arrive) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Arrive) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Arrive) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -27836,13 +27836,13 @@ func (t *Arrive) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Arrive) AppendAudience(k url.URL) { +func (t *Arrive) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Arrive) PrependAudience(k url.URL) { +func (t *Arrive) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -28235,8 +28235,8 @@ func (t *Arrive) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Arrive) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Arrive) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -28260,7 +28260,7 @@ func (t *Arrive) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Arrive) SetId(k url.URL) { +func (t *Arrive) SetId(k *url.URL) { t.raw.SetId(k) } @@ -28327,8 +28327,8 @@ func (t *Arrive) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Arrive) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Arrive) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -28346,13 +28346,13 @@ func (t *Arrive) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Arrive) AppendInReplyTo(k url.URL) { +func (t *Arrive) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Arrive) PrependInReplyTo(k url.URL) { +func (t *Arrive) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -28827,8 +28827,8 @@ func (t *Arrive) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Arrive) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Arrive) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -28844,13 +28844,13 @@ func (t *Arrive) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Arrive) AppendUrl(k url.URL) { +func (t *Arrive) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Arrive) PrependUrl(k url.URL) { +func (t *Arrive) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -28879,8 +28879,8 @@ func (t *Arrive) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Arrive) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Arrive) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -28898,13 +28898,13 @@ func (t *Arrive) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Arrive) AppendTo(k url.URL) { +func (t *Arrive) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Arrive) PrependTo(k url.URL) { +func (t *Arrive) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -28935,8 +28935,8 @@ func (t *Arrive) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Arrive) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Arrive) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -28954,13 +28954,13 @@ func (t *Arrive) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Arrive) AppendBto(k url.URL) { +func (t *Arrive) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Arrive) PrependBto(k url.URL) { +func (t *Arrive) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -28991,8 +28991,8 @@ func (t *Arrive) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Arrive) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Arrive) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -29010,13 +29010,13 @@ func (t *Arrive) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Arrive) AppendCc(k url.URL) { +func (t *Arrive) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Arrive) PrependCc(k url.URL) { +func (t *Arrive) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -29047,8 +29047,8 @@ func (t *Arrive) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Arrive) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Arrive) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -29066,13 +29066,13 @@ func (t *Arrive) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Arrive) AppendBcc(k url.URL) { +func (t *Arrive) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Arrive) PrependBcc(k url.URL) { +func (t *Arrive) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -29425,8 +29425,8 @@ func (t *Arrive) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Arrive) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Arrive) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -29440,13 +29440,13 @@ func (t *Arrive) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Arrive) AppendStreams(k url.URL) { +func (t *Arrive) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Arrive) PrependStreams(k url.URL) { +func (t *Arrive) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -29543,8 +29543,8 @@ func (t *Arrive) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Arrive) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Arrive) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -29568,13 +29568,13 @@ func (t *Arrive) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Arrive) SetProxyUrl(k url.URL) { +func (t *Arrive) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Arrive) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Arrive) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -29598,13 +29598,13 @@ func (t *Arrive) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Arrive) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Arrive) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Arrive) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Arrive) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -29628,13 +29628,13 @@ func (t *Arrive) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Arrive) SetOauthTokenEndpoint(k url.URL) { +func (t *Arrive) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Arrive) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Arrive) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -29658,13 +29658,13 @@ func (t *Arrive) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Arrive) SetProvideClientKey(k url.URL) { +func (t *Arrive) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Arrive) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Arrive) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -29688,13 +29688,13 @@ func (t *Arrive) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Arrive) SetSignClientKey(k url.URL) { +func (t *Arrive) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Arrive) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Arrive) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -29718,7 +29718,7 @@ func (t *Arrive) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Arrive) SetSharedInbox(k url.URL) { +func (t *Arrive) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -29747,8 +29747,8 @@ func (t *Create) LenActor() (idx int) { } -// GetActor attempts to get this 'actor' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Create) GetActor(idx int) (r Resolution, k url.URL) { +// GetActor attempts to get this 'actor' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Create) GetActor(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsActorIRI(idx) { @@ -29766,13 +29766,13 @@ func (t *Create) GetActor(idx int) (r Resolution, k url.URL) { } // AppendActor appends the value for property 'actor'. -func (t *Create) AppendActor(k url.URL) { +func (t *Create) AppendActor(k *url.URL) { t.raw.AppendActorIRI(k) } // PrependActor prepends the value for property 'actor'. -func (t *Create) PrependActor(k url.URL) { +func (t *Create) PrependActor(k *url.URL) { t.raw.PrependActorIRI(k) } @@ -29855,8 +29855,8 @@ func (t *Create) LenTarget() (idx int) { } -// GetTarget attempts to get this 'target' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Create) GetTarget(idx int) (r Resolution, k url.URL) { +// GetTarget attempts to get this 'target' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Create) GetTarget(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsTargetIRI(idx) { @@ -29874,13 +29874,13 @@ func (t *Create) GetTarget(idx int) (r Resolution, k url.URL) { } // AppendTarget appends the value for property 'target'. -func (t *Create) AppendTarget(k url.URL) { +func (t *Create) AppendTarget(k *url.URL) { t.raw.AppendTargetIRI(k) } // PrependTarget prepends the value for property 'target'. -func (t *Create) PrependTarget(k url.URL) { +func (t *Create) PrependTarget(k *url.URL) { t.raw.PrependTargetIRI(k) } @@ -30205,8 +30205,8 @@ func (t *Create) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Create) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Create) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -30224,13 +30224,13 @@ func (t *Create) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Create) AppendAttributedTo(k url.URL) { +func (t *Create) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Create) PrependAttributedTo(k url.URL) { +func (t *Create) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -30261,8 +30261,8 @@ func (t *Create) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Create) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Create) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -30280,13 +30280,13 @@ func (t *Create) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Create) AppendAudience(k url.URL) { +func (t *Create) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Create) PrependAudience(k url.URL) { +func (t *Create) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -30679,8 +30679,8 @@ func (t *Create) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Create) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Create) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -30704,7 +30704,7 @@ func (t *Create) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Create) SetId(k url.URL) { +func (t *Create) SetId(k *url.URL) { t.raw.SetId(k) } @@ -30771,8 +30771,8 @@ func (t *Create) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Create) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Create) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -30790,13 +30790,13 @@ func (t *Create) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Create) AppendInReplyTo(k url.URL) { +func (t *Create) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Create) PrependInReplyTo(k url.URL) { +func (t *Create) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -31271,8 +31271,8 @@ func (t *Create) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Create) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Create) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -31288,13 +31288,13 @@ func (t *Create) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Create) AppendUrl(k url.URL) { +func (t *Create) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Create) PrependUrl(k url.URL) { +func (t *Create) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -31323,8 +31323,8 @@ func (t *Create) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Create) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Create) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -31342,13 +31342,13 @@ func (t *Create) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Create) AppendTo(k url.URL) { +func (t *Create) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Create) PrependTo(k url.URL) { +func (t *Create) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -31379,8 +31379,8 @@ func (t *Create) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Create) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Create) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -31398,13 +31398,13 @@ func (t *Create) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Create) AppendBto(k url.URL) { +func (t *Create) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Create) PrependBto(k url.URL) { +func (t *Create) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -31435,8 +31435,8 @@ func (t *Create) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Create) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Create) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -31454,13 +31454,13 @@ func (t *Create) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Create) AppendCc(k url.URL) { +func (t *Create) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Create) PrependCc(k url.URL) { +func (t *Create) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -31491,8 +31491,8 @@ func (t *Create) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Create) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Create) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -31510,13 +31510,13 @@ func (t *Create) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Create) AppendBcc(k url.URL) { +func (t *Create) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Create) PrependBcc(k url.URL) { +func (t *Create) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -31869,8 +31869,8 @@ func (t *Create) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Create) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Create) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -31884,13 +31884,13 @@ func (t *Create) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Create) AppendStreams(k url.URL) { +func (t *Create) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Create) PrependStreams(k url.URL) { +func (t *Create) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -31987,8 +31987,8 @@ func (t *Create) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Create) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Create) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -32012,13 +32012,13 @@ func (t *Create) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Create) SetProxyUrl(k url.URL) { +func (t *Create) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Create) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Create) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -32042,13 +32042,13 @@ func (t *Create) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Create) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Create) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Create) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Create) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -32072,13 +32072,13 @@ func (t *Create) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Create) SetOauthTokenEndpoint(k url.URL) { +func (t *Create) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Create) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Create) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -32102,13 +32102,13 @@ func (t *Create) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Create) SetProvideClientKey(k url.URL) { +func (t *Create) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Create) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Create) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -32132,13 +32132,13 @@ func (t *Create) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Create) SetSignClientKey(k url.URL) { +func (t *Create) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Create) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Create) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -32162,7 +32162,7 @@ func (t *Create) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Create) SetSharedInbox(k url.URL) { +func (t *Create) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -32191,8 +32191,8 @@ func (t *Delete) LenActor() (idx int) { } -// GetActor attempts to get this 'actor' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Delete) GetActor(idx int) (r Resolution, k url.URL) { +// GetActor attempts to get this 'actor' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Delete) GetActor(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsActorIRI(idx) { @@ -32210,13 +32210,13 @@ func (t *Delete) GetActor(idx int) (r Resolution, k url.URL) { } // AppendActor appends the value for property 'actor'. -func (t *Delete) AppendActor(k url.URL) { +func (t *Delete) AppendActor(k *url.URL) { t.raw.AppendActorIRI(k) } // PrependActor prepends the value for property 'actor'. -func (t *Delete) PrependActor(k url.URL) { +func (t *Delete) PrependActor(k *url.URL) { t.raw.PrependActorIRI(k) } @@ -32299,8 +32299,8 @@ func (t *Delete) LenTarget() (idx int) { } -// GetTarget attempts to get this 'target' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Delete) GetTarget(idx int) (r Resolution, k url.URL) { +// GetTarget attempts to get this 'target' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Delete) GetTarget(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsTargetIRI(idx) { @@ -32318,13 +32318,13 @@ func (t *Delete) GetTarget(idx int) (r Resolution, k url.URL) { } // AppendTarget appends the value for property 'target'. -func (t *Delete) AppendTarget(k url.URL) { +func (t *Delete) AppendTarget(k *url.URL) { t.raw.AppendTargetIRI(k) } // PrependTarget prepends the value for property 'target'. -func (t *Delete) PrependTarget(k url.URL) { +func (t *Delete) PrependTarget(k *url.URL) { t.raw.PrependTargetIRI(k) } @@ -32649,8 +32649,8 @@ func (t *Delete) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Delete) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Delete) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -32668,13 +32668,13 @@ func (t *Delete) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Delete) AppendAttributedTo(k url.URL) { +func (t *Delete) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Delete) PrependAttributedTo(k url.URL) { +func (t *Delete) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -32705,8 +32705,8 @@ func (t *Delete) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Delete) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Delete) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -32724,13 +32724,13 @@ func (t *Delete) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Delete) AppendAudience(k url.URL) { +func (t *Delete) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Delete) PrependAudience(k url.URL) { +func (t *Delete) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -33123,8 +33123,8 @@ func (t *Delete) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Delete) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Delete) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -33148,7 +33148,7 @@ func (t *Delete) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Delete) SetId(k url.URL) { +func (t *Delete) SetId(k *url.URL) { t.raw.SetId(k) } @@ -33215,8 +33215,8 @@ func (t *Delete) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Delete) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Delete) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -33234,13 +33234,13 @@ func (t *Delete) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Delete) AppendInReplyTo(k url.URL) { +func (t *Delete) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Delete) PrependInReplyTo(k url.URL) { +func (t *Delete) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -33715,8 +33715,8 @@ func (t *Delete) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Delete) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Delete) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -33732,13 +33732,13 @@ func (t *Delete) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Delete) AppendUrl(k url.URL) { +func (t *Delete) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Delete) PrependUrl(k url.URL) { +func (t *Delete) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -33767,8 +33767,8 @@ func (t *Delete) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Delete) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Delete) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -33786,13 +33786,13 @@ func (t *Delete) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Delete) AppendTo(k url.URL) { +func (t *Delete) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Delete) PrependTo(k url.URL) { +func (t *Delete) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -33823,8 +33823,8 @@ func (t *Delete) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Delete) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Delete) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -33842,13 +33842,13 @@ func (t *Delete) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Delete) AppendBto(k url.URL) { +func (t *Delete) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Delete) PrependBto(k url.URL) { +func (t *Delete) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -33879,8 +33879,8 @@ func (t *Delete) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Delete) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Delete) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -33898,13 +33898,13 @@ func (t *Delete) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Delete) AppendCc(k url.URL) { +func (t *Delete) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Delete) PrependCc(k url.URL) { +func (t *Delete) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -33935,8 +33935,8 @@ func (t *Delete) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Delete) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Delete) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -33954,13 +33954,13 @@ func (t *Delete) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Delete) AppendBcc(k url.URL) { +func (t *Delete) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Delete) PrependBcc(k url.URL) { +func (t *Delete) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -34313,8 +34313,8 @@ func (t *Delete) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Delete) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Delete) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -34328,13 +34328,13 @@ func (t *Delete) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Delete) AppendStreams(k url.URL) { +func (t *Delete) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Delete) PrependStreams(k url.URL) { +func (t *Delete) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -34431,8 +34431,8 @@ func (t *Delete) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Delete) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Delete) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -34456,13 +34456,13 @@ func (t *Delete) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Delete) SetProxyUrl(k url.URL) { +func (t *Delete) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Delete) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Delete) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -34486,13 +34486,13 @@ func (t *Delete) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Delete) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Delete) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Delete) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Delete) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -34516,13 +34516,13 @@ func (t *Delete) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Delete) SetOauthTokenEndpoint(k url.URL) { +func (t *Delete) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Delete) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Delete) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -34546,13 +34546,13 @@ func (t *Delete) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Delete) SetProvideClientKey(k url.URL) { +func (t *Delete) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Delete) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Delete) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -34576,13 +34576,13 @@ func (t *Delete) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Delete) SetSignClientKey(k url.URL) { +func (t *Delete) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Delete) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Delete) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -34606,7 +34606,7 @@ func (t *Delete) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Delete) SetSharedInbox(k url.URL) { +func (t *Delete) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -34635,8 +34635,8 @@ func (t *Follow) LenActor() (idx int) { } -// GetActor attempts to get this 'actor' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Follow) GetActor(idx int) (r Resolution, k url.URL) { +// GetActor attempts to get this 'actor' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Follow) GetActor(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsActorIRI(idx) { @@ -34654,13 +34654,13 @@ func (t *Follow) GetActor(idx int) (r Resolution, k url.URL) { } // AppendActor appends the value for property 'actor'. -func (t *Follow) AppendActor(k url.URL) { +func (t *Follow) AppendActor(k *url.URL) { t.raw.AppendActorIRI(k) } // PrependActor prepends the value for property 'actor'. -func (t *Follow) PrependActor(k url.URL) { +func (t *Follow) PrependActor(k *url.URL) { t.raw.PrependActorIRI(k) } @@ -34743,8 +34743,8 @@ func (t *Follow) LenTarget() (idx int) { } -// GetTarget attempts to get this 'target' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Follow) GetTarget(idx int) (r Resolution, k url.URL) { +// GetTarget attempts to get this 'target' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Follow) GetTarget(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsTargetIRI(idx) { @@ -34762,13 +34762,13 @@ func (t *Follow) GetTarget(idx int) (r Resolution, k url.URL) { } // AppendTarget appends the value for property 'target'. -func (t *Follow) AppendTarget(k url.URL) { +func (t *Follow) AppendTarget(k *url.URL) { t.raw.AppendTargetIRI(k) } // PrependTarget prepends the value for property 'target'. -func (t *Follow) PrependTarget(k url.URL) { +func (t *Follow) PrependTarget(k *url.URL) { t.raw.PrependTargetIRI(k) } @@ -35093,8 +35093,8 @@ func (t *Follow) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Follow) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Follow) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -35112,13 +35112,13 @@ func (t *Follow) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Follow) AppendAttributedTo(k url.URL) { +func (t *Follow) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Follow) PrependAttributedTo(k url.URL) { +func (t *Follow) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -35149,8 +35149,8 @@ func (t *Follow) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Follow) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Follow) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -35168,13 +35168,13 @@ func (t *Follow) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Follow) AppendAudience(k url.URL) { +func (t *Follow) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Follow) PrependAudience(k url.URL) { +func (t *Follow) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -35567,8 +35567,8 @@ func (t *Follow) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Follow) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Follow) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -35592,7 +35592,7 @@ func (t *Follow) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Follow) SetId(k url.URL) { +func (t *Follow) SetId(k *url.URL) { t.raw.SetId(k) } @@ -35659,8 +35659,8 @@ func (t *Follow) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Follow) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Follow) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -35678,13 +35678,13 @@ func (t *Follow) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Follow) AppendInReplyTo(k url.URL) { +func (t *Follow) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Follow) PrependInReplyTo(k url.URL) { +func (t *Follow) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -36159,8 +36159,8 @@ func (t *Follow) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Follow) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Follow) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -36176,13 +36176,13 @@ func (t *Follow) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Follow) AppendUrl(k url.URL) { +func (t *Follow) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Follow) PrependUrl(k url.URL) { +func (t *Follow) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -36211,8 +36211,8 @@ func (t *Follow) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Follow) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Follow) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -36230,13 +36230,13 @@ func (t *Follow) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Follow) AppendTo(k url.URL) { +func (t *Follow) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Follow) PrependTo(k url.URL) { +func (t *Follow) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -36267,8 +36267,8 @@ func (t *Follow) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Follow) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Follow) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -36286,13 +36286,13 @@ func (t *Follow) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Follow) AppendBto(k url.URL) { +func (t *Follow) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Follow) PrependBto(k url.URL) { +func (t *Follow) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -36323,8 +36323,8 @@ func (t *Follow) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Follow) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Follow) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -36342,13 +36342,13 @@ func (t *Follow) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Follow) AppendCc(k url.URL) { +func (t *Follow) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Follow) PrependCc(k url.URL) { +func (t *Follow) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -36379,8 +36379,8 @@ func (t *Follow) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Follow) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Follow) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -36398,13 +36398,13 @@ func (t *Follow) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Follow) AppendBcc(k url.URL) { +func (t *Follow) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Follow) PrependBcc(k url.URL) { +func (t *Follow) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -36757,8 +36757,8 @@ func (t *Follow) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Follow) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Follow) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -36772,13 +36772,13 @@ func (t *Follow) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Follow) AppendStreams(k url.URL) { +func (t *Follow) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Follow) PrependStreams(k url.URL) { +func (t *Follow) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -36875,8 +36875,8 @@ func (t *Follow) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Follow) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Follow) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -36900,13 +36900,13 @@ func (t *Follow) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Follow) SetProxyUrl(k url.URL) { +func (t *Follow) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Follow) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Follow) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -36930,13 +36930,13 @@ func (t *Follow) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Follow) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Follow) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Follow) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Follow) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -36960,13 +36960,13 @@ func (t *Follow) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Follow) SetOauthTokenEndpoint(k url.URL) { +func (t *Follow) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Follow) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Follow) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -36990,13 +36990,13 @@ func (t *Follow) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Follow) SetProvideClientKey(k url.URL) { +func (t *Follow) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Follow) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Follow) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -37020,13 +37020,13 @@ func (t *Follow) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Follow) SetSignClientKey(k url.URL) { +func (t *Follow) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Follow) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Follow) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -37050,7 +37050,7 @@ func (t *Follow) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Follow) SetSharedInbox(k url.URL) { +func (t *Follow) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -37079,8 +37079,8 @@ func (t *Ignore) LenActor() (idx int) { } -// GetActor attempts to get this 'actor' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Ignore) GetActor(idx int) (r Resolution, k url.URL) { +// GetActor attempts to get this 'actor' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Ignore) GetActor(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsActorIRI(idx) { @@ -37098,13 +37098,13 @@ func (t *Ignore) GetActor(idx int) (r Resolution, k url.URL) { } // AppendActor appends the value for property 'actor'. -func (t *Ignore) AppendActor(k url.URL) { +func (t *Ignore) AppendActor(k *url.URL) { t.raw.AppendActorIRI(k) } // PrependActor prepends the value for property 'actor'. -func (t *Ignore) PrependActor(k url.URL) { +func (t *Ignore) PrependActor(k *url.URL) { t.raw.PrependActorIRI(k) } @@ -37187,8 +37187,8 @@ func (t *Ignore) LenTarget() (idx int) { } -// GetTarget attempts to get this 'target' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Ignore) GetTarget(idx int) (r Resolution, k url.URL) { +// GetTarget attempts to get this 'target' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Ignore) GetTarget(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsTargetIRI(idx) { @@ -37206,13 +37206,13 @@ func (t *Ignore) GetTarget(idx int) (r Resolution, k url.URL) { } // AppendTarget appends the value for property 'target'. -func (t *Ignore) AppendTarget(k url.URL) { +func (t *Ignore) AppendTarget(k *url.URL) { t.raw.AppendTargetIRI(k) } // PrependTarget prepends the value for property 'target'. -func (t *Ignore) PrependTarget(k url.URL) { +func (t *Ignore) PrependTarget(k *url.URL) { t.raw.PrependTargetIRI(k) } @@ -37537,8 +37537,8 @@ func (t *Ignore) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Ignore) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Ignore) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -37556,13 +37556,13 @@ func (t *Ignore) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Ignore) AppendAttributedTo(k url.URL) { +func (t *Ignore) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Ignore) PrependAttributedTo(k url.URL) { +func (t *Ignore) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -37593,8 +37593,8 @@ func (t *Ignore) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Ignore) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Ignore) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -37612,13 +37612,13 @@ func (t *Ignore) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Ignore) AppendAudience(k url.URL) { +func (t *Ignore) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Ignore) PrependAudience(k url.URL) { +func (t *Ignore) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -38011,8 +38011,8 @@ func (t *Ignore) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Ignore) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Ignore) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -38036,7 +38036,7 @@ func (t *Ignore) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Ignore) SetId(k url.URL) { +func (t *Ignore) SetId(k *url.URL) { t.raw.SetId(k) } @@ -38103,8 +38103,8 @@ func (t *Ignore) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Ignore) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Ignore) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -38122,13 +38122,13 @@ func (t *Ignore) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Ignore) AppendInReplyTo(k url.URL) { +func (t *Ignore) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Ignore) PrependInReplyTo(k url.URL) { +func (t *Ignore) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -38603,8 +38603,8 @@ func (t *Ignore) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Ignore) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Ignore) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -38620,13 +38620,13 @@ func (t *Ignore) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Ignore) AppendUrl(k url.URL) { +func (t *Ignore) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Ignore) PrependUrl(k url.URL) { +func (t *Ignore) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -38655,8 +38655,8 @@ func (t *Ignore) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Ignore) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Ignore) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -38674,13 +38674,13 @@ func (t *Ignore) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Ignore) AppendTo(k url.URL) { +func (t *Ignore) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Ignore) PrependTo(k url.URL) { +func (t *Ignore) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -38711,8 +38711,8 @@ func (t *Ignore) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Ignore) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Ignore) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -38730,13 +38730,13 @@ func (t *Ignore) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Ignore) AppendBto(k url.URL) { +func (t *Ignore) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Ignore) PrependBto(k url.URL) { +func (t *Ignore) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -38767,8 +38767,8 @@ func (t *Ignore) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Ignore) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Ignore) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -38786,13 +38786,13 @@ func (t *Ignore) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Ignore) AppendCc(k url.URL) { +func (t *Ignore) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Ignore) PrependCc(k url.URL) { +func (t *Ignore) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -38823,8 +38823,8 @@ func (t *Ignore) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Ignore) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Ignore) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -38842,13 +38842,13 @@ func (t *Ignore) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Ignore) AppendBcc(k url.URL) { +func (t *Ignore) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Ignore) PrependBcc(k url.URL) { +func (t *Ignore) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -39201,8 +39201,8 @@ func (t *Ignore) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Ignore) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Ignore) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -39216,13 +39216,13 @@ func (t *Ignore) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Ignore) AppendStreams(k url.URL) { +func (t *Ignore) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Ignore) PrependStreams(k url.URL) { +func (t *Ignore) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -39319,8 +39319,8 @@ func (t *Ignore) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Ignore) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Ignore) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -39344,13 +39344,13 @@ func (t *Ignore) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Ignore) SetProxyUrl(k url.URL) { +func (t *Ignore) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Ignore) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Ignore) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -39374,13 +39374,13 @@ func (t *Ignore) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Ignore) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Ignore) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Ignore) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Ignore) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -39404,13 +39404,13 @@ func (t *Ignore) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Ignore) SetOauthTokenEndpoint(k url.URL) { +func (t *Ignore) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Ignore) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Ignore) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -39434,13 +39434,13 @@ func (t *Ignore) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Ignore) SetProvideClientKey(k url.URL) { +func (t *Ignore) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Ignore) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Ignore) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -39464,13 +39464,13 @@ func (t *Ignore) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Ignore) SetSignClientKey(k url.URL) { +func (t *Ignore) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Ignore) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Ignore) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -39494,7 +39494,7 @@ func (t *Ignore) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Ignore) SetSharedInbox(k url.URL) { +func (t *Ignore) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -39523,8 +39523,8 @@ func (t *Join) LenActor() (idx int) { } -// GetActor attempts to get this 'actor' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Join) GetActor(idx int) (r Resolution, k url.URL) { +// GetActor attempts to get this 'actor' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Join) GetActor(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsActorIRI(idx) { @@ -39542,13 +39542,13 @@ func (t *Join) GetActor(idx int) (r Resolution, k url.URL) { } // AppendActor appends the value for property 'actor'. -func (t *Join) AppendActor(k url.URL) { +func (t *Join) AppendActor(k *url.URL) { t.raw.AppendActorIRI(k) } // PrependActor prepends the value for property 'actor'. -func (t *Join) PrependActor(k url.URL) { +func (t *Join) PrependActor(k *url.URL) { t.raw.PrependActorIRI(k) } @@ -39631,8 +39631,8 @@ func (t *Join) LenTarget() (idx int) { } -// GetTarget attempts to get this 'target' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Join) GetTarget(idx int) (r Resolution, k url.URL) { +// GetTarget attempts to get this 'target' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Join) GetTarget(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsTargetIRI(idx) { @@ -39650,13 +39650,13 @@ func (t *Join) GetTarget(idx int) (r Resolution, k url.URL) { } // AppendTarget appends the value for property 'target'. -func (t *Join) AppendTarget(k url.URL) { +func (t *Join) AppendTarget(k *url.URL) { t.raw.AppendTargetIRI(k) } // PrependTarget prepends the value for property 'target'. -func (t *Join) PrependTarget(k url.URL) { +func (t *Join) PrependTarget(k *url.URL) { t.raw.PrependTargetIRI(k) } @@ -39981,8 +39981,8 @@ func (t *Join) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Join) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Join) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -40000,13 +40000,13 @@ func (t *Join) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Join) AppendAttributedTo(k url.URL) { +func (t *Join) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Join) PrependAttributedTo(k url.URL) { +func (t *Join) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -40037,8 +40037,8 @@ func (t *Join) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Join) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Join) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -40056,13 +40056,13 @@ func (t *Join) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Join) AppendAudience(k url.URL) { +func (t *Join) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Join) PrependAudience(k url.URL) { +func (t *Join) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -40455,8 +40455,8 @@ func (t *Join) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Join) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Join) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -40480,7 +40480,7 @@ func (t *Join) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Join) SetId(k url.URL) { +func (t *Join) SetId(k *url.URL) { t.raw.SetId(k) } @@ -40547,8 +40547,8 @@ func (t *Join) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Join) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Join) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -40566,13 +40566,13 @@ func (t *Join) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Join) AppendInReplyTo(k url.URL) { +func (t *Join) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Join) PrependInReplyTo(k url.URL) { +func (t *Join) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -41047,8 +41047,8 @@ func (t *Join) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Join) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Join) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -41064,13 +41064,13 @@ func (t *Join) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Join) AppendUrl(k url.URL) { +func (t *Join) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Join) PrependUrl(k url.URL) { +func (t *Join) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -41099,8 +41099,8 @@ func (t *Join) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Join) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Join) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -41118,13 +41118,13 @@ func (t *Join) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Join) AppendTo(k url.URL) { +func (t *Join) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Join) PrependTo(k url.URL) { +func (t *Join) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -41155,8 +41155,8 @@ func (t *Join) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Join) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Join) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -41174,13 +41174,13 @@ func (t *Join) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Join) AppendBto(k url.URL) { +func (t *Join) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Join) PrependBto(k url.URL) { +func (t *Join) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -41211,8 +41211,8 @@ func (t *Join) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Join) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Join) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -41230,13 +41230,13 @@ func (t *Join) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Join) AppendCc(k url.URL) { +func (t *Join) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Join) PrependCc(k url.URL) { +func (t *Join) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -41267,8 +41267,8 @@ func (t *Join) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Join) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Join) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -41286,13 +41286,13 @@ func (t *Join) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Join) AppendBcc(k url.URL) { +func (t *Join) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Join) PrependBcc(k url.URL) { +func (t *Join) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -41645,8 +41645,8 @@ func (t *Join) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Join) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Join) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -41660,13 +41660,13 @@ func (t *Join) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Join) AppendStreams(k url.URL) { +func (t *Join) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Join) PrependStreams(k url.URL) { +func (t *Join) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -41763,8 +41763,8 @@ func (t *Join) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Join) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Join) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -41788,13 +41788,13 @@ func (t *Join) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Join) SetProxyUrl(k url.URL) { +func (t *Join) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Join) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Join) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -41818,13 +41818,13 @@ func (t *Join) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Join) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Join) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Join) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Join) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -41848,13 +41848,13 @@ func (t *Join) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Join) SetOauthTokenEndpoint(k url.URL) { +func (t *Join) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Join) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Join) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -41878,13 +41878,13 @@ func (t *Join) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Join) SetProvideClientKey(k url.URL) { +func (t *Join) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Join) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Join) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -41908,13 +41908,13 @@ func (t *Join) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Join) SetSignClientKey(k url.URL) { +func (t *Join) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Join) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Join) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -41938,7 +41938,7 @@ func (t *Join) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Join) SetSharedInbox(k url.URL) { +func (t *Join) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -41967,8 +41967,8 @@ func (t *Leave) LenActor() (idx int) { } -// GetActor attempts to get this 'actor' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Leave) GetActor(idx int) (r Resolution, k url.URL) { +// GetActor attempts to get this 'actor' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Leave) GetActor(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsActorIRI(idx) { @@ -41986,13 +41986,13 @@ func (t *Leave) GetActor(idx int) (r Resolution, k url.URL) { } // AppendActor appends the value for property 'actor'. -func (t *Leave) AppendActor(k url.URL) { +func (t *Leave) AppendActor(k *url.URL) { t.raw.AppendActorIRI(k) } // PrependActor prepends the value for property 'actor'. -func (t *Leave) PrependActor(k url.URL) { +func (t *Leave) PrependActor(k *url.URL) { t.raw.PrependActorIRI(k) } @@ -42075,8 +42075,8 @@ func (t *Leave) LenTarget() (idx int) { } -// GetTarget attempts to get this 'target' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Leave) GetTarget(idx int) (r Resolution, k url.URL) { +// GetTarget attempts to get this 'target' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Leave) GetTarget(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsTargetIRI(idx) { @@ -42094,13 +42094,13 @@ func (t *Leave) GetTarget(idx int) (r Resolution, k url.URL) { } // AppendTarget appends the value for property 'target'. -func (t *Leave) AppendTarget(k url.URL) { +func (t *Leave) AppendTarget(k *url.URL) { t.raw.AppendTargetIRI(k) } // PrependTarget prepends the value for property 'target'. -func (t *Leave) PrependTarget(k url.URL) { +func (t *Leave) PrependTarget(k *url.URL) { t.raw.PrependTargetIRI(k) } @@ -42425,8 +42425,8 @@ func (t *Leave) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Leave) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Leave) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -42444,13 +42444,13 @@ func (t *Leave) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Leave) AppendAttributedTo(k url.URL) { +func (t *Leave) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Leave) PrependAttributedTo(k url.URL) { +func (t *Leave) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -42481,8 +42481,8 @@ func (t *Leave) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Leave) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Leave) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -42500,13 +42500,13 @@ func (t *Leave) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Leave) AppendAudience(k url.URL) { +func (t *Leave) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Leave) PrependAudience(k url.URL) { +func (t *Leave) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -42899,8 +42899,8 @@ func (t *Leave) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Leave) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Leave) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -42924,7 +42924,7 @@ func (t *Leave) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Leave) SetId(k url.URL) { +func (t *Leave) SetId(k *url.URL) { t.raw.SetId(k) } @@ -42991,8 +42991,8 @@ func (t *Leave) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Leave) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Leave) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -43010,13 +43010,13 @@ func (t *Leave) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Leave) AppendInReplyTo(k url.URL) { +func (t *Leave) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Leave) PrependInReplyTo(k url.URL) { +func (t *Leave) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -43491,8 +43491,8 @@ func (t *Leave) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Leave) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Leave) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -43508,13 +43508,13 @@ func (t *Leave) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Leave) AppendUrl(k url.URL) { +func (t *Leave) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Leave) PrependUrl(k url.URL) { +func (t *Leave) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -43543,8 +43543,8 @@ func (t *Leave) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Leave) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Leave) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -43562,13 +43562,13 @@ func (t *Leave) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Leave) AppendTo(k url.URL) { +func (t *Leave) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Leave) PrependTo(k url.URL) { +func (t *Leave) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -43599,8 +43599,8 @@ func (t *Leave) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Leave) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Leave) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -43618,13 +43618,13 @@ func (t *Leave) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Leave) AppendBto(k url.URL) { +func (t *Leave) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Leave) PrependBto(k url.URL) { +func (t *Leave) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -43655,8 +43655,8 @@ func (t *Leave) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Leave) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Leave) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -43674,13 +43674,13 @@ func (t *Leave) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Leave) AppendCc(k url.URL) { +func (t *Leave) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Leave) PrependCc(k url.URL) { +func (t *Leave) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -43711,8 +43711,8 @@ func (t *Leave) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Leave) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Leave) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -43730,13 +43730,13 @@ func (t *Leave) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Leave) AppendBcc(k url.URL) { +func (t *Leave) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Leave) PrependBcc(k url.URL) { +func (t *Leave) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -44089,8 +44089,8 @@ func (t *Leave) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Leave) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Leave) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -44104,13 +44104,13 @@ func (t *Leave) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Leave) AppendStreams(k url.URL) { +func (t *Leave) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Leave) PrependStreams(k url.URL) { +func (t *Leave) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -44207,8 +44207,8 @@ func (t *Leave) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Leave) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Leave) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -44232,13 +44232,13 @@ func (t *Leave) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Leave) SetProxyUrl(k url.URL) { +func (t *Leave) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Leave) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Leave) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -44262,13 +44262,13 @@ func (t *Leave) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Leave) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Leave) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Leave) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Leave) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -44292,13 +44292,13 @@ func (t *Leave) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Leave) SetOauthTokenEndpoint(k url.URL) { +func (t *Leave) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Leave) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Leave) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -44322,13 +44322,13 @@ func (t *Leave) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Leave) SetProvideClientKey(k url.URL) { +func (t *Leave) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Leave) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Leave) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -44352,13 +44352,13 @@ func (t *Leave) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Leave) SetSignClientKey(k url.URL) { +func (t *Leave) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Leave) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Leave) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -44382,7 +44382,7 @@ func (t *Leave) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Leave) SetSharedInbox(k url.URL) { +func (t *Leave) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -44411,8 +44411,8 @@ func (t *Like) LenActor() (idx int) { } -// GetActor attempts to get this 'actor' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Like) GetActor(idx int) (r Resolution, k url.URL) { +// GetActor attempts to get this 'actor' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Like) GetActor(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsActorIRI(idx) { @@ -44430,13 +44430,13 @@ func (t *Like) GetActor(idx int) (r Resolution, k url.URL) { } // AppendActor appends the value for property 'actor'. -func (t *Like) AppendActor(k url.URL) { +func (t *Like) AppendActor(k *url.URL) { t.raw.AppendActorIRI(k) } // PrependActor prepends the value for property 'actor'. -func (t *Like) PrependActor(k url.URL) { +func (t *Like) PrependActor(k *url.URL) { t.raw.PrependActorIRI(k) } @@ -44519,8 +44519,8 @@ func (t *Like) LenTarget() (idx int) { } -// GetTarget attempts to get this 'target' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Like) GetTarget(idx int) (r Resolution, k url.URL) { +// GetTarget attempts to get this 'target' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Like) GetTarget(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsTargetIRI(idx) { @@ -44538,13 +44538,13 @@ func (t *Like) GetTarget(idx int) (r Resolution, k url.URL) { } // AppendTarget appends the value for property 'target'. -func (t *Like) AppendTarget(k url.URL) { +func (t *Like) AppendTarget(k *url.URL) { t.raw.AppendTargetIRI(k) } // PrependTarget prepends the value for property 'target'. -func (t *Like) PrependTarget(k url.URL) { +func (t *Like) PrependTarget(k *url.URL) { t.raw.PrependTargetIRI(k) } @@ -44869,8 +44869,8 @@ func (t *Like) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Like) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Like) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -44888,13 +44888,13 @@ func (t *Like) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Like) AppendAttributedTo(k url.URL) { +func (t *Like) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Like) PrependAttributedTo(k url.URL) { +func (t *Like) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -44925,8 +44925,8 @@ func (t *Like) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Like) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Like) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -44944,13 +44944,13 @@ func (t *Like) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Like) AppendAudience(k url.URL) { +func (t *Like) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Like) PrependAudience(k url.URL) { +func (t *Like) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -45343,8 +45343,8 @@ func (t *Like) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Like) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Like) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -45368,7 +45368,7 @@ func (t *Like) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Like) SetId(k url.URL) { +func (t *Like) SetId(k *url.URL) { t.raw.SetId(k) } @@ -45435,8 +45435,8 @@ func (t *Like) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Like) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Like) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -45454,13 +45454,13 @@ func (t *Like) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Like) AppendInReplyTo(k url.URL) { +func (t *Like) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Like) PrependInReplyTo(k url.URL) { +func (t *Like) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -45935,8 +45935,8 @@ func (t *Like) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Like) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Like) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -45952,13 +45952,13 @@ func (t *Like) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Like) AppendUrl(k url.URL) { +func (t *Like) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Like) PrependUrl(k url.URL) { +func (t *Like) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -45987,8 +45987,8 @@ func (t *Like) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Like) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Like) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -46006,13 +46006,13 @@ func (t *Like) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Like) AppendTo(k url.URL) { +func (t *Like) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Like) PrependTo(k url.URL) { +func (t *Like) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -46043,8 +46043,8 @@ func (t *Like) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Like) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Like) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -46062,13 +46062,13 @@ func (t *Like) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Like) AppendBto(k url.URL) { +func (t *Like) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Like) PrependBto(k url.URL) { +func (t *Like) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -46099,8 +46099,8 @@ func (t *Like) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Like) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Like) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -46118,13 +46118,13 @@ func (t *Like) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Like) AppendCc(k url.URL) { +func (t *Like) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Like) PrependCc(k url.URL) { +func (t *Like) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -46155,8 +46155,8 @@ func (t *Like) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Like) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Like) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -46174,13 +46174,13 @@ func (t *Like) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Like) AppendBcc(k url.URL) { +func (t *Like) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Like) PrependBcc(k url.URL) { +func (t *Like) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -46533,8 +46533,8 @@ func (t *Like) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Like) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Like) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -46548,13 +46548,13 @@ func (t *Like) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Like) AppendStreams(k url.URL) { +func (t *Like) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Like) PrependStreams(k url.URL) { +func (t *Like) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -46651,8 +46651,8 @@ func (t *Like) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Like) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Like) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -46676,13 +46676,13 @@ func (t *Like) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Like) SetProxyUrl(k url.URL) { +func (t *Like) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Like) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Like) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -46706,13 +46706,13 @@ func (t *Like) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Like) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Like) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Like) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Like) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -46736,13 +46736,13 @@ func (t *Like) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Like) SetOauthTokenEndpoint(k url.URL) { +func (t *Like) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Like) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Like) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -46766,13 +46766,13 @@ func (t *Like) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Like) SetProvideClientKey(k url.URL) { +func (t *Like) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Like) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Like) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -46796,13 +46796,13 @@ func (t *Like) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Like) SetSignClientKey(k url.URL) { +func (t *Like) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Like) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Like) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -46826,7 +46826,7 @@ func (t *Like) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Like) SetSharedInbox(k url.URL) { +func (t *Like) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -46855,8 +46855,8 @@ func (t *Offer) LenActor() (idx int) { } -// GetActor attempts to get this 'actor' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Offer) GetActor(idx int) (r Resolution, k url.URL) { +// GetActor attempts to get this 'actor' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Offer) GetActor(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsActorIRI(idx) { @@ -46874,13 +46874,13 @@ func (t *Offer) GetActor(idx int) (r Resolution, k url.URL) { } // AppendActor appends the value for property 'actor'. -func (t *Offer) AppendActor(k url.URL) { +func (t *Offer) AppendActor(k *url.URL) { t.raw.AppendActorIRI(k) } // PrependActor prepends the value for property 'actor'. -func (t *Offer) PrependActor(k url.URL) { +func (t *Offer) PrependActor(k *url.URL) { t.raw.PrependActorIRI(k) } @@ -46963,8 +46963,8 @@ func (t *Offer) LenTarget() (idx int) { } -// GetTarget attempts to get this 'target' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Offer) GetTarget(idx int) (r Resolution, k url.URL) { +// GetTarget attempts to get this 'target' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Offer) GetTarget(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsTargetIRI(idx) { @@ -46982,13 +46982,13 @@ func (t *Offer) GetTarget(idx int) (r Resolution, k url.URL) { } // AppendTarget appends the value for property 'target'. -func (t *Offer) AppendTarget(k url.URL) { +func (t *Offer) AppendTarget(k *url.URL) { t.raw.AppendTargetIRI(k) } // PrependTarget prepends the value for property 'target'. -func (t *Offer) PrependTarget(k url.URL) { +func (t *Offer) PrependTarget(k *url.URL) { t.raw.PrependTargetIRI(k) } @@ -47313,8 +47313,8 @@ func (t *Offer) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Offer) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Offer) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -47332,13 +47332,13 @@ func (t *Offer) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Offer) AppendAttributedTo(k url.URL) { +func (t *Offer) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Offer) PrependAttributedTo(k url.URL) { +func (t *Offer) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -47369,8 +47369,8 @@ func (t *Offer) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Offer) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Offer) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -47388,13 +47388,13 @@ func (t *Offer) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Offer) AppendAudience(k url.URL) { +func (t *Offer) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Offer) PrependAudience(k url.URL) { +func (t *Offer) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -47787,8 +47787,8 @@ func (t *Offer) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Offer) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Offer) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -47812,7 +47812,7 @@ func (t *Offer) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Offer) SetId(k url.URL) { +func (t *Offer) SetId(k *url.URL) { t.raw.SetId(k) } @@ -47879,8 +47879,8 @@ func (t *Offer) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Offer) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Offer) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -47898,13 +47898,13 @@ func (t *Offer) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Offer) AppendInReplyTo(k url.URL) { +func (t *Offer) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Offer) PrependInReplyTo(k url.URL) { +func (t *Offer) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -48379,8 +48379,8 @@ func (t *Offer) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Offer) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Offer) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -48396,13 +48396,13 @@ func (t *Offer) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Offer) AppendUrl(k url.URL) { +func (t *Offer) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Offer) PrependUrl(k url.URL) { +func (t *Offer) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -48431,8 +48431,8 @@ func (t *Offer) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Offer) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Offer) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -48450,13 +48450,13 @@ func (t *Offer) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Offer) AppendTo(k url.URL) { +func (t *Offer) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Offer) PrependTo(k url.URL) { +func (t *Offer) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -48487,8 +48487,8 @@ func (t *Offer) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Offer) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Offer) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -48506,13 +48506,13 @@ func (t *Offer) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Offer) AppendBto(k url.URL) { +func (t *Offer) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Offer) PrependBto(k url.URL) { +func (t *Offer) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -48543,8 +48543,8 @@ func (t *Offer) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Offer) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Offer) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -48562,13 +48562,13 @@ func (t *Offer) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Offer) AppendCc(k url.URL) { +func (t *Offer) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Offer) PrependCc(k url.URL) { +func (t *Offer) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -48599,8 +48599,8 @@ func (t *Offer) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Offer) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Offer) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -48618,13 +48618,13 @@ func (t *Offer) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Offer) AppendBcc(k url.URL) { +func (t *Offer) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Offer) PrependBcc(k url.URL) { +func (t *Offer) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -48977,8 +48977,8 @@ func (t *Offer) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Offer) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Offer) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -48992,13 +48992,13 @@ func (t *Offer) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Offer) AppendStreams(k url.URL) { +func (t *Offer) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Offer) PrependStreams(k url.URL) { +func (t *Offer) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -49095,8 +49095,8 @@ func (t *Offer) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Offer) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Offer) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -49120,13 +49120,13 @@ func (t *Offer) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Offer) SetProxyUrl(k url.URL) { +func (t *Offer) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Offer) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Offer) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -49150,13 +49150,13 @@ func (t *Offer) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Offer) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Offer) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Offer) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Offer) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -49180,13 +49180,13 @@ func (t *Offer) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Offer) SetOauthTokenEndpoint(k url.URL) { +func (t *Offer) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Offer) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Offer) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -49210,13 +49210,13 @@ func (t *Offer) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Offer) SetProvideClientKey(k url.URL) { +func (t *Offer) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Offer) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Offer) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -49240,13 +49240,13 @@ func (t *Offer) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Offer) SetSignClientKey(k url.URL) { +func (t *Offer) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Offer) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Offer) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -49270,7 +49270,7 @@ func (t *Offer) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Offer) SetSharedInbox(k url.URL) { +func (t *Offer) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -49299,8 +49299,8 @@ func (t *Invite) LenActor() (idx int) { } -// GetActor attempts to get this 'actor' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Invite) GetActor(idx int) (r Resolution, k url.URL) { +// GetActor attempts to get this 'actor' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Invite) GetActor(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsActorIRI(idx) { @@ -49318,13 +49318,13 @@ func (t *Invite) GetActor(idx int) (r Resolution, k url.URL) { } // AppendActor appends the value for property 'actor'. -func (t *Invite) AppendActor(k url.URL) { +func (t *Invite) AppendActor(k *url.URL) { t.raw.AppendActorIRI(k) } // PrependActor prepends the value for property 'actor'. -func (t *Invite) PrependActor(k url.URL) { +func (t *Invite) PrependActor(k *url.URL) { t.raw.PrependActorIRI(k) } @@ -49407,8 +49407,8 @@ func (t *Invite) LenTarget() (idx int) { } -// GetTarget attempts to get this 'target' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Invite) GetTarget(idx int) (r Resolution, k url.URL) { +// GetTarget attempts to get this 'target' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Invite) GetTarget(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsTargetIRI(idx) { @@ -49426,13 +49426,13 @@ func (t *Invite) GetTarget(idx int) (r Resolution, k url.URL) { } // AppendTarget appends the value for property 'target'. -func (t *Invite) AppendTarget(k url.URL) { +func (t *Invite) AppendTarget(k *url.URL) { t.raw.AppendTargetIRI(k) } // PrependTarget prepends the value for property 'target'. -func (t *Invite) PrependTarget(k url.URL) { +func (t *Invite) PrependTarget(k *url.URL) { t.raw.PrependTargetIRI(k) } @@ -49757,8 +49757,8 @@ func (t *Invite) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Invite) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Invite) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -49776,13 +49776,13 @@ func (t *Invite) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Invite) AppendAttributedTo(k url.URL) { +func (t *Invite) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Invite) PrependAttributedTo(k url.URL) { +func (t *Invite) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -49813,8 +49813,8 @@ func (t *Invite) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Invite) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Invite) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -49832,13 +49832,13 @@ func (t *Invite) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Invite) AppendAudience(k url.URL) { +func (t *Invite) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Invite) PrependAudience(k url.URL) { +func (t *Invite) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -50231,8 +50231,8 @@ func (t *Invite) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Invite) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Invite) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -50256,7 +50256,7 @@ func (t *Invite) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Invite) SetId(k url.URL) { +func (t *Invite) SetId(k *url.URL) { t.raw.SetId(k) } @@ -50323,8 +50323,8 @@ func (t *Invite) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Invite) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Invite) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -50342,13 +50342,13 @@ func (t *Invite) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Invite) AppendInReplyTo(k url.URL) { +func (t *Invite) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Invite) PrependInReplyTo(k url.URL) { +func (t *Invite) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -50823,8 +50823,8 @@ func (t *Invite) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Invite) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Invite) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -50840,13 +50840,13 @@ func (t *Invite) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Invite) AppendUrl(k url.URL) { +func (t *Invite) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Invite) PrependUrl(k url.URL) { +func (t *Invite) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -50875,8 +50875,8 @@ func (t *Invite) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Invite) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Invite) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -50894,13 +50894,13 @@ func (t *Invite) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Invite) AppendTo(k url.URL) { +func (t *Invite) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Invite) PrependTo(k url.URL) { +func (t *Invite) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -50931,8 +50931,8 @@ func (t *Invite) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Invite) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Invite) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -50950,13 +50950,13 @@ func (t *Invite) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Invite) AppendBto(k url.URL) { +func (t *Invite) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Invite) PrependBto(k url.URL) { +func (t *Invite) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -50987,8 +50987,8 @@ func (t *Invite) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Invite) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Invite) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -51006,13 +51006,13 @@ func (t *Invite) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Invite) AppendCc(k url.URL) { +func (t *Invite) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Invite) PrependCc(k url.URL) { +func (t *Invite) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -51043,8 +51043,8 @@ func (t *Invite) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Invite) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Invite) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -51062,13 +51062,13 @@ func (t *Invite) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Invite) AppendBcc(k url.URL) { +func (t *Invite) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Invite) PrependBcc(k url.URL) { +func (t *Invite) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -51421,8 +51421,8 @@ func (t *Invite) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Invite) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Invite) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -51436,13 +51436,13 @@ func (t *Invite) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Invite) AppendStreams(k url.URL) { +func (t *Invite) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Invite) PrependStreams(k url.URL) { +func (t *Invite) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -51539,8 +51539,8 @@ func (t *Invite) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Invite) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Invite) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -51564,13 +51564,13 @@ func (t *Invite) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Invite) SetProxyUrl(k url.URL) { +func (t *Invite) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Invite) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Invite) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -51594,13 +51594,13 @@ func (t *Invite) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Invite) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Invite) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Invite) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Invite) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -51624,13 +51624,13 @@ func (t *Invite) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Invite) SetOauthTokenEndpoint(k url.URL) { +func (t *Invite) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Invite) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Invite) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -51654,13 +51654,13 @@ func (t *Invite) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Invite) SetProvideClientKey(k url.URL) { +func (t *Invite) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Invite) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Invite) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -51684,13 +51684,13 @@ func (t *Invite) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Invite) SetSignClientKey(k url.URL) { +func (t *Invite) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Invite) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Invite) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -51714,7 +51714,7 @@ func (t *Invite) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Invite) SetSharedInbox(k url.URL) { +func (t *Invite) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -51743,8 +51743,8 @@ func (t *Reject) LenActor() (idx int) { } -// GetActor attempts to get this 'actor' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Reject) GetActor(idx int) (r Resolution, k url.URL) { +// GetActor attempts to get this 'actor' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Reject) GetActor(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsActorIRI(idx) { @@ -51762,13 +51762,13 @@ func (t *Reject) GetActor(idx int) (r Resolution, k url.URL) { } // AppendActor appends the value for property 'actor'. -func (t *Reject) AppendActor(k url.URL) { +func (t *Reject) AppendActor(k *url.URL) { t.raw.AppendActorIRI(k) } // PrependActor prepends the value for property 'actor'. -func (t *Reject) PrependActor(k url.URL) { +func (t *Reject) PrependActor(k *url.URL) { t.raw.PrependActorIRI(k) } @@ -51851,8 +51851,8 @@ func (t *Reject) LenTarget() (idx int) { } -// GetTarget attempts to get this 'target' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Reject) GetTarget(idx int) (r Resolution, k url.URL) { +// GetTarget attempts to get this 'target' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Reject) GetTarget(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsTargetIRI(idx) { @@ -51870,13 +51870,13 @@ func (t *Reject) GetTarget(idx int) (r Resolution, k url.URL) { } // AppendTarget appends the value for property 'target'. -func (t *Reject) AppendTarget(k url.URL) { +func (t *Reject) AppendTarget(k *url.URL) { t.raw.AppendTargetIRI(k) } // PrependTarget prepends the value for property 'target'. -func (t *Reject) PrependTarget(k url.URL) { +func (t *Reject) PrependTarget(k *url.URL) { t.raw.PrependTargetIRI(k) } @@ -52201,8 +52201,8 @@ func (t *Reject) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Reject) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Reject) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -52220,13 +52220,13 @@ func (t *Reject) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Reject) AppendAttributedTo(k url.URL) { +func (t *Reject) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Reject) PrependAttributedTo(k url.URL) { +func (t *Reject) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -52257,8 +52257,8 @@ func (t *Reject) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Reject) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Reject) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -52276,13 +52276,13 @@ func (t *Reject) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Reject) AppendAudience(k url.URL) { +func (t *Reject) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Reject) PrependAudience(k url.URL) { +func (t *Reject) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -52675,8 +52675,8 @@ func (t *Reject) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Reject) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Reject) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -52700,7 +52700,7 @@ func (t *Reject) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Reject) SetId(k url.URL) { +func (t *Reject) SetId(k *url.URL) { t.raw.SetId(k) } @@ -52767,8 +52767,8 @@ func (t *Reject) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Reject) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Reject) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -52786,13 +52786,13 @@ func (t *Reject) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Reject) AppendInReplyTo(k url.URL) { +func (t *Reject) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Reject) PrependInReplyTo(k url.URL) { +func (t *Reject) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -53267,8 +53267,8 @@ func (t *Reject) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Reject) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Reject) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -53284,13 +53284,13 @@ func (t *Reject) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Reject) AppendUrl(k url.URL) { +func (t *Reject) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Reject) PrependUrl(k url.URL) { +func (t *Reject) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -53319,8 +53319,8 @@ func (t *Reject) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Reject) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Reject) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -53338,13 +53338,13 @@ func (t *Reject) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Reject) AppendTo(k url.URL) { +func (t *Reject) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Reject) PrependTo(k url.URL) { +func (t *Reject) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -53375,8 +53375,8 @@ func (t *Reject) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Reject) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Reject) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -53394,13 +53394,13 @@ func (t *Reject) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Reject) AppendBto(k url.URL) { +func (t *Reject) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Reject) PrependBto(k url.URL) { +func (t *Reject) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -53431,8 +53431,8 @@ func (t *Reject) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Reject) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Reject) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -53450,13 +53450,13 @@ func (t *Reject) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Reject) AppendCc(k url.URL) { +func (t *Reject) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Reject) PrependCc(k url.URL) { +func (t *Reject) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -53487,8 +53487,8 @@ func (t *Reject) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Reject) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Reject) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -53506,13 +53506,13 @@ func (t *Reject) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Reject) AppendBcc(k url.URL) { +func (t *Reject) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Reject) PrependBcc(k url.URL) { +func (t *Reject) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -53865,8 +53865,8 @@ func (t *Reject) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Reject) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Reject) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -53880,13 +53880,13 @@ func (t *Reject) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Reject) AppendStreams(k url.URL) { +func (t *Reject) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Reject) PrependStreams(k url.URL) { +func (t *Reject) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -53983,8 +53983,8 @@ func (t *Reject) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Reject) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Reject) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -54008,13 +54008,13 @@ func (t *Reject) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Reject) SetProxyUrl(k url.URL) { +func (t *Reject) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Reject) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Reject) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -54038,13 +54038,13 @@ func (t *Reject) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Reject) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Reject) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Reject) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Reject) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -54068,13 +54068,13 @@ func (t *Reject) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Reject) SetOauthTokenEndpoint(k url.URL) { +func (t *Reject) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Reject) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Reject) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -54098,13 +54098,13 @@ func (t *Reject) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Reject) SetProvideClientKey(k url.URL) { +func (t *Reject) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Reject) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Reject) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -54128,13 +54128,13 @@ func (t *Reject) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Reject) SetSignClientKey(k url.URL) { +func (t *Reject) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Reject) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Reject) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -54158,7 +54158,7 @@ func (t *Reject) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Reject) SetSharedInbox(k url.URL) { +func (t *Reject) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -54187,8 +54187,8 @@ func (t *TentativeReject) LenActor() (idx int) { } -// GetActor attempts to get this 'actor' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeReject) GetActor(idx int) (r Resolution, k url.URL) { +// GetActor attempts to get this 'actor' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeReject) GetActor(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsActorIRI(idx) { @@ -54206,13 +54206,13 @@ func (t *TentativeReject) GetActor(idx int) (r Resolution, k url.URL) { } // AppendActor appends the value for property 'actor'. -func (t *TentativeReject) AppendActor(k url.URL) { +func (t *TentativeReject) AppendActor(k *url.URL) { t.raw.AppendActorIRI(k) } // PrependActor prepends the value for property 'actor'. -func (t *TentativeReject) PrependActor(k url.URL) { +func (t *TentativeReject) PrependActor(k *url.URL) { t.raw.PrependActorIRI(k) } @@ -54295,8 +54295,8 @@ func (t *TentativeReject) LenTarget() (idx int) { } -// GetTarget attempts to get this 'target' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeReject) GetTarget(idx int) (r Resolution, k url.URL) { +// GetTarget attempts to get this 'target' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeReject) GetTarget(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsTargetIRI(idx) { @@ -54314,13 +54314,13 @@ func (t *TentativeReject) GetTarget(idx int) (r Resolution, k url.URL) { } // AppendTarget appends the value for property 'target'. -func (t *TentativeReject) AppendTarget(k url.URL) { +func (t *TentativeReject) AppendTarget(k *url.URL) { t.raw.AppendTargetIRI(k) } // PrependTarget prepends the value for property 'target'. -func (t *TentativeReject) PrependTarget(k url.URL) { +func (t *TentativeReject) PrependTarget(k *url.URL) { t.raw.PrependTargetIRI(k) } @@ -54645,8 +54645,8 @@ func (t *TentativeReject) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeReject) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeReject) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -54664,13 +54664,13 @@ func (t *TentativeReject) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *TentativeReject) AppendAttributedTo(k url.URL) { +func (t *TentativeReject) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *TentativeReject) PrependAttributedTo(k url.URL) { +func (t *TentativeReject) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -54701,8 +54701,8 @@ func (t *TentativeReject) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeReject) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeReject) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -54720,13 +54720,13 @@ func (t *TentativeReject) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *TentativeReject) AppendAudience(k url.URL) { +func (t *TentativeReject) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *TentativeReject) PrependAudience(k url.URL) { +func (t *TentativeReject) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -55119,8 +55119,8 @@ func (t *TentativeReject) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeReject) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeReject) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -55144,7 +55144,7 @@ func (t *TentativeReject) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *TentativeReject) SetId(k url.URL) { +func (t *TentativeReject) SetId(k *url.URL) { t.raw.SetId(k) } @@ -55211,8 +55211,8 @@ func (t *TentativeReject) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeReject) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeReject) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -55230,13 +55230,13 @@ func (t *TentativeReject) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *TentativeReject) AppendInReplyTo(k url.URL) { +func (t *TentativeReject) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *TentativeReject) PrependInReplyTo(k url.URL) { +func (t *TentativeReject) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -55711,8 +55711,8 @@ func (t *TentativeReject) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeReject) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeReject) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -55728,13 +55728,13 @@ func (t *TentativeReject) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *TentativeReject) AppendUrl(k url.URL) { +func (t *TentativeReject) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *TentativeReject) PrependUrl(k url.URL) { +func (t *TentativeReject) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -55763,8 +55763,8 @@ func (t *TentativeReject) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeReject) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeReject) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -55782,13 +55782,13 @@ func (t *TentativeReject) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *TentativeReject) AppendTo(k url.URL) { +func (t *TentativeReject) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *TentativeReject) PrependTo(k url.URL) { +func (t *TentativeReject) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -55819,8 +55819,8 @@ func (t *TentativeReject) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeReject) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeReject) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -55838,13 +55838,13 @@ func (t *TentativeReject) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *TentativeReject) AppendBto(k url.URL) { +func (t *TentativeReject) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *TentativeReject) PrependBto(k url.URL) { +func (t *TentativeReject) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -55875,8 +55875,8 @@ func (t *TentativeReject) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeReject) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeReject) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -55894,13 +55894,13 @@ func (t *TentativeReject) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *TentativeReject) AppendCc(k url.URL) { +func (t *TentativeReject) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *TentativeReject) PrependCc(k url.URL) { +func (t *TentativeReject) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -55931,8 +55931,8 @@ func (t *TentativeReject) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeReject) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeReject) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -55950,13 +55950,13 @@ func (t *TentativeReject) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *TentativeReject) AppendBcc(k url.URL) { +func (t *TentativeReject) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *TentativeReject) PrependBcc(k url.URL) { +func (t *TentativeReject) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -56309,8 +56309,8 @@ func (t *TentativeReject) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeReject) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeReject) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -56324,13 +56324,13 @@ func (t *TentativeReject) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *TentativeReject) AppendStreams(k url.URL) { +func (t *TentativeReject) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *TentativeReject) PrependStreams(k url.URL) { +func (t *TentativeReject) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -56427,8 +56427,8 @@ func (t *TentativeReject) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeReject) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeReject) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -56452,13 +56452,13 @@ func (t *TentativeReject) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *TentativeReject) SetProxyUrl(k url.URL) { +func (t *TentativeReject) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeReject) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeReject) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -56482,13 +56482,13 @@ func (t *TentativeReject) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *TentativeReject) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *TentativeReject) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeReject) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeReject) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -56512,13 +56512,13 @@ func (t *TentativeReject) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *TentativeReject) SetOauthTokenEndpoint(k url.URL) { +func (t *TentativeReject) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeReject) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeReject) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -56542,13 +56542,13 @@ func (t *TentativeReject) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *TentativeReject) SetProvideClientKey(k url.URL) { +func (t *TentativeReject) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeReject) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeReject) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -56572,13 +56572,13 @@ func (t *TentativeReject) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *TentativeReject) SetSignClientKey(k url.URL) { +func (t *TentativeReject) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *TentativeReject) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *TentativeReject) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -56602,7 +56602,7 @@ func (t *TentativeReject) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *TentativeReject) SetSharedInbox(k url.URL) { +func (t *TentativeReject) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -56631,8 +56631,8 @@ func (t *Remove) LenActor() (idx int) { } -// GetActor attempts to get this 'actor' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Remove) GetActor(idx int) (r Resolution, k url.URL) { +// GetActor attempts to get this 'actor' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Remove) GetActor(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsActorIRI(idx) { @@ -56650,13 +56650,13 @@ func (t *Remove) GetActor(idx int) (r Resolution, k url.URL) { } // AppendActor appends the value for property 'actor'. -func (t *Remove) AppendActor(k url.URL) { +func (t *Remove) AppendActor(k *url.URL) { t.raw.AppendActorIRI(k) } // PrependActor prepends the value for property 'actor'. -func (t *Remove) PrependActor(k url.URL) { +func (t *Remove) PrependActor(k *url.URL) { t.raw.PrependActorIRI(k) } @@ -56739,8 +56739,8 @@ func (t *Remove) LenTarget() (idx int) { } -// GetTarget attempts to get this 'target' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Remove) GetTarget(idx int) (r Resolution, k url.URL) { +// GetTarget attempts to get this 'target' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Remove) GetTarget(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsTargetIRI(idx) { @@ -56758,13 +56758,13 @@ func (t *Remove) GetTarget(idx int) (r Resolution, k url.URL) { } // AppendTarget appends the value for property 'target'. -func (t *Remove) AppendTarget(k url.URL) { +func (t *Remove) AppendTarget(k *url.URL) { t.raw.AppendTargetIRI(k) } // PrependTarget prepends the value for property 'target'. -func (t *Remove) PrependTarget(k url.URL) { +func (t *Remove) PrependTarget(k *url.URL) { t.raw.PrependTargetIRI(k) } @@ -57089,8 +57089,8 @@ func (t *Remove) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Remove) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Remove) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -57108,13 +57108,13 @@ func (t *Remove) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Remove) AppendAttributedTo(k url.URL) { +func (t *Remove) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Remove) PrependAttributedTo(k url.URL) { +func (t *Remove) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -57145,8 +57145,8 @@ func (t *Remove) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Remove) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Remove) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -57164,13 +57164,13 @@ func (t *Remove) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Remove) AppendAudience(k url.URL) { +func (t *Remove) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Remove) PrependAudience(k url.URL) { +func (t *Remove) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -57563,8 +57563,8 @@ func (t *Remove) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Remove) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Remove) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -57588,7 +57588,7 @@ func (t *Remove) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Remove) SetId(k url.URL) { +func (t *Remove) SetId(k *url.URL) { t.raw.SetId(k) } @@ -57655,8 +57655,8 @@ func (t *Remove) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Remove) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Remove) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -57674,13 +57674,13 @@ func (t *Remove) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Remove) AppendInReplyTo(k url.URL) { +func (t *Remove) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Remove) PrependInReplyTo(k url.URL) { +func (t *Remove) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -58155,8 +58155,8 @@ func (t *Remove) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Remove) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Remove) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -58172,13 +58172,13 @@ func (t *Remove) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Remove) AppendUrl(k url.URL) { +func (t *Remove) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Remove) PrependUrl(k url.URL) { +func (t *Remove) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -58207,8 +58207,8 @@ func (t *Remove) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Remove) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Remove) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -58226,13 +58226,13 @@ func (t *Remove) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Remove) AppendTo(k url.URL) { +func (t *Remove) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Remove) PrependTo(k url.URL) { +func (t *Remove) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -58263,8 +58263,8 @@ func (t *Remove) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Remove) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Remove) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -58282,13 +58282,13 @@ func (t *Remove) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Remove) AppendBto(k url.URL) { +func (t *Remove) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Remove) PrependBto(k url.URL) { +func (t *Remove) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -58319,8 +58319,8 @@ func (t *Remove) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Remove) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Remove) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -58338,13 +58338,13 @@ func (t *Remove) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Remove) AppendCc(k url.URL) { +func (t *Remove) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Remove) PrependCc(k url.URL) { +func (t *Remove) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -58375,8 +58375,8 @@ func (t *Remove) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Remove) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Remove) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -58394,13 +58394,13 @@ func (t *Remove) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Remove) AppendBcc(k url.URL) { +func (t *Remove) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Remove) PrependBcc(k url.URL) { +func (t *Remove) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -58753,8 +58753,8 @@ func (t *Remove) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Remove) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Remove) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -58768,13 +58768,13 @@ func (t *Remove) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Remove) AppendStreams(k url.URL) { +func (t *Remove) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Remove) PrependStreams(k url.URL) { +func (t *Remove) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -58871,8 +58871,8 @@ func (t *Remove) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Remove) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Remove) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -58896,13 +58896,13 @@ func (t *Remove) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Remove) SetProxyUrl(k url.URL) { +func (t *Remove) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Remove) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Remove) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -58926,13 +58926,13 @@ func (t *Remove) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Remove) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Remove) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Remove) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Remove) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -58956,13 +58956,13 @@ func (t *Remove) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Remove) SetOauthTokenEndpoint(k url.URL) { +func (t *Remove) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Remove) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Remove) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -58986,13 +58986,13 @@ func (t *Remove) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Remove) SetProvideClientKey(k url.URL) { +func (t *Remove) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Remove) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Remove) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -59016,13 +59016,13 @@ func (t *Remove) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Remove) SetSignClientKey(k url.URL) { +func (t *Remove) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Remove) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Remove) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -59046,7 +59046,7 @@ func (t *Remove) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Remove) SetSharedInbox(k url.URL) { +func (t *Remove) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -59075,8 +59075,8 @@ func (t *Undo) LenActor() (idx int) { } -// GetActor attempts to get this 'actor' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Undo) GetActor(idx int) (r Resolution, k url.URL) { +// GetActor attempts to get this 'actor' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Undo) GetActor(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsActorIRI(idx) { @@ -59094,13 +59094,13 @@ func (t *Undo) GetActor(idx int) (r Resolution, k url.URL) { } // AppendActor appends the value for property 'actor'. -func (t *Undo) AppendActor(k url.URL) { +func (t *Undo) AppendActor(k *url.URL) { t.raw.AppendActorIRI(k) } // PrependActor prepends the value for property 'actor'. -func (t *Undo) PrependActor(k url.URL) { +func (t *Undo) PrependActor(k *url.URL) { t.raw.PrependActorIRI(k) } @@ -59183,8 +59183,8 @@ func (t *Undo) LenTarget() (idx int) { } -// GetTarget attempts to get this 'target' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Undo) GetTarget(idx int) (r Resolution, k url.URL) { +// GetTarget attempts to get this 'target' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Undo) GetTarget(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsTargetIRI(idx) { @@ -59202,13 +59202,13 @@ func (t *Undo) GetTarget(idx int) (r Resolution, k url.URL) { } // AppendTarget appends the value for property 'target'. -func (t *Undo) AppendTarget(k url.URL) { +func (t *Undo) AppendTarget(k *url.URL) { t.raw.AppendTargetIRI(k) } // PrependTarget prepends the value for property 'target'. -func (t *Undo) PrependTarget(k url.URL) { +func (t *Undo) PrependTarget(k *url.URL) { t.raw.PrependTargetIRI(k) } @@ -59533,8 +59533,8 @@ func (t *Undo) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Undo) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Undo) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -59552,13 +59552,13 @@ func (t *Undo) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Undo) AppendAttributedTo(k url.URL) { +func (t *Undo) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Undo) PrependAttributedTo(k url.URL) { +func (t *Undo) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -59589,8 +59589,8 @@ func (t *Undo) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Undo) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Undo) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -59608,13 +59608,13 @@ func (t *Undo) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Undo) AppendAudience(k url.URL) { +func (t *Undo) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Undo) PrependAudience(k url.URL) { +func (t *Undo) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -60007,8 +60007,8 @@ func (t *Undo) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Undo) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Undo) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -60032,7 +60032,7 @@ func (t *Undo) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Undo) SetId(k url.URL) { +func (t *Undo) SetId(k *url.URL) { t.raw.SetId(k) } @@ -60099,8 +60099,8 @@ func (t *Undo) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Undo) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Undo) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -60118,13 +60118,13 @@ func (t *Undo) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Undo) AppendInReplyTo(k url.URL) { +func (t *Undo) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Undo) PrependInReplyTo(k url.URL) { +func (t *Undo) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -60599,8 +60599,8 @@ func (t *Undo) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Undo) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Undo) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -60616,13 +60616,13 @@ func (t *Undo) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Undo) AppendUrl(k url.URL) { +func (t *Undo) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Undo) PrependUrl(k url.URL) { +func (t *Undo) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -60651,8 +60651,8 @@ func (t *Undo) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Undo) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Undo) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -60670,13 +60670,13 @@ func (t *Undo) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Undo) AppendTo(k url.URL) { +func (t *Undo) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Undo) PrependTo(k url.URL) { +func (t *Undo) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -60707,8 +60707,8 @@ func (t *Undo) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Undo) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Undo) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -60726,13 +60726,13 @@ func (t *Undo) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Undo) AppendBto(k url.URL) { +func (t *Undo) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Undo) PrependBto(k url.URL) { +func (t *Undo) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -60763,8 +60763,8 @@ func (t *Undo) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Undo) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Undo) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -60782,13 +60782,13 @@ func (t *Undo) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Undo) AppendCc(k url.URL) { +func (t *Undo) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Undo) PrependCc(k url.URL) { +func (t *Undo) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -60819,8 +60819,8 @@ func (t *Undo) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Undo) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Undo) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -60838,13 +60838,13 @@ func (t *Undo) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Undo) AppendBcc(k url.URL) { +func (t *Undo) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Undo) PrependBcc(k url.URL) { +func (t *Undo) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -61197,8 +61197,8 @@ func (t *Undo) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Undo) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Undo) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -61212,13 +61212,13 @@ func (t *Undo) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Undo) AppendStreams(k url.URL) { +func (t *Undo) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Undo) PrependStreams(k url.URL) { +func (t *Undo) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -61315,8 +61315,8 @@ func (t *Undo) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Undo) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Undo) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -61340,13 +61340,13 @@ func (t *Undo) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Undo) SetProxyUrl(k url.URL) { +func (t *Undo) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Undo) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Undo) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -61370,13 +61370,13 @@ func (t *Undo) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Undo) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Undo) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Undo) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Undo) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -61400,13 +61400,13 @@ func (t *Undo) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Undo) SetOauthTokenEndpoint(k url.URL) { +func (t *Undo) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Undo) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Undo) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -61430,13 +61430,13 @@ func (t *Undo) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Undo) SetProvideClientKey(k url.URL) { +func (t *Undo) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Undo) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Undo) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -61460,13 +61460,13 @@ func (t *Undo) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Undo) SetSignClientKey(k url.URL) { +func (t *Undo) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Undo) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Undo) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -61490,7 +61490,7 @@ func (t *Undo) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Undo) SetSharedInbox(k url.URL) { +func (t *Undo) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -61519,8 +61519,8 @@ func (t *Update) LenActor() (idx int) { } -// GetActor attempts to get this 'actor' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Update) GetActor(idx int) (r Resolution, k url.URL) { +// GetActor attempts to get this 'actor' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Update) GetActor(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsActorIRI(idx) { @@ -61538,13 +61538,13 @@ func (t *Update) GetActor(idx int) (r Resolution, k url.URL) { } // AppendActor appends the value for property 'actor'. -func (t *Update) AppendActor(k url.URL) { +func (t *Update) AppendActor(k *url.URL) { t.raw.AppendActorIRI(k) } // PrependActor prepends the value for property 'actor'. -func (t *Update) PrependActor(k url.URL) { +func (t *Update) PrependActor(k *url.URL) { t.raw.PrependActorIRI(k) } @@ -61627,8 +61627,8 @@ func (t *Update) LenTarget() (idx int) { } -// GetTarget attempts to get this 'target' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Update) GetTarget(idx int) (r Resolution, k url.URL) { +// GetTarget attempts to get this 'target' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Update) GetTarget(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsTargetIRI(idx) { @@ -61646,13 +61646,13 @@ func (t *Update) GetTarget(idx int) (r Resolution, k url.URL) { } // AppendTarget appends the value for property 'target'. -func (t *Update) AppendTarget(k url.URL) { +func (t *Update) AppendTarget(k *url.URL) { t.raw.AppendTargetIRI(k) } // PrependTarget prepends the value for property 'target'. -func (t *Update) PrependTarget(k url.URL) { +func (t *Update) PrependTarget(k *url.URL) { t.raw.PrependTargetIRI(k) } @@ -61977,8 +61977,8 @@ func (t *Update) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Update) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Update) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -61996,13 +61996,13 @@ func (t *Update) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Update) AppendAttributedTo(k url.URL) { +func (t *Update) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Update) PrependAttributedTo(k url.URL) { +func (t *Update) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -62033,8 +62033,8 @@ func (t *Update) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Update) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Update) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -62052,13 +62052,13 @@ func (t *Update) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Update) AppendAudience(k url.URL) { +func (t *Update) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Update) PrependAudience(k url.URL) { +func (t *Update) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -62451,8 +62451,8 @@ func (t *Update) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Update) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Update) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -62476,7 +62476,7 @@ func (t *Update) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Update) SetId(k url.URL) { +func (t *Update) SetId(k *url.URL) { t.raw.SetId(k) } @@ -62543,8 +62543,8 @@ func (t *Update) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Update) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Update) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -62562,13 +62562,13 @@ func (t *Update) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Update) AppendInReplyTo(k url.URL) { +func (t *Update) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Update) PrependInReplyTo(k url.URL) { +func (t *Update) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -63043,8 +63043,8 @@ func (t *Update) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Update) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Update) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -63060,13 +63060,13 @@ func (t *Update) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Update) AppendUrl(k url.URL) { +func (t *Update) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Update) PrependUrl(k url.URL) { +func (t *Update) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -63095,8 +63095,8 @@ func (t *Update) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Update) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Update) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -63114,13 +63114,13 @@ func (t *Update) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Update) AppendTo(k url.URL) { +func (t *Update) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Update) PrependTo(k url.URL) { +func (t *Update) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -63151,8 +63151,8 @@ func (t *Update) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Update) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Update) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -63170,13 +63170,13 @@ func (t *Update) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Update) AppendBto(k url.URL) { +func (t *Update) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Update) PrependBto(k url.URL) { +func (t *Update) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -63207,8 +63207,8 @@ func (t *Update) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Update) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Update) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -63226,13 +63226,13 @@ func (t *Update) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Update) AppendCc(k url.URL) { +func (t *Update) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Update) PrependCc(k url.URL) { +func (t *Update) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -63263,8 +63263,8 @@ func (t *Update) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Update) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Update) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -63282,13 +63282,13 @@ func (t *Update) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Update) AppendBcc(k url.URL) { +func (t *Update) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Update) PrependBcc(k url.URL) { +func (t *Update) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -63641,8 +63641,8 @@ func (t *Update) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Update) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Update) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -63656,13 +63656,13 @@ func (t *Update) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Update) AppendStreams(k url.URL) { +func (t *Update) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Update) PrependStreams(k url.URL) { +func (t *Update) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -63759,8 +63759,8 @@ func (t *Update) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Update) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Update) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -63784,13 +63784,13 @@ func (t *Update) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Update) SetProxyUrl(k url.URL) { +func (t *Update) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Update) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Update) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -63814,13 +63814,13 @@ func (t *Update) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Update) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Update) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Update) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Update) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -63844,13 +63844,13 @@ func (t *Update) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Update) SetOauthTokenEndpoint(k url.URL) { +func (t *Update) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Update) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Update) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -63874,13 +63874,13 @@ func (t *Update) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Update) SetProvideClientKey(k url.URL) { +func (t *Update) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Update) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Update) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -63904,13 +63904,13 @@ func (t *Update) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Update) SetSignClientKey(k url.URL) { +func (t *Update) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Update) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Update) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -63934,7 +63934,7 @@ func (t *Update) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Update) SetSharedInbox(k url.URL) { +func (t *Update) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -63963,8 +63963,8 @@ func (t *View) LenActor() (idx int) { } -// GetActor attempts to get this 'actor' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *View) GetActor(idx int) (r Resolution, k url.URL) { +// GetActor attempts to get this 'actor' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *View) GetActor(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsActorIRI(idx) { @@ -63982,13 +63982,13 @@ func (t *View) GetActor(idx int) (r Resolution, k url.URL) { } // AppendActor appends the value for property 'actor'. -func (t *View) AppendActor(k url.URL) { +func (t *View) AppendActor(k *url.URL) { t.raw.AppendActorIRI(k) } // PrependActor prepends the value for property 'actor'. -func (t *View) PrependActor(k url.URL) { +func (t *View) PrependActor(k *url.URL) { t.raw.PrependActorIRI(k) } @@ -64071,8 +64071,8 @@ func (t *View) LenTarget() (idx int) { } -// GetTarget attempts to get this 'target' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *View) GetTarget(idx int) (r Resolution, k url.URL) { +// GetTarget attempts to get this 'target' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *View) GetTarget(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsTargetIRI(idx) { @@ -64090,13 +64090,13 @@ func (t *View) GetTarget(idx int) (r Resolution, k url.URL) { } // AppendTarget appends the value for property 'target'. -func (t *View) AppendTarget(k url.URL) { +func (t *View) AppendTarget(k *url.URL) { t.raw.AppendTargetIRI(k) } // PrependTarget prepends the value for property 'target'. -func (t *View) PrependTarget(k url.URL) { +func (t *View) PrependTarget(k *url.URL) { t.raw.PrependTargetIRI(k) } @@ -64421,8 +64421,8 @@ func (t *View) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *View) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *View) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -64440,13 +64440,13 @@ func (t *View) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *View) AppendAttributedTo(k url.URL) { +func (t *View) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *View) PrependAttributedTo(k url.URL) { +func (t *View) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -64477,8 +64477,8 @@ func (t *View) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *View) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *View) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -64496,13 +64496,13 @@ func (t *View) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *View) AppendAudience(k url.URL) { +func (t *View) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *View) PrependAudience(k url.URL) { +func (t *View) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -64895,8 +64895,8 @@ func (t *View) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *View) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *View) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -64920,7 +64920,7 @@ func (t *View) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *View) SetId(k url.URL) { +func (t *View) SetId(k *url.URL) { t.raw.SetId(k) } @@ -64987,8 +64987,8 @@ func (t *View) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *View) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *View) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -65006,13 +65006,13 @@ func (t *View) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *View) AppendInReplyTo(k url.URL) { +func (t *View) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *View) PrependInReplyTo(k url.URL) { +func (t *View) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -65487,8 +65487,8 @@ func (t *View) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *View) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *View) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -65504,13 +65504,13 @@ func (t *View) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *View) AppendUrl(k url.URL) { +func (t *View) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *View) PrependUrl(k url.URL) { +func (t *View) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -65539,8 +65539,8 @@ func (t *View) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *View) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *View) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -65558,13 +65558,13 @@ func (t *View) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *View) AppendTo(k url.URL) { +func (t *View) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *View) PrependTo(k url.URL) { +func (t *View) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -65595,8 +65595,8 @@ func (t *View) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *View) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *View) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -65614,13 +65614,13 @@ func (t *View) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *View) AppendBto(k url.URL) { +func (t *View) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *View) PrependBto(k url.URL) { +func (t *View) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -65651,8 +65651,8 @@ func (t *View) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *View) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *View) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -65670,13 +65670,13 @@ func (t *View) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *View) AppendCc(k url.URL) { +func (t *View) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *View) PrependCc(k url.URL) { +func (t *View) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -65707,8 +65707,8 @@ func (t *View) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *View) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *View) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -65726,13 +65726,13 @@ func (t *View) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *View) AppendBcc(k url.URL) { +func (t *View) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *View) PrependBcc(k url.URL) { +func (t *View) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -66085,8 +66085,8 @@ func (t *View) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *View) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *View) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -66100,13 +66100,13 @@ func (t *View) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *View) AppendStreams(k url.URL) { +func (t *View) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *View) PrependStreams(k url.URL) { +func (t *View) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -66203,8 +66203,8 @@ func (t *View) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *View) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *View) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -66228,13 +66228,13 @@ func (t *View) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *View) SetProxyUrl(k url.URL) { +func (t *View) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *View) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *View) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -66258,13 +66258,13 @@ func (t *View) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *View) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *View) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *View) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *View) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -66288,13 +66288,13 @@ func (t *View) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *View) SetOauthTokenEndpoint(k url.URL) { +func (t *View) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *View) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *View) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -66318,13 +66318,13 @@ func (t *View) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *View) SetProvideClientKey(k url.URL) { +func (t *View) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *View) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *View) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -66348,13 +66348,13 @@ func (t *View) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *View) SetSignClientKey(k url.URL) { +func (t *View) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *View) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *View) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -66378,7 +66378,7 @@ func (t *View) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *View) SetSharedInbox(k url.URL) { +func (t *View) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -66407,8 +66407,8 @@ func (t *Listen) LenActor() (idx int) { } -// GetActor attempts to get this 'actor' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Listen) GetActor(idx int) (r Resolution, k url.URL) { +// GetActor attempts to get this 'actor' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Listen) GetActor(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsActorIRI(idx) { @@ -66426,13 +66426,13 @@ func (t *Listen) GetActor(idx int) (r Resolution, k url.URL) { } // AppendActor appends the value for property 'actor'. -func (t *Listen) AppendActor(k url.URL) { +func (t *Listen) AppendActor(k *url.URL) { t.raw.AppendActorIRI(k) } // PrependActor prepends the value for property 'actor'. -func (t *Listen) PrependActor(k url.URL) { +func (t *Listen) PrependActor(k *url.URL) { t.raw.PrependActorIRI(k) } @@ -66515,8 +66515,8 @@ func (t *Listen) LenTarget() (idx int) { } -// GetTarget attempts to get this 'target' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Listen) GetTarget(idx int) (r Resolution, k url.URL) { +// GetTarget attempts to get this 'target' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Listen) GetTarget(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsTargetIRI(idx) { @@ -66534,13 +66534,13 @@ func (t *Listen) GetTarget(idx int) (r Resolution, k url.URL) { } // AppendTarget appends the value for property 'target'. -func (t *Listen) AppendTarget(k url.URL) { +func (t *Listen) AppendTarget(k *url.URL) { t.raw.AppendTargetIRI(k) } // PrependTarget prepends the value for property 'target'. -func (t *Listen) PrependTarget(k url.URL) { +func (t *Listen) PrependTarget(k *url.URL) { t.raw.PrependTargetIRI(k) } @@ -66865,8 +66865,8 @@ func (t *Listen) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Listen) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Listen) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -66884,13 +66884,13 @@ func (t *Listen) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Listen) AppendAttributedTo(k url.URL) { +func (t *Listen) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Listen) PrependAttributedTo(k url.URL) { +func (t *Listen) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -66921,8 +66921,8 @@ func (t *Listen) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Listen) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Listen) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -66940,13 +66940,13 @@ func (t *Listen) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Listen) AppendAudience(k url.URL) { +func (t *Listen) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Listen) PrependAudience(k url.URL) { +func (t *Listen) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -67339,8 +67339,8 @@ func (t *Listen) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Listen) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Listen) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -67364,7 +67364,7 @@ func (t *Listen) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Listen) SetId(k url.URL) { +func (t *Listen) SetId(k *url.URL) { t.raw.SetId(k) } @@ -67431,8 +67431,8 @@ func (t *Listen) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Listen) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Listen) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -67450,13 +67450,13 @@ func (t *Listen) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Listen) AppendInReplyTo(k url.URL) { +func (t *Listen) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Listen) PrependInReplyTo(k url.URL) { +func (t *Listen) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -67931,8 +67931,8 @@ func (t *Listen) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Listen) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Listen) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -67948,13 +67948,13 @@ func (t *Listen) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Listen) AppendUrl(k url.URL) { +func (t *Listen) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Listen) PrependUrl(k url.URL) { +func (t *Listen) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -67983,8 +67983,8 @@ func (t *Listen) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Listen) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Listen) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -68002,13 +68002,13 @@ func (t *Listen) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Listen) AppendTo(k url.URL) { +func (t *Listen) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Listen) PrependTo(k url.URL) { +func (t *Listen) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -68039,8 +68039,8 @@ func (t *Listen) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Listen) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Listen) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -68058,13 +68058,13 @@ func (t *Listen) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Listen) AppendBto(k url.URL) { +func (t *Listen) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Listen) PrependBto(k url.URL) { +func (t *Listen) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -68095,8 +68095,8 @@ func (t *Listen) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Listen) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Listen) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -68114,13 +68114,13 @@ func (t *Listen) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Listen) AppendCc(k url.URL) { +func (t *Listen) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Listen) PrependCc(k url.URL) { +func (t *Listen) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -68151,8 +68151,8 @@ func (t *Listen) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Listen) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Listen) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -68170,13 +68170,13 @@ func (t *Listen) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Listen) AppendBcc(k url.URL) { +func (t *Listen) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Listen) PrependBcc(k url.URL) { +func (t *Listen) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -68529,8 +68529,8 @@ func (t *Listen) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Listen) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Listen) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -68544,13 +68544,13 @@ func (t *Listen) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Listen) AppendStreams(k url.URL) { +func (t *Listen) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Listen) PrependStreams(k url.URL) { +func (t *Listen) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -68647,8 +68647,8 @@ func (t *Listen) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Listen) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Listen) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -68672,13 +68672,13 @@ func (t *Listen) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Listen) SetProxyUrl(k url.URL) { +func (t *Listen) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Listen) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Listen) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -68702,13 +68702,13 @@ func (t *Listen) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Listen) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Listen) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Listen) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Listen) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -68732,13 +68732,13 @@ func (t *Listen) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Listen) SetOauthTokenEndpoint(k url.URL) { +func (t *Listen) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Listen) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Listen) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -68762,13 +68762,13 @@ func (t *Listen) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Listen) SetProvideClientKey(k url.URL) { +func (t *Listen) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Listen) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Listen) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -68792,13 +68792,13 @@ func (t *Listen) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Listen) SetSignClientKey(k url.URL) { +func (t *Listen) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Listen) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Listen) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -68822,7 +68822,7 @@ func (t *Listen) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Listen) SetSharedInbox(k url.URL) { +func (t *Listen) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -68851,8 +68851,8 @@ func (t *Read) LenActor() (idx int) { } -// GetActor attempts to get this 'actor' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Read) GetActor(idx int) (r Resolution, k url.URL) { +// GetActor attempts to get this 'actor' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Read) GetActor(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsActorIRI(idx) { @@ -68870,13 +68870,13 @@ func (t *Read) GetActor(idx int) (r Resolution, k url.URL) { } // AppendActor appends the value for property 'actor'. -func (t *Read) AppendActor(k url.URL) { +func (t *Read) AppendActor(k *url.URL) { t.raw.AppendActorIRI(k) } // PrependActor prepends the value for property 'actor'. -func (t *Read) PrependActor(k url.URL) { +func (t *Read) PrependActor(k *url.URL) { t.raw.PrependActorIRI(k) } @@ -68959,8 +68959,8 @@ func (t *Read) LenTarget() (idx int) { } -// GetTarget attempts to get this 'target' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Read) GetTarget(idx int) (r Resolution, k url.URL) { +// GetTarget attempts to get this 'target' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Read) GetTarget(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsTargetIRI(idx) { @@ -68978,13 +68978,13 @@ func (t *Read) GetTarget(idx int) (r Resolution, k url.URL) { } // AppendTarget appends the value for property 'target'. -func (t *Read) AppendTarget(k url.URL) { +func (t *Read) AppendTarget(k *url.URL) { t.raw.AppendTargetIRI(k) } // PrependTarget prepends the value for property 'target'. -func (t *Read) PrependTarget(k url.URL) { +func (t *Read) PrependTarget(k *url.URL) { t.raw.PrependTargetIRI(k) } @@ -69309,8 +69309,8 @@ func (t *Read) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Read) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Read) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -69328,13 +69328,13 @@ func (t *Read) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Read) AppendAttributedTo(k url.URL) { +func (t *Read) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Read) PrependAttributedTo(k url.URL) { +func (t *Read) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -69365,8 +69365,8 @@ func (t *Read) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Read) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Read) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -69384,13 +69384,13 @@ func (t *Read) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Read) AppendAudience(k url.URL) { +func (t *Read) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Read) PrependAudience(k url.URL) { +func (t *Read) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -69783,8 +69783,8 @@ func (t *Read) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Read) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Read) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -69808,7 +69808,7 @@ func (t *Read) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Read) SetId(k url.URL) { +func (t *Read) SetId(k *url.URL) { t.raw.SetId(k) } @@ -69875,8 +69875,8 @@ func (t *Read) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Read) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Read) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -69894,13 +69894,13 @@ func (t *Read) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Read) AppendInReplyTo(k url.URL) { +func (t *Read) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Read) PrependInReplyTo(k url.URL) { +func (t *Read) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -70375,8 +70375,8 @@ func (t *Read) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Read) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Read) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -70392,13 +70392,13 @@ func (t *Read) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Read) AppendUrl(k url.URL) { +func (t *Read) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Read) PrependUrl(k url.URL) { +func (t *Read) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -70427,8 +70427,8 @@ func (t *Read) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Read) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Read) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -70446,13 +70446,13 @@ func (t *Read) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Read) AppendTo(k url.URL) { +func (t *Read) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Read) PrependTo(k url.URL) { +func (t *Read) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -70483,8 +70483,8 @@ func (t *Read) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Read) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Read) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -70502,13 +70502,13 @@ func (t *Read) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Read) AppendBto(k url.URL) { +func (t *Read) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Read) PrependBto(k url.URL) { +func (t *Read) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -70539,8 +70539,8 @@ func (t *Read) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Read) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Read) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -70558,13 +70558,13 @@ func (t *Read) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Read) AppendCc(k url.URL) { +func (t *Read) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Read) PrependCc(k url.URL) { +func (t *Read) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -70595,8 +70595,8 @@ func (t *Read) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Read) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Read) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -70614,13 +70614,13 @@ func (t *Read) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Read) AppendBcc(k url.URL) { +func (t *Read) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Read) PrependBcc(k url.URL) { +func (t *Read) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -70973,8 +70973,8 @@ func (t *Read) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Read) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Read) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -70988,13 +70988,13 @@ func (t *Read) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Read) AppendStreams(k url.URL) { +func (t *Read) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Read) PrependStreams(k url.URL) { +func (t *Read) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -71091,8 +71091,8 @@ func (t *Read) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Read) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Read) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -71116,13 +71116,13 @@ func (t *Read) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Read) SetProxyUrl(k url.URL) { +func (t *Read) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Read) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Read) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -71146,13 +71146,13 @@ func (t *Read) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Read) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Read) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Read) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Read) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -71176,13 +71176,13 @@ func (t *Read) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Read) SetOauthTokenEndpoint(k url.URL) { +func (t *Read) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Read) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Read) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -71206,13 +71206,13 @@ func (t *Read) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Read) SetProvideClientKey(k url.URL) { +func (t *Read) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Read) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Read) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -71236,13 +71236,13 @@ func (t *Read) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Read) SetSignClientKey(k url.URL) { +func (t *Read) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Read) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Read) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -71266,7 +71266,7 @@ func (t *Read) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Read) SetSharedInbox(k url.URL) { +func (t *Read) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -71295,8 +71295,8 @@ func (t *Move) LenActor() (idx int) { } -// GetActor attempts to get this 'actor' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Move) GetActor(idx int) (r Resolution, k url.URL) { +// GetActor attempts to get this 'actor' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Move) GetActor(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsActorIRI(idx) { @@ -71314,13 +71314,13 @@ func (t *Move) GetActor(idx int) (r Resolution, k url.URL) { } // AppendActor appends the value for property 'actor'. -func (t *Move) AppendActor(k url.URL) { +func (t *Move) AppendActor(k *url.URL) { t.raw.AppendActorIRI(k) } // PrependActor prepends the value for property 'actor'. -func (t *Move) PrependActor(k url.URL) { +func (t *Move) PrependActor(k *url.URL) { t.raw.PrependActorIRI(k) } @@ -71403,8 +71403,8 @@ func (t *Move) LenTarget() (idx int) { } -// GetTarget attempts to get this 'target' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Move) GetTarget(idx int) (r Resolution, k url.URL) { +// GetTarget attempts to get this 'target' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Move) GetTarget(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsTargetIRI(idx) { @@ -71422,13 +71422,13 @@ func (t *Move) GetTarget(idx int) (r Resolution, k url.URL) { } // AppendTarget appends the value for property 'target'. -func (t *Move) AppendTarget(k url.URL) { +func (t *Move) AppendTarget(k *url.URL) { t.raw.AppendTargetIRI(k) } // PrependTarget prepends the value for property 'target'. -func (t *Move) PrependTarget(k url.URL) { +func (t *Move) PrependTarget(k *url.URL) { t.raw.PrependTargetIRI(k) } @@ -71753,8 +71753,8 @@ func (t *Move) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Move) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Move) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -71772,13 +71772,13 @@ func (t *Move) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Move) AppendAttributedTo(k url.URL) { +func (t *Move) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Move) PrependAttributedTo(k url.URL) { +func (t *Move) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -71809,8 +71809,8 @@ func (t *Move) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Move) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Move) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -71828,13 +71828,13 @@ func (t *Move) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Move) AppendAudience(k url.URL) { +func (t *Move) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Move) PrependAudience(k url.URL) { +func (t *Move) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -72227,8 +72227,8 @@ func (t *Move) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Move) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Move) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -72252,7 +72252,7 @@ func (t *Move) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Move) SetId(k url.URL) { +func (t *Move) SetId(k *url.URL) { t.raw.SetId(k) } @@ -72319,8 +72319,8 @@ func (t *Move) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Move) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Move) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -72338,13 +72338,13 @@ func (t *Move) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Move) AppendInReplyTo(k url.URL) { +func (t *Move) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Move) PrependInReplyTo(k url.URL) { +func (t *Move) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -72819,8 +72819,8 @@ func (t *Move) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Move) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Move) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -72836,13 +72836,13 @@ func (t *Move) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Move) AppendUrl(k url.URL) { +func (t *Move) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Move) PrependUrl(k url.URL) { +func (t *Move) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -72871,8 +72871,8 @@ func (t *Move) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Move) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Move) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -72890,13 +72890,13 @@ func (t *Move) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Move) AppendTo(k url.URL) { +func (t *Move) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Move) PrependTo(k url.URL) { +func (t *Move) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -72927,8 +72927,8 @@ func (t *Move) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Move) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Move) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -72946,13 +72946,13 @@ func (t *Move) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Move) AppendBto(k url.URL) { +func (t *Move) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Move) PrependBto(k url.URL) { +func (t *Move) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -72983,8 +72983,8 @@ func (t *Move) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Move) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Move) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -73002,13 +73002,13 @@ func (t *Move) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Move) AppendCc(k url.URL) { +func (t *Move) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Move) PrependCc(k url.URL) { +func (t *Move) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -73039,8 +73039,8 @@ func (t *Move) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Move) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Move) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -73058,13 +73058,13 @@ func (t *Move) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Move) AppendBcc(k url.URL) { +func (t *Move) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Move) PrependBcc(k url.URL) { +func (t *Move) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -73417,8 +73417,8 @@ func (t *Move) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Move) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Move) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -73432,13 +73432,13 @@ func (t *Move) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Move) AppendStreams(k url.URL) { +func (t *Move) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Move) PrependStreams(k url.URL) { +func (t *Move) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -73535,8 +73535,8 @@ func (t *Move) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Move) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Move) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -73560,13 +73560,13 @@ func (t *Move) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Move) SetProxyUrl(k url.URL) { +func (t *Move) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Move) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Move) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -73590,13 +73590,13 @@ func (t *Move) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Move) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Move) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Move) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Move) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -73620,13 +73620,13 @@ func (t *Move) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Move) SetOauthTokenEndpoint(k url.URL) { +func (t *Move) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Move) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Move) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -73650,13 +73650,13 @@ func (t *Move) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Move) SetProvideClientKey(k url.URL) { +func (t *Move) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Move) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Move) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -73680,13 +73680,13 @@ func (t *Move) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Move) SetSignClientKey(k url.URL) { +func (t *Move) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Move) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Move) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -73710,7 +73710,7 @@ func (t *Move) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Move) SetSharedInbox(k url.URL) { +func (t *Move) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -73739,8 +73739,8 @@ func (t *Travel) LenActor() (idx int) { } -// GetActor attempts to get this 'actor' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Travel) GetActor(idx int) (r Resolution, k url.URL) { +// GetActor attempts to get this 'actor' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Travel) GetActor(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsActorIRI(idx) { @@ -73758,13 +73758,13 @@ func (t *Travel) GetActor(idx int) (r Resolution, k url.URL) { } // AppendActor appends the value for property 'actor'. -func (t *Travel) AppendActor(k url.URL) { +func (t *Travel) AppendActor(k *url.URL) { t.raw.AppendActorIRI(k) } // PrependActor prepends the value for property 'actor'. -func (t *Travel) PrependActor(k url.URL) { +func (t *Travel) PrependActor(k *url.URL) { t.raw.PrependActorIRI(k) } @@ -73795,8 +73795,8 @@ func (t *Travel) LenTarget() (idx int) { } -// GetTarget attempts to get this 'target' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Travel) GetTarget(idx int) (r Resolution, k url.URL) { +// GetTarget attempts to get this 'target' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Travel) GetTarget(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsTargetIRI(idx) { @@ -73814,13 +73814,13 @@ func (t *Travel) GetTarget(idx int) (r Resolution, k url.URL) { } // AppendTarget appends the value for property 'target'. -func (t *Travel) AppendTarget(k url.URL) { +func (t *Travel) AppendTarget(k *url.URL) { t.raw.AppendTargetIRI(k) } // PrependTarget prepends the value for property 'target'. -func (t *Travel) PrependTarget(k url.URL) { +func (t *Travel) PrependTarget(k *url.URL) { t.raw.PrependTargetIRI(k) } @@ -74145,8 +74145,8 @@ func (t *Travel) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Travel) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Travel) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -74164,13 +74164,13 @@ func (t *Travel) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Travel) AppendAttributedTo(k url.URL) { +func (t *Travel) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Travel) PrependAttributedTo(k url.URL) { +func (t *Travel) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -74201,8 +74201,8 @@ func (t *Travel) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Travel) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Travel) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -74220,13 +74220,13 @@ func (t *Travel) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Travel) AppendAudience(k url.URL) { +func (t *Travel) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Travel) PrependAudience(k url.URL) { +func (t *Travel) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -74619,8 +74619,8 @@ func (t *Travel) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Travel) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Travel) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -74644,7 +74644,7 @@ func (t *Travel) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Travel) SetId(k url.URL) { +func (t *Travel) SetId(k *url.URL) { t.raw.SetId(k) } @@ -74711,8 +74711,8 @@ func (t *Travel) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Travel) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Travel) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -74730,13 +74730,13 @@ func (t *Travel) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Travel) AppendInReplyTo(k url.URL) { +func (t *Travel) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Travel) PrependInReplyTo(k url.URL) { +func (t *Travel) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -75211,8 +75211,8 @@ func (t *Travel) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Travel) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Travel) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -75228,13 +75228,13 @@ func (t *Travel) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Travel) AppendUrl(k url.URL) { +func (t *Travel) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Travel) PrependUrl(k url.URL) { +func (t *Travel) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -75263,8 +75263,8 @@ func (t *Travel) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Travel) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Travel) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -75282,13 +75282,13 @@ func (t *Travel) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Travel) AppendTo(k url.URL) { +func (t *Travel) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Travel) PrependTo(k url.URL) { +func (t *Travel) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -75319,8 +75319,8 @@ func (t *Travel) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Travel) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Travel) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -75338,13 +75338,13 @@ func (t *Travel) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Travel) AppendBto(k url.URL) { +func (t *Travel) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Travel) PrependBto(k url.URL) { +func (t *Travel) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -75375,8 +75375,8 @@ func (t *Travel) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Travel) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Travel) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -75394,13 +75394,13 @@ func (t *Travel) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Travel) AppendCc(k url.URL) { +func (t *Travel) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Travel) PrependCc(k url.URL) { +func (t *Travel) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -75431,8 +75431,8 @@ func (t *Travel) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Travel) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Travel) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -75450,13 +75450,13 @@ func (t *Travel) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Travel) AppendBcc(k url.URL) { +func (t *Travel) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Travel) PrependBcc(k url.URL) { +func (t *Travel) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -75809,8 +75809,8 @@ func (t *Travel) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Travel) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Travel) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -75824,13 +75824,13 @@ func (t *Travel) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Travel) AppendStreams(k url.URL) { +func (t *Travel) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Travel) PrependStreams(k url.URL) { +func (t *Travel) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -75927,8 +75927,8 @@ func (t *Travel) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Travel) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Travel) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -75952,13 +75952,13 @@ func (t *Travel) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Travel) SetProxyUrl(k url.URL) { +func (t *Travel) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Travel) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Travel) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -75982,13 +75982,13 @@ func (t *Travel) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Travel) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Travel) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Travel) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Travel) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -76012,13 +76012,13 @@ func (t *Travel) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Travel) SetOauthTokenEndpoint(k url.URL) { +func (t *Travel) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Travel) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Travel) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -76042,13 +76042,13 @@ func (t *Travel) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Travel) SetProvideClientKey(k url.URL) { +func (t *Travel) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Travel) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Travel) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -76072,13 +76072,13 @@ func (t *Travel) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Travel) SetSignClientKey(k url.URL) { +func (t *Travel) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Travel) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Travel) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -76102,7 +76102,7 @@ func (t *Travel) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Travel) SetSharedInbox(k url.URL) { +func (t *Travel) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -76131,8 +76131,8 @@ func (t *Announce) LenActor() (idx int) { } -// GetActor attempts to get this 'actor' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Announce) GetActor(idx int) (r Resolution, k url.URL) { +// GetActor attempts to get this 'actor' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Announce) GetActor(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsActorIRI(idx) { @@ -76150,13 +76150,13 @@ func (t *Announce) GetActor(idx int) (r Resolution, k url.URL) { } // AppendActor appends the value for property 'actor'. -func (t *Announce) AppendActor(k url.URL) { +func (t *Announce) AppendActor(k *url.URL) { t.raw.AppendActorIRI(k) } // PrependActor prepends the value for property 'actor'. -func (t *Announce) PrependActor(k url.URL) { +func (t *Announce) PrependActor(k *url.URL) { t.raw.PrependActorIRI(k) } @@ -76239,8 +76239,8 @@ func (t *Announce) LenTarget() (idx int) { } -// GetTarget attempts to get this 'target' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Announce) GetTarget(idx int) (r Resolution, k url.URL) { +// GetTarget attempts to get this 'target' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Announce) GetTarget(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsTargetIRI(idx) { @@ -76258,13 +76258,13 @@ func (t *Announce) GetTarget(idx int) (r Resolution, k url.URL) { } // AppendTarget appends the value for property 'target'. -func (t *Announce) AppendTarget(k url.URL) { +func (t *Announce) AppendTarget(k *url.URL) { t.raw.AppendTargetIRI(k) } // PrependTarget prepends the value for property 'target'. -func (t *Announce) PrependTarget(k url.URL) { +func (t *Announce) PrependTarget(k *url.URL) { t.raw.PrependTargetIRI(k) } @@ -76589,8 +76589,8 @@ func (t *Announce) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Announce) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Announce) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -76608,13 +76608,13 @@ func (t *Announce) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Announce) AppendAttributedTo(k url.URL) { +func (t *Announce) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Announce) PrependAttributedTo(k url.URL) { +func (t *Announce) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -76645,8 +76645,8 @@ func (t *Announce) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Announce) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Announce) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -76664,13 +76664,13 @@ func (t *Announce) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Announce) AppendAudience(k url.URL) { +func (t *Announce) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Announce) PrependAudience(k url.URL) { +func (t *Announce) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -77063,8 +77063,8 @@ func (t *Announce) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Announce) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Announce) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -77088,7 +77088,7 @@ func (t *Announce) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Announce) SetId(k url.URL) { +func (t *Announce) SetId(k *url.URL) { t.raw.SetId(k) } @@ -77155,8 +77155,8 @@ func (t *Announce) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Announce) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Announce) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -77174,13 +77174,13 @@ func (t *Announce) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Announce) AppendInReplyTo(k url.URL) { +func (t *Announce) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Announce) PrependInReplyTo(k url.URL) { +func (t *Announce) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -77655,8 +77655,8 @@ func (t *Announce) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Announce) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Announce) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -77672,13 +77672,13 @@ func (t *Announce) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Announce) AppendUrl(k url.URL) { +func (t *Announce) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Announce) PrependUrl(k url.URL) { +func (t *Announce) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -77707,8 +77707,8 @@ func (t *Announce) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Announce) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Announce) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -77726,13 +77726,13 @@ func (t *Announce) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Announce) AppendTo(k url.URL) { +func (t *Announce) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Announce) PrependTo(k url.URL) { +func (t *Announce) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -77763,8 +77763,8 @@ func (t *Announce) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Announce) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Announce) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -77782,13 +77782,13 @@ func (t *Announce) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Announce) AppendBto(k url.URL) { +func (t *Announce) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Announce) PrependBto(k url.URL) { +func (t *Announce) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -77819,8 +77819,8 @@ func (t *Announce) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Announce) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Announce) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -77838,13 +77838,13 @@ func (t *Announce) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Announce) AppendCc(k url.URL) { +func (t *Announce) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Announce) PrependCc(k url.URL) { +func (t *Announce) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -77875,8 +77875,8 @@ func (t *Announce) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Announce) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Announce) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -77894,13 +77894,13 @@ func (t *Announce) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Announce) AppendBcc(k url.URL) { +func (t *Announce) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Announce) PrependBcc(k url.URL) { +func (t *Announce) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -78253,8 +78253,8 @@ func (t *Announce) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Announce) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Announce) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -78268,13 +78268,13 @@ func (t *Announce) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Announce) AppendStreams(k url.URL) { +func (t *Announce) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Announce) PrependStreams(k url.URL) { +func (t *Announce) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -78371,8 +78371,8 @@ func (t *Announce) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Announce) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Announce) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -78396,13 +78396,13 @@ func (t *Announce) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Announce) SetProxyUrl(k url.URL) { +func (t *Announce) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Announce) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Announce) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -78426,13 +78426,13 @@ func (t *Announce) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Announce) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Announce) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Announce) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Announce) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -78456,13 +78456,13 @@ func (t *Announce) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Announce) SetOauthTokenEndpoint(k url.URL) { +func (t *Announce) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Announce) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Announce) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -78486,13 +78486,13 @@ func (t *Announce) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Announce) SetProvideClientKey(k url.URL) { +func (t *Announce) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Announce) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Announce) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -78516,13 +78516,13 @@ func (t *Announce) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Announce) SetSignClientKey(k url.URL) { +func (t *Announce) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Announce) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Announce) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -78546,7 +78546,7 @@ func (t *Announce) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Announce) SetSharedInbox(k url.URL) { +func (t *Announce) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -78575,8 +78575,8 @@ func (t *Block) LenActor() (idx int) { } -// GetActor attempts to get this 'actor' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Block) GetActor(idx int) (r Resolution, k url.URL) { +// GetActor attempts to get this 'actor' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Block) GetActor(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsActorIRI(idx) { @@ -78594,13 +78594,13 @@ func (t *Block) GetActor(idx int) (r Resolution, k url.URL) { } // AppendActor appends the value for property 'actor'. -func (t *Block) AppendActor(k url.URL) { +func (t *Block) AppendActor(k *url.URL) { t.raw.AppendActorIRI(k) } // PrependActor prepends the value for property 'actor'. -func (t *Block) PrependActor(k url.URL) { +func (t *Block) PrependActor(k *url.URL) { t.raw.PrependActorIRI(k) } @@ -78683,8 +78683,8 @@ func (t *Block) LenTarget() (idx int) { } -// GetTarget attempts to get this 'target' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Block) GetTarget(idx int) (r Resolution, k url.URL) { +// GetTarget attempts to get this 'target' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Block) GetTarget(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsTargetIRI(idx) { @@ -78702,13 +78702,13 @@ func (t *Block) GetTarget(idx int) (r Resolution, k url.URL) { } // AppendTarget appends the value for property 'target'. -func (t *Block) AppendTarget(k url.URL) { +func (t *Block) AppendTarget(k *url.URL) { t.raw.AppendTargetIRI(k) } // PrependTarget prepends the value for property 'target'. -func (t *Block) PrependTarget(k url.URL) { +func (t *Block) PrependTarget(k *url.URL) { t.raw.PrependTargetIRI(k) } @@ -79033,8 +79033,8 @@ func (t *Block) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Block) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Block) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -79052,13 +79052,13 @@ func (t *Block) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Block) AppendAttributedTo(k url.URL) { +func (t *Block) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Block) PrependAttributedTo(k url.URL) { +func (t *Block) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -79089,8 +79089,8 @@ func (t *Block) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Block) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Block) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -79108,13 +79108,13 @@ func (t *Block) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Block) AppendAudience(k url.URL) { +func (t *Block) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Block) PrependAudience(k url.URL) { +func (t *Block) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -79507,8 +79507,8 @@ func (t *Block) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Block) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Block) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -79532,7 +79532,7 @@ func (t *Block) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Block) SetId(k url.URL) { +func (t *Block) SetId(k *url.URL) { t.raw.SetId(k) } @@ -79599,8 +79599,8 @@ func (t *Block) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Block) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Block) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -79618,13 +79618,13 @@ func (t *Block) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Block) AppendInReplyTo(k url.URL) { +func (t *Block) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Block) PrependInReplyTo(k url.URL) { +func (t *Block) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -80099,8 +80099,8 @@ func (t *Block) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Block) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Block) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -80116,13 +80116,13 @@ func (t *Block) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Block) AppendUrl(k url.URL) { +func (t *Block) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Block) PrependUrl(k url.URL) { +func (t *Block) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -80151,8 +80151,8 @@ func (t *Block) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Block) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Block) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -80170,13 +80170,13 @@ func (t *Block) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Block) AppendTo(k url.URL) { +func (t *Block) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Block) PrependTo(k url.URL) { +func (t *Block) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -80207,8 +80207,8 @@ func (t *Block) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Block) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Block) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -80226,13 +80226,13 @@ func (t *Block) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Block) AppendBto(k url.URL) { +func (t *Block) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Block) PrependBto(k url.URL) { +func (t *Block) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -80263,8 +80263,8 @@ func (t *Block) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Block) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Block) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -80282,13 +80282,13 @@ func (t *Block) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Block) AppendCc(k url.URL) { +func (t *Block) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Block) PrependCc(k url.URL) { +func (t *Block) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -80319,8 +80319,8 @@ func (t *Block) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Block) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Block) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -80338,13 +80338,13 @@ func (t *Block) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Block) AppendBcc(k url.URL) { +func (t *Block) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Block) PrependBcc(k url.URL) { +func (t *Block) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -80697,8 +80697,8 @@ func (t *Block) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Block) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Block) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -80712,13 +80712,13 @@ func (t *Block) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Block) AppendStreams(k url.URL) { +func (t *Block) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Block) PrependStreams(k url.URL) { +func (t *Block) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -80815,8 +80815,8 @@ func (t *Block) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Block) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Block) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -80840,13 +80840,13 @@ func (t *Block) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Block) SetProxyUrl(k url.URL) { +func (t *Block) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Block) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Block) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -80870,13 +80870,13 @@ func (t *Block) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Block) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Block) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Block) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Block) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -80900,13 +80900,13 @@ func (t *Block) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Block) SetOauthTokenEndpoint(k url.URL) { +func (t *Block) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Block) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Block) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -80930,13 +80930,13 @@ func (t *Block) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Block) SetProvideClientKey(k url.URL) { +func (t *Block) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Block) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Block) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -80960,13 +80960,13 @@ func (t *Block) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Block) SetSignClientKey(k url.URL) { +func (t *Block) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Block) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Block) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -80990,7 +80990,7 @@ func (t *Block) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Block) SetSharedInbox(k url.URL) { +func (t *Block) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -81019,8 +81019,8 @@ func (t *Flag) LenActor() (idx int) { } -// GetActor attempts to get this 'actor' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Flag) GetActor(idx int) (r Resolution, k url.URL) { +// GetActor attempts to get this 'actor' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Flag) GetActor(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsActorIRI(idx) { @@ -81038,13 +81038,13 @@ func (t *Flag) GetActor(idx int) (r Resolution, k url.URL) { } // AppendActor appends the value for property 'actor'. -func (t *Flag) AppendActor(k url.URL) { +func (t *Flag) AppendActor(k *url.URL) { t.raw.AppendActorIRI(k) } // PrependActor prepends the value for property 'actor'. -func (t *Flag) PrependActor(k url.URL) { +func (t *Flag) PrependActor(k *url.URL) { t.raw.PrependActorIRI(k) } @@ -81127,8 +81127,8 @@ func (t *Flag) LenTarget() (idx int) { } -// GetTarget attempts to get this 'target' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Flag) GetTarget(idx int) (r Resolution, k url.URL) { +// GetTarget attempts to get this 'target' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Flag) GetTarget(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsTargetIRI(idx) { @@ -81146,13 +81146,13 @@ func (t *Flag) GetTarget(idx int) (r Resolution, k url.URL) { } // AppendTarget appends the value for property 'target'. -func (t *Flag) AppendTarget(k url.URL) { +func (t *Flag) AppendTarget(k *url.URL) { t.raw.AppendTargetIRI(k) } // PrependTarget prepends the value for property 'target'. -func (t *Flag) PrependTarget(k url.URL) { +func (t *Flag) PrependTarget(k *url.URL) { t.raw.PrependTargetIRI(k) } @@ -81477,8 +81477,8 @@ func (t *Flag) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Flag) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Flag) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -81496,13 +81496,13 @@ func (t *Flag) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Flag) AppendAttributedTo(k url.URL) { +func (t *Flag) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Flag) PrependAttributedTo(k url.URL) { +func (t *Flag) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -81533,8 +81533,8 @@ func (t *Flag) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Flag) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Flag) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -81552,13 +81552,13 @@ func (t *Flag) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Flag) AppendAudience(k url.URL) { +func (t *Flag) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Flag) PrependAudience(k url.URL) { +func (t *Flag) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -81951,8 +81951,8 @@ func (t *Flag) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Flag) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Flag) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -81976,7 +81976,7 @@ func (t *Flag) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Flag) SetId(k url.URL) { +func (t *Flag) SetId(k *url.URL) { t.raw.SetId(k) } @@ -82043,8 +82043,8 @@ func (t *Flag) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Flag) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Flag) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -82062,13 +82062,13 @@ func (t *Flag) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Flag) AppendInReplyTo(k url.URL) { +func (t *Flag) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Flag) PrependInReplyTo(k url.URL) { +func (t *Flag) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -82543,8 +82543,8 @@ func (t *Flag) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Flag) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Flag) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -82560,13 +82560,13 @@ func (t *Flag) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Flag) AppendUrl(k url.URL) { +func (t *Flag) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Flag) PrependUrl(k url.URL) { +func (t *Flag) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -82595,8 +82595,8 @@ func (t *Flag) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Flag) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Flag) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -82614,13 +82614,13 @@ func (t *Flag) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Flag) AppendTo(k url.URL) { +func (t *Flag) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Flag) PrependTo(k url.URL) { +func (t *Flag) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -82651,8 +82651,8 @@ func (t *Flag) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Flag) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Flag) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -82670,13 +82670,13 @@ func (t *Flag) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Flag) AppendBto(k url.URL) { +func (t *Flag) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Flag) PrependBto(k url.URL) { +func (t *Flag) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -82707,8 +82707,8 @@ func (t *Flag) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Flag) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Flag) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -82726,13 +82726,13 @@ func (t *Flag) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Flag) AppendCc(k url.URL) { +func (t *Flag) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Flag) PrependCc(k url.URL) { +func (t *Flag) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -82763,8 +82763,8 @@ func (t *Flag) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Flag) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Flag) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -82782,13 +82782,13 @@ func (t *Flag) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Flag) AppendBcc(k url.URL) { +func (t *Flag) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Flag) PrependBcc(k url.URL) { +func (t *Flag) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -83141,8 +83141,8 @@ func (t *Flag) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Flag) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Flag) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -83156,13 +83156,13 @@ func (t *Flag) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Flag) AppendStreams(k url.URL) { +func (t *Flag) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Flag) PrependStreams(k url.URL) { +func (t *Flag) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -83259,8 +83259,8 @@ func (t *Flag) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Flag) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Flag) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -83284,13 +83284,13 @@ func (t *Flag) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Flag) SetProxyUrl(k url.URL) { +func (t *Flag) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Flag) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Flag) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -83314,13 +83314,13 @@ func (t *Flag) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Flag) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Flag) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Flag) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Flag) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -83344,13 +83344,13 @@ func (t *Flag) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Flag) SetOauthTokenEndpoint(k url.URL) { +func (t *Flag) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Flag) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Flag) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -83374,13 +83374,13 @@ func (t *Flag) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Flag) SetProvideClientKey(k url.URL) { +func (t *Flag) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Flag) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Flag) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -83404,13 +83404,13 @@ func (t *Flag) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Flag) SetSignClientKey(k url.URL) { +func (t *Flag) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Flag) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Flag) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -83434,7 +83434,7 @@ func (t *Flag) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Flag) SetSharedInbox(k url.URL) { +func (t *Flag) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -83463,8 +83463,8 @@ func (t *Dislike) LenActor() (idx int) { } -// GetActor attempts to get this 'actor' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Dislike) GetActor(idx int) (r Resolution, k url.URL) { +// GetActor attempts to get this 'actor' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Dislike) GetActor(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsActorIRI(idx) { @@ -83482,13 +83482,13 @@ func (t *Dislike) GetActor(idx int) (r Resolution, k url.URL) { } // AppendActor appends the value for property 'actor'. -func (t *Dislike) AppendActor(k url.URL) { +func (t *Dislike) AppendActor(k *url.URL) { t.raw.AppendActorIRI(k) } // PrependActor prepends the value for property 'actor'. -func (t *Dislike) PrependActor(k url.URL) { +func (t *Dislike) PrependActor(k *url.URL) { t.raw.PrependActorIRI(k) } @@ -83571,8 +83571,8 @@ func (t *Dislike) LenTarget() (idx int) { } -// GetTarget attempts to get this 'target' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Dislike) GetTarget(idx int) (r Resolution, k url.URL) { +// GetTarget attempts to get this 'target' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Dislike) GetTarget(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsTargetIRI(idx) { @@ -83590,13 +83590,13 @@ func (t *Dislike) GetTarget(idx int) (r Resolution, k url.URL) { } // AppendTarget appends the value for property 'target'. -func (t *Dislike) AppendTarget(k url.URL) { +func (t *Dislike) AppendTarget(k *url.URL) { t.raw.AppendTargetIRI(k) } // PrependTarget prepends the value for property 'target'. -func (t *Dislike) PrependTarget(k url.URL) { +func (t *Dislike) PrependTarget(k *url.URL) { t.raw.PrependTargetIRI(k) } @@ -83921,8 +83921,8 @@ func (t *Dislike) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Dislike) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Dislike) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -83940,13 +83940,13 @@ func (t *Dislike) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Dislike) AppendAttributedTo(k url.URL) { +func (t *Dislike) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Dislike) PrependAttributedTo(k url.URL) { +func (t *Dislike) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -83977,8 +83977,8 @@ func (t *Dislike) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Dislike) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Dislike) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -83996,13 +83996,13 @@ func (t *Dislike) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Dislike) AppendAudience(k url.URL) { +func (t *Dislike) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Dislike) PrependAudience(k url.URL) { +func (t *Dislike) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -84395,8 +84395,8 @@ func (t *Dislike) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Dislike) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Dislike) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -84420,7 +84420,7 @@ func (t *Dislike) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Dislike) SetId(k url.URL) { +func (t *Dislike) SetId(k *url.URL) { t.raw.SetId(k) } @@ -84487,8 +84487,8 @@ func (t *Dislike) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Dislike) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Dislike) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -84506,13 +84506,13 @@ func (t *Dislike) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Dislike) AppendInReplyTo(k url.URL) { +func (t *Dislike) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Dislike) PrependInReplyTo(k url.URL) { +func (t *Dislike) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -84987,8 +84987,8 @@ func (t *Dislike) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Dislike) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Dislike) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -85004,13 +85004,13 @@ func (t *Dislike) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Dislike) AppendUrl(k url.URL) { +func (t *Dislike) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Dislike) PrependUrl(k url.URL) { +func (t *Dislike) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -85039,8 +85039,8 @@ func (t *Dislike) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Dislike) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Dislike) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -85058,13 +85058,13 @@ func (t *Dislike) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Dislike) AppendTo(k url.URL) { +func (t *Dislike) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Dislike) PrependTo(k url.URL) { +func (t *Dislike) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -85095,8 +85095,8 @@ func (t *Dislike) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Dislike) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Dislike) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -85114,13 +85114,13 @@ func (t *Dislike) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Dislike) AppendBto(k url.URL) { +func (t *Dislike) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Dislike) PrependBto(k url.URL) { +func (t *Dislike) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -85151,8 +85151,8 @@ func (t *Dislike) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Dislike) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Dislike) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -85170,13 +85170,13 @@ func (t *Dislike) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Dislike) AppendCc(k url.URL) { +func (t *Dislike) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Dislike) PrependCc(k url.URL) { +func (t *Dislike) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -85207,8 +85207,8 @@ func (t *Dislike) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Dislike) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Dislike) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -85226,13 +85226,13 @@ func (t *Dislike) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Dislike) AppendBcc(k url.URL) { +func (t *Dislike) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Dislike) PrependBcc(k url.URL) { +func (t *Dislike) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -85585,8 +85585,8 @@ func (t *Dislike) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Dislike) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Dislike) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -85600,13 +85600,13 @@ func (t *Dislike) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Dislike) AppendStreams(k url.URL) { +func (t *Dislike) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Dislike) PrependStreams(k url.URL) { +func (t *Dislike) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -85703,8 +85703,8 @@ func (t *Dislike) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Dislike) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Dislike) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -85728,13 +85728,13 @@ func (t *Dislike) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Dislike) SetProxyUrl(k url.URL) { +func (t *Dislike) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Dislike) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Dislike) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -85758,13 +85758,13 @@ func (t *Dislike) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Dislike) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Dislike) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Dislike) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Dislike) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -85788,13 +85788,13 @@ func (t *Dislike) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Dislike) SetOauthTokenEndpoint(k url.URL) { +func (t *Dislike) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Dislike) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Dislike) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -85818,13 +85818,13 @@ func (t *Dislike) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Dislike) SetProvideClientKey(k url.URL) { +func (t *Dislike) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Dislike) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Dislike) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -85848,13 +85848,13 @@ func (t *Dislike) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Dislike) SetSignClientKey(k url.URL) { +func (t *Dislike) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Dislike) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Dislike) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -85878,7 +85878,7 @@ func (t *Dislike) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Dislike) SetSharedInbox(k url.URL) { +func (t *Dislike) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -86101,8 +86101,8 @@ func (t *Question) LenActor() (idx int) { } -// GetActor attempts to get this 'actor' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Question) GetActor(idx int) (r Resolution, k url.URL) { +// GetActor attempts to get this 'actor' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Question) GetActor(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsActorIRI(idx) { @@ -86120,13 +86120,13 @@ func (t *Question) GetActor(idx int) (r Resolution, k url.URL) { } // AppendActor appends the value for property 'actor'. -func (t *Question) AppendActor(k url.URL) { +func (t *Question) AppendActor(k *url.URL) { t.raw.AppendActorIRI(k) } // PrependActor prepends the value for property 'actor'. -func (t *Question) PrependActor(k url.URL) { +func (t *Question) PrependActor(k *url.URL) { t.raw.PrependActorIRI(k) } @@ -86157,8 +86157,8 @@ func (t *Question) LenTarget() (idx int) { } -// GetTarget attempts to get this 'target' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Question) GetTarget(idx int) (r Resolution, k url.URL) { +// GetTarget attempts to get this 'target' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Question) GetTarget(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsTargetIRI(idx) { @@ -86176,13 +86176,13 @@ func (t *Question) GetTarget(idx int) (r Resolution, k url.URL) { } // AppendTarget appends the value for property 'target'. -func (t *Question) AppendTarget(k url.URL) { +func (t *Question) AppendTarget(k *url.URL) { t.raw.AppendTargetIRI(k) } // PrependTarget prepends the value for property 'target'. -func (t *Question) PrependTarget(k url.URL) { +func (t *Question) PrependTarget(k *url.URL) { t.raw.PrependTargetIRI(k) } @@ -86507,8 +86507,8 @@ func (t *Question) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Question) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Question) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -86526,13 +86526,13 @@ func (t *Question) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Question) AppendAttributedTo(k url.URL) { +func (t *Question) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Question) PrependAttributedTo(k url.URL) { +func (t *Question) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -86563,8 +86563,8 @@ func (t *Question) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Question) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Question) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -86582,13 +86582,13 @@ func (t *Question) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Question) AppendAudience(k url.URL) { +func (t *Question) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Question) PrependAudience(k url.URL) { +func (t *Question) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -86981,8 +86981,8 @@ func (t *Question) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Question) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Question) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -87006,7 +87006,7 @@ func (t *Question) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Question) SetId(k url.URL) { +func (t *Question) SetId(k *url.URL) { t.raw.SetId(k) } @@ -87073,8 +87073,8 @@ func (t *Question) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Question) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Question) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -87092,13 +87092,13 @@ func (t *Question) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Question) AppendInReplyTo(k url.URL) { +func (t *Question) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Question) PrependInReplyTo(k url.URL) { +func (t *Question) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -87573,8 +87573,8 @@ func (t *Question) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Question) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Question) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -87590,13 +87590,13 @@ func (t *Question) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Question) AppendUrl(k url.URL) { +func (t *Question) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Question) PrependUrl(k url.URL) { +func (t *Question) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -87625,8 +87625,8 @@ func (t *Question) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Question) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Question) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -87644,13 +87644,13 @@ func (t *Question) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Question) AppendTo(k url.URL) { +func (t *Question) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Question) PrependTo(k url.URL) { +func (t *Question) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -87681,8 +87681,8 @@ func (t *Question) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Question) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Question) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -87700,13 +87700,13 @@ func (t *Question) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Question) AppendBto(k url.URL) { +func (t *Question) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Question) PrependBto(k url.URL) { +func (t *Question) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -87737,8 +87737,8 @@ func (t *Question) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Question) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Question) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -87756,13 +87756,13 @@ func (t *Question) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Question) AppendCc(k url.URL) { +func (t *Question) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Question) PrependCc(k url.URL) { +func (t *Question) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -87793,8 +87793,8 @@ func (t *Question) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Question) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Question) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -87812,13 +87812,13 @@ func (t *Question) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Question) AppendBcc(k url.URL) { +func (t *Question) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Question) PrependBcc(k url.URL) { +func (t *Question) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -88171,8 +88171,8 @@ func (t *Question) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Question) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Question) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -88186,13 +88186,13 @@ func (t *Question) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Question) AppendStreams(k url.URL) { +func (t *Question) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Question) PrependStreams(k url.URL) { +func (t *Question) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -88289,8 +88289,8 @@ func (t *Question) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Question) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Question) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -88314,13 +88314,13 @@ func (t *Question) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Question) SetProxyUrl(k url.URL) { +func (t *Question) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Question) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Question) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -88344,13 +88344,13 @@ func (t *Question) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Question) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Question) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Question) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Question) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -88374,13 +88374,13 @@ func (t *Question) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Question) SetOauthTokenEndpoint(k url.URL) { +func (t *Question) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Question) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Question) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -88404,13 +88404,13 @@ func (t *Question) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Question) SetProvideClientKey(k url.URL) { +func (t *Question) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Question) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Question) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -88434,13 +88434,13 @@ func (t *Question) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Question) SetSignClientKey(k url.URL) { +func (t *Question) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Question) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Question) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -88464,7 +88464,7 @@ func (t *Question) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Question) SetSharedInbox(k url.URL) { +func (t *Question) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -88592,8 +88592,8 @@ func (t *Application) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Application) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Application) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -88611,13 +88611,13 @@ func (t *Application) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Application) AppendAttributedTo(k url.URL) { +func (t *Application) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Application) PrependAttributedTo(k url.URL) { +func (t *Application) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -88648,8 +88648,8 @@ func (t *Application) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Application) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Application) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -88667,13 +88667,13 @@ func (t *Application) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Application) AppendAudience(k url.URL) { +func (t *Application) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Application) PrependAudience(k url.URL) { +func (t *Application) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -89066,8 +89066,8 @@ func (t *Application) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Application) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Application) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -89091,7 +89091,7 @@ func (t *Application) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Application) SetId(k url.URL) { +func (t *Application) SetId(k *url.URL) { t.raw.SetId(k) } @@ -89158,8 +89158,8 @@ func (t *Application) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Application) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Application) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -89177,13 +89177,13 @@ func (t *Application) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Application) AppendInReplyTo(k url.URL) { +func (t *Application) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Application) PrependInReplyTo(k url.URL) { +func (t *Application) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -89658,8 +89658,8 @@ func (t *Application) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Application) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Application) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -89675,13 +89675,13 @@ func (t *Application) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Application) AppendUrl(k url.URL) { +func (t *Application) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Application) PrependUrl(k url.URL) { +func (t *Application) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -89710,8 +89710,8 @@ func (t *Application) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Application) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Application) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -89729,13 +89729,13 @@ func (t *Application) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Application) AppendTo(k url.URL) { +func (t *Application) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Application) PrependTo(k url.URL) { +func (t *Application) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -89766,8 +89766,8 @@ func (t *Application) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Application) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Application) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -89785,13 +89785,13 @@ func (t *Application) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Application) AppendBto(k url.URL) { +func (t *Application) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Application) PrependBto(k url.URL) { +func (t *Application) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -89822,8 +89822,8 @@ func (t *Application) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Application) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Application) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -89841,13 +89841,13 @@ func (t *Application) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Application) AppendCc(k url.URL) { +func (t *Application) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Application) PrependCc(k url.URL) { +func (t *Application) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -89878,8 +89878,8 @@ func (t *Application) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Application) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Application) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -89897,13 +89897,13 @@ func (t *Application) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Application) AppendBcc(k url.URL) { +func (t *Application) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Application) PrependBcc(k url.URL) { +func (t *Application) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -90256,8 +90256,8 @@ func (t *Application) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Application) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Application) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -90271,13 +90271,13 @@ func (t *Application) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Application) AppendStreams(k url.URL) { +func (t *Application) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Application) PrependStreams(k url.URL) { +func (t *Application) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -90374,8 +90374,8 @@ func (t *Application) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Application) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Application) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -90399,13 +90399,13 @@ func (t *Application) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Application) SetProxyUrl(k url.URL) { +func (t *Application) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Application) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Application) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -90429,13 +90429,13 @@ func (t *Application) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Application) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Application) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Application) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Application) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -90459,13 +90459,13 @@ func (t *Application) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Application) SetOauthTokenEndpoint(k url.URL) { +func (t *Application) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Application) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Application) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -90489,13 +90489,13 @@ func (t *Application) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Application) SetProvideClientKey(k url.URL) { +func (t *Application) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Application) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Application) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -90519,13 +90519,13 @@ func (t *Application) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Application) SetSignClientKey(k url.URL) { +func (t *Application) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Application) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Application) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -90549,7 +90549,7 @@ func (t *Application) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Application) SetSharedInbox(k url.URL) { +func (t *Application) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -90677,8 +90677,8 @@ func (t *Group) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Group) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Group) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -90696,13 +90696,13 @@ func (t *Group) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Group) AppendAttributedTo(k url.URL) { +func (t *Group) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Group) PrependAttributedTo(k url.URL) { +func (t *Group) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -90733,8 +90733,8 @@ func (t *Group) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Group) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Group) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -90752,13 +90752,13 @@ func (t *Group) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Group) AppendAudience(k url.URL) { +func (t *Group) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Group) PrependAudience(k url.URL) { +func (t *Group) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -91151,8 +91151,8 @@ func (t *Group) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Group) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Group) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -91176,7 +91176,7 @@ func (t *Group) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Group) SetId(k url.URL) { +func (t *Group) SetId(k *url.URL) { t.raw.SetId(k) } @@ -91243,8 +91243,8 @@ func (t *Group) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Group) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Group) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -91262,13 +91262,13 @@ func (t *Group) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Group) AppendInReplyTo(k url.URL) { +func (t *Group) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Group) PrependInReplyTo(k url.URL) { +func (t *Group) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -91743,8 +91743,8 @@ func (t *Group) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Group) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Group) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -91760,13 +91760,13 @@ func (t *Group) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Group) AppendUrl(k url.URL) { +func (t *Group) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Group) PrependUrl(k url.URL) { +func (t *Group) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -91795,8 +91795,8 @@ func (t *Group) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Group) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Group) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -91814,13 +91814,13 @@ func (t *Group) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Group) AppendTo(k url.URL) { +func (t *Group) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Group) PrependTo(k url.URL) { +func (t *Group) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -91851,8 +91851,8 @@ func (t *Group) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Group) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Group) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -91870,13 +91870,13 @@ func (t *Group) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Group) AppendBto(k url.URL) { +func (t *Group) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Group) PrependBto(k url.URL) { +func (t *Group) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -91907,8 +91907,8 @@ func (t *Group) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Group) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Group) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -91926,13 +91926,13 @@ func (t *Group) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Group) AppendCc(k url.URL) { +func (t *Group) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Group) PrependCc(k url.URL) { +func (t *Group) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -91963,8 +91963,8 @@ func (t *Group) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Group) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Group) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -91982,13 +91982,13 @@ func (t *Group) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Group) AppendBcc(k url.URL) { +func (t *Group) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Group) PrependBcc(k url.URL) { +func (t *Group) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -92341,8 +92341,8 @@ func (t *Group) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Group) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Group) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -92356,13 +92356,13 @@ func (t *Group) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Group) AppendStreams(k url.URL) { +func (t *Group) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Group) PrependStreams(k url.URL) { +func (t *Group) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -92459,8 +92459,8 @@ func (t *Group) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Group) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Group) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -92484,13 +92484,13 @@ func (t *Group) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Group) SetProxyUrl(k url.URL) { +func (t *Group) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Group) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Group) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -92514,13 +92514,13 @@ func (t *Group) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Group) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Group) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Group) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Group) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -92544,13 +92544,13 @@ func (t *Group) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Group) SetOauthTokenEndpoint(k url.URL) { +func (t *Group) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Group) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Group) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -92574,13 +92574,13 @@ func (t *Group) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Group) SetProvideClientKey(k url.URL) { +func (t *Group) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Group) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Group) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -92604,13 +92604,13 @@ func (t *Group) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Group) SetSignClientKey(k url.URL) { +func (t *Group) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Group) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Group) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -92634,7 +92634,7 @@ func (t *Group) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Group) SetSharedInbox(k url.URL) { +func (t *Group) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -92762,8 +92762,8 @@ func (t *Organization) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Organization) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Organization) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -92781,13 +92781,13 @@ func (t *Organization) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Organization) AppendAttributedTo(k url.URL) { +func (t *Organization) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Organization) PrependAttributedTo(k url.URL) { +func (t *Organization) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -92818,8 +92818,8 @@ func (t *Organization) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Organization) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Organization) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -92837,13 +92837,13 @@ func (t *Organization) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Organization) AppendAudience(k url.URL) { +func (t *Organization) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Organization) PrependAudience(k url.URL) { +func (t *Organization) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -93236,8 +93236,8 @@ func (t *Organization) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Organization) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Organization) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -93261,7 +93261,7 @@ func (t *Organization) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Organization) SetId(k url.URL) { +func (t *Organization) SetId(k *url.URL) { t.raw.SetId(k) } @@ -93328,8 +93328,8 @@ func (t *Organization) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Organization) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Organization) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -93347,13 +93347,13 @@ func (t *Organization) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Organization) AppendInReplyTo(k url.URL) { +func (t *Organization) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Organization) PrependInReplyTo(k url.URL) { +func (t *Organization) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -93828,8 +93828,8 @@ func (t *Organization) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Organization) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Organization) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -93845,13 +93845,13 @@ func (t *Organization) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Organization) AppendUrl(k url.URL) { +func (t *Organization) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Organization) PrependUrl(k url.URL) { +func (t *Organization) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -93880,8 +93880,8 @@ func (t *Organization) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Organization) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Organization) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -93899,13 +93899,13 @@ func (t *Organization) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Organization) AppendTo(k url.URL) { +func (t *Organization) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Organization) PrependTo(k url.URL) { +func (t *Organization) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -93936,8 +93936,8 @@ func (t *Organization) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Organization) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Organization) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -93955,13 +93955,13 @@ func (t *Organization) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Organization) AppendBto(k url.URL) { +func (t *Organization) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Organization) PrependBto(k url.URL) { +func (t *Organization) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -93992,8 +93992,8 @@ func (t *Organization) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Organization) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Organization) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -94011,13 +94011,13 @@ func (t *Organization) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Organization) AppendCc(k url.URL) { +func (t *Organization) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Organization) PrependCc(k url.URL) { +func (t *Organization) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -94048,8 +94048,8 @@ func (t *Organization) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Organization) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Organization) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -94067,13 +94067,13 @@ func (t *Organization) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Organization) AppendBcc(k url.URL) { +func (t *Organization) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Organization) PrependBcc(k url.URL) { +func (t *Organization) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -94426,8 +94426,8 @@ func (t *Organization) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Organization) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Organization) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -94441,13 +94441,13 @@ func (t *Organization) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Organization) AppendStreams(k url.URL) { +func (t *Organization) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Organization) PrependStreams(k url.URL) { +func (t *Organization) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -94544,8 +94544,8 @@ func (t *Organization) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Organization) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Organization) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -94569,13 +94569,13 @@ func (t *Organization) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Organization) SetProxyUrl(k url.URL) { +func (t *Organization) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Organization) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Organization) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -94599,13 +94599,13 @@ func (t *Organization) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Organization) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Organization) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Organization) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Organization) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -94629,13 +94629,13 @@ func (t *Organization) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Organization) SetOauthTokenEndpoint(k url.URL) { +func (t *Organization) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Organization) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Organization) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -94659,13 +94659,13 @@ func (t *Organization) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Organization) SetProvideClientKey(k url.URL) { +func (t *Organization) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Organization) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Organization) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -94689,13 +94689,13 @@ func (t *Organization) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Organization) SetSignClientKey(k url.URL) { +func (t *Organization) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Organization) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Organization) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -94719,7 +94719,7 @@ func (t *Organization) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Organization) SetSharedInbox(k url.URL) { +func (t *Organization) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -94847,8 +94847,8 @@ func (t *Person) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Person) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Person) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -94866,13 +94866,13 @@ func (t *Person) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Person) AppendAttributedTo(k url.URL) { +func (t *Person) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Person) PrependAttributedTo(k url.URL) { +func (t *Person) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -94903,8 +94903,8 @@ func (t *Person) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Person) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Person) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -94922,13 +94922,13 @@ func (t *Person) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Person) AppendAudience(k url.URL) { +func (t *Person) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Person) PrependAudience(k url.URL) { +func (t *Person) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -95321,8 +95321,8 @@ func (t *Person) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Person) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Person) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -95346,7 +95346,7 @@ func (t *Person) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Person) SetId(k url.URL) { +func (t *Person) SetId(k *url.URL) { t.raw.SetId(k) } @@ -95413,8 +95413,8 @@ func (t *Person) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Person) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Person) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -95432,13 +95432,13 @@ func (t *Person) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Person) AppendInReplyTo(k url.URL) { +func (t *Person) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Person) PrependInReplyTo(k url.URL) { +func (t *Person) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -95913,8 +95913,8 @@ func (t *Person) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Person) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Person) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -95930,13 +95930,13 @@ func (t *Person) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Person) AppendUrl(k url.URL) { +func (t *Person) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Person) PrependUrl(k url.URL) { +func (t *Person) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -95965,8 +95965,8 @@ func (t *Person) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Person) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Person) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -95984,13 +95984,13 @@ func (t *Person) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Person) AppendTo(k url.URL) { +func (t *Person) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Person) PrependTo(k url.URL) { +func (t *Person) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -96021,8 +96021,8 @@ func (t *Person) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Person) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Person) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -96040,13 +96040,13 @@ func (t *Person) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Person) AppendBto(k url.URL) { +func (t *Person) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Person) PrependBto(k url.URL) { +func (t *Person) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -96077,8 +96077,8 @@ func (t *Person) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Person) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Person) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -96096,13 +96096,13 @@ func (t *Person) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Person) AppendCc(k url.URL) { +func (t *Person) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Person) PrependCc(k url.URL) { +func (t *Person) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -96133,8 +96133,8 @@ func (t *Person) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Person) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Person) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -96152,13 +96152,13 @@ func (t *Person) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Person) AppendBcc(k url.URL) { +func (t *Person) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Person) PrependBcc(k url.URL) { +func (t *Person) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -96511,8 +96511,8 @@ func (t *Person) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Person) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Person) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -96526,13 +96526,13 @@ func (t *Person) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Person) AppendStreams(k url.URL) { +func (t *Person) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Person) PrependStreams(k url.URL) { +func (t *Person) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -96629,8 +96629,8 @@ func (t *Person) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Person) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Person) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -96654,13 +96654,13 @@ func (t *Person) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Person) SetProxyUrl(k url.URL) { +func (t *Person) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Person) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Person) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -96684,13 +96684,13 @@ func (t *Person) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Person) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Person) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Person) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Person) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -96714,13 +96714,13 @@ func (t *Person) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Person) SetOauthTokenEndpoint(k url.URL) { +func (t *Person) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Person) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Person) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -96744,13 +96744,13 @@ func (t *Person) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Person) SetProvideClientKey(k url.URL) { +func (t *Person) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Person) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Person) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -96774,13 +96774,13 @@ func (t *Person) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Person) SetSignClientKey(k url.URL) { +func (t *Person) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Person) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Person) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -96804,7 +96804,7 @@ func (t *Person) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Person) SetSharedInbox(k url.URL) { +func (t *Person) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -96932,8 +96932,8 @@ func (t *Service) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Service) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Service) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -96951,13 +96951,13 @@ func (t *Service) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Service) AppendAttributedTo(k url.URL) { +func (t *Service) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Service) PrependAttributedTo(k url.URL) { +func (t *Service) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -96988,8 +96988,8 @@ func (t *Service) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Service) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Service) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -97007,13 +97007,13 @@ func (t *Service) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Service) AppendAudience(k url.URL) { +func (t *Service) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Service) PrependAudience(k url.URL) { +func (t *Service) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -97406,8 +97406,8 @@ func (t *Service) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Service) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Service) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -97431,7 +97431,7 @@ func (t *Service) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Service) SetId(k url.URL) { +func (t *Service) SetId(k *url.URL) { t.raw.SetId(k) } @@ -97498,8 +97498,8 @@ func (t *Service) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Service) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Service) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -97517,13 +97517,13 @@ func (t *Service) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Service) AppendInReplyTo(k url.URL) { +func (t *Service) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Service) PrependInReplyTo(k url.URL) { +func (t *Service) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -97998,8 +97998,8 @@ func (t *Service) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Service) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Service) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -98015,13 +98015,13 @@ func (t *Service) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Service) AppendUrl(k url.URL) { +func (t *Service) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Service) PrependUrl(k url.URL) { +func (t *Service) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -98050,8 +98050,8 @@ func (t *Service) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Service) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Service) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -98069,13 +98069,13 @@ func (t *Service) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Service) AppendTo(k url.URL) { +func (t *Service) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Service) PrependTo(k url.URL) { +func (t *Service) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -98106,8 +98106,8 @@ func (t *Service) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Service) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Service) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -98125,13 +98125,13 @@ func (t *Service) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Service) AppendBto(k url.URL) { +func (t *Service) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Service) PrependBto(k url.URL) { +func (t *Service) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -98162,8 +98162,8 @@ func (t *Service) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Service) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Service) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -98181,13 +98181,13 @@ func (t *Service) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Service) AppendCc(k url.URL) { +func (t *Service) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Service) PrependCc(k url.URL) { +func (t *Service) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -98218,8 +98218,8 @@ func (t *Service) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Service) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Service) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -98237,13 +98237,13 @@ func (t *Service) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Service) AppendBcc(k url.URL) { +func (t *Service) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Service) PrependBcc(k url.URL) { +func (t *Service) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -98596,8 +98596,8 @@ func (t *Service) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Service) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Service) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -98611,13 +98611,13 @@ func (t *Service) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Service) AppendStreams(k url.URL) { +func (t *Service) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Service) PrependStreams(k url.URL) { +func (t *Service) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -98714,8 +98714,8 @@ func (t *Service) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Service) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Service) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -98739,13 +98739,13 @@ func (t *Service) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Service) SetProxyUrl(k url.URL) { +func (t *Service) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Service) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Service) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -98769,13 +98769,13 @@ func (t *Service) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Service) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Service) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Service) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Service) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -98799,13 +98799,13 @@ func (t *Service) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Service) SetOauthTokenEndpoint(k url.URL) { +func (t *Service) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Service) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Service) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -98829,13 +98829,13 @@ func (t *Service) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Service) SetProvideClientKey(k url.URL) { +func (t *Service) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Service) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Service) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -98859,13 +98859,13 @@ func (t *Service) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Service) SetSignClientKey(k url.URL) { +func (t *Service) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Service) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Service) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -98889,7 +98889,7 @@ func (t *Service) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Service) SetSharedInbox(k url.URL) { +func (t *Service) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -99150,8 +99150,8 @@ func (t *Relationship) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Relationship) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Relationship) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -99169,13 +99169,13 @@ func (t *Relationship) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Relationship) AppendAttributedTo(k url.URL) { +func (t *Relationship) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Relationship) PrependAttributedTo(k url.URL) { +func (t *Relationship) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -99206,8 +99206,8 @@ func (t *Relationship) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Relationship) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Relationship) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -99225,13 +99225,13 @@ func (t *Relationship) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Relationship) AppendAudience(k url.URL) { +func (t *Relationship) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Relationship) PrependAudience(k url.URL) { +func (t *Relationship) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -99624,8 +99624,8 @@ func (t *Relationship) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Relationship) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Relationship) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -99649,7 +99649,7 @@ func (t *Relationship) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Relationship) SetId(k url.URL) { +func (t *Relationship) SetId(k *url.URL) { t.raw.SetId(k) } @@ -99716,8 +99716,8 @@ func (t *Relationship) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Relationship) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Relationship) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -99735,13 +99735,13 @@ func (t *Relationship) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Relationship) AppendInReplyTo(k url.URL) { +func (t *Relationship) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Relationship) PrependInReplyTo(k url.URL) { +func (t *Relationship) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -100216,8 +100216,8 @@ func (t *Relationship) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Relationship) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Relationship) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -100233,13 +100233,13 @@ func (t *Relationship) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Relationship) AppendUrl(k url.URL) { +func (t *Relationship) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Relationship) PrependUrl(k url.URL) { +func (t *Relationship) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -100268,8 +100268,8 @@ func (t *Relationship) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Relationship) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Relationship) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -100287,13 +100287,13 @@ func (t *Relationship) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Relationship) AppendTo(k url.URL) { +func (t *Relationship) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Relationship) PrependTo(k url.URL) { +func (t *Relationship) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -100324,8 +100324,8 @@ func (t *Relationship) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Relationship) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Relationship) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -100343,13 +100343,13 @@ func (t *Relationship) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Relationship) AppendBto(k url.URL) { +func (t *Relationship) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Relationship) PrependBto(k url.URL) { +func (t *Relationship) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -100380,8 +100380,8 @@ func (t *Relationship) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Relationship) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Relationship) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -100399,13 +100399,13 @@ func (t *Relationship) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Relationship) AppendCc(k url.URL) { +func (t *Relationship) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Relationship) PrependCc(k url.URL) { +func (t *Relationship) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -100436,8 +100436,8 @@ func (t *Relationship) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Relationship) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Relationship) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -100455,13 +100455,13 @@ func (t *Relationship) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Relationship) AppendBcc(k url.URL) { +func (t *Relationship) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Relationship) PrependBcc(k url.URL) { +func (t *Relationship) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -100814,8 +100814,8 @@ func (t *Relationship) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Relationship) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Relationship) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -100829,13 +100829,13 @@ func (t *Relationship) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Relationship) AppendStreams(k url.URL) { +func (t *Relationship) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Relationship) PrependStreams(k url.URL) { +func (t *Relationship) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -100932,8 +100932,8 @@ func (t *Relationship) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Relationship) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Relationship) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -100957,13 +100957,13 @@ func (t *Relationship) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Relationship) SetProxyUrl(k url.URL) { +func (t *Relationship) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Relationship) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Relationship) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -100987,13 +100987,13 @@ func (t *Relationship) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Relationship) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Relationship) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Relationship) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Relationship) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -101017,13 +101017,13 @@ func (t *Relationship) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Relationship) SetOauthTokenEndpoint(k url.URL) { +func (t *Relationship) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Relationship) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Relationship) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -101047,13 +101047,13 @@ func (t *Relationship) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Relationship) SetProvideClientKey(k url.URL) { +func (t *Relationship) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Relationship) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Relationship) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -101077,13 +101077,13 @@ func (t *Relationship) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Relationship) SetSignClientKey(k url.URL) { +func (t *Relationship) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Relationship) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Relationship) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -101107,7 +101107,7 @@ func (t *Relationship) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Relationship) SetSharedInbox(k url.URL) { +func (t *Relationship) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -101235,8 +101235,8 @@ func (t *Article) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Article) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Article) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -101254,13 +101254,13 @@ func (t *Article) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Article) AppendAttributedTo(k url.URL) { +func (t *Article) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Article) PrependAttributedTo(k url.URL) { +func (t *Article) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -101291,8 +101291,8 @@ func (t *Article) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Article) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Article) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -101310,13 +101310,13 @@ func (t *Article) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Article) AppendAudience(k url.URL) { +func (t *Article) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Article) PrependAudience(k url.URL) { +func (t *Article) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -101709,8 +101709,8 @@ func (t *Article) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Article) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Article) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -101734,7 +101734,7 @@ func (t *Article) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Article) SetId(k url.URL) { +func (t *Article) SetId(k *url.URL) { t.raw.SetId(k) } @@ -101801,8 +101801,8 @@ func (t *Article) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Article) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Article) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -101820,13 +101820,13 @@ func (t *Article) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Article) AppendInReplyTo(k url.URL) { +func (t *Article) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Article) PrependInReplyTo(k url.URL) { +func (t *Article) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -102301,8 +102301,8 @@ func (t *Article) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Article) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Article) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -102318,13 +102318,13 @@ func (t *Article) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Article) AppendUrl(k url.URL) { +func (t *Article) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Article) PrependUrl(k url.URL) { +func (t *Article) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -102353,8 +102353,8 @@ func (t *Article) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Article) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Article) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -102372,13 +102372,13 @@ func (t *Article) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Article) AppendTo(k url.URL) { +func (t *Article) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Article) PrependTo(k url.URL) { +func (t *Article) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -102409,8 +102409,8 @@ func (t *Article) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Article) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Article) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -102428,13 +102428,13 @@ func (t *Article) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Article) AppendBto(k url.URL) { +func (t *Article) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Article) PrependBto(k url.URL) { +func (t *Article) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -102465,8 +102465,8 @@ func (t *Article) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Article) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Article) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -102484,13 +102484,13 @@ func (t *Article) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Article) AppendCc(k url.URL) { +func (t *Article) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Article) PrependCc(k url.URL) { +func (t *Article) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -102521,8 +102521,8 @@ func (t *Article) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Article) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Article) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -102540,13 +102540,13 @@ func (t *Article) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Article) AppendBcc(k url.URL) { +func (t *Article) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Article) PrependBcc(k url.URL) { +func (t *Article) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -102899,8 +102899,8 @@ func (t *Article) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Article) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Article) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -102914,13 +102914,13 @@ func (t *Article) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Article) AppendStreams(k url.URL) { +func (t *Article) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Article) PrependStreams(k url.URL) { +func (t *Article) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -103017,8 +103017,8 @@ func (t *Article) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Article) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Article) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -103042,13 +103042,13 @@ func (t *Article) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Article) SetProxyUrl(k url.URL) { +func (t *Article) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Article) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Article) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -103072,13 +103072,13 @@ func (t *Article) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Article) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Article) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Article) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Article) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -103102,13 +103102,13 @@ func (t *Article) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Article) SetOauthTokenEndpoint(k url.URL) { +func (t *Article) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Article) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Article) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -103132,13 +103132,13 @@ func (t *Article) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Article) SetProvideClientKey(k url.URL) { +func (t *Article) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Article) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Article) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -103162,13 +103162,13 @@ func (t *Article) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Article) SetSignClientKey(k url.URL) { +func (t *Article) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Article) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Article) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -103192,7 +103192,7 @@ func (t *Article) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Article) SetSharedInbox(k url.URL) { +func (t *Article) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -103320,8 +103320,8 @@ func (t *Document) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Document) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Document) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -103339,13 +103339,13 @@ func (t *Document) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Document) AppendAttributedTo(k url.URL) { +func (t *Document) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Document) PrependAttributedTo(k url.URL) { +func (t *Document) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -103376,8 +103376,8 @@ func (t *Document) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Document) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Document) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -103395,13 +103395,13 @@ func (t *Document) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Document) AppendAudience(k url.URL) { +func (t *Document) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Document) PrependAudience(k url.URL) { +func (t *Document) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -103794,8 +103794,8 @@ func (t *Document) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Document) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Document) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -103819,7 +103819,7 @@ func (t *Document) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Document) SetId(k url.URL) { +func (t *Document) SetId(k *url.URL) { t.raw.SetId(k) } @@ -103886,8 +103886,8 @@ func (t *Document) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Document) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Document) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -103905,13 +103905,13 @@ func (t *Document) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Document) AppendInReplyTo(k url.URL) { +func (t *Document) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Document) PrependInReplyTo(k url.URL) { +func (t *Document) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -104386,8 +104386,8 @@ func (t *Document) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Document) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Document) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -104403,13 +104403,13 @@ func (t *Document) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Document) AppendUrl(k url.URL) { +func (t *Document) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Document) PrependUrl(k url.URL) { +func (t *Document) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -104438,8 +104438,8 @@ func (t *Document) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Document) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Document) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -104457,13 +104457,13 @@ func (t *Document) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Document) AppendTo(k url.URL) { +func (t *Document) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Document) PrependTo(k url.URL) { +func (t *Document) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -104494,8 +104494,8 @@ func (t *Document) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Document) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Document) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -104513,13 +104513,13 @@ func (t *Document) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Document) AppendBto(k url.URL) { +func (t *Document) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Document) PrependBto(k url.URL) { +func (t *Document) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -104550,8 +104550,8 @@ func (t *Document) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Document) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Document) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -104569,13 +104569,13 @@ func (t *Document) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Document) AppendCc(k url.URL) { +func (t *Document) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Document) PrependCc(k url.URL) { +func (t *Document) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -104606,8 +104606,8 @@ func (t *Document) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Document) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Document) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -104625,13 +104625,13 @@ func (t *Document) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Document) AppendBcc(k url.URL) { +func (t *Document) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Document) PrependBcc(k url.URL) { +func (t *Document) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -104984,8 +104984,8 @@ func (t *Document) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Document) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Document) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -104999,13 +104999,13 @@ func (t *Document) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Document) AppendStreams(k url.URL) { +func (t *Document) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Document) PrependStreams(k url.URL) { +func (t *Document) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -105102,8 +105102,8 @@ func (t *Document) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Document) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Document) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -105127,13 +105127,13 @@ func (t *Document) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Document) SetProxyUrl(k url.URL) { +func (t *Document) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Document) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Document) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -105157,13 +105157,13 @@ func (t *Document) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Document) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Document) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Document) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Document) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -105187,13 +105187,13 @@ func (t *Document) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Document) SetOauthTokenEndpoint(k url.URL) { +func (t *Document) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Document) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Document) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -105217,13 +105217,13 @@ func (t *Document) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Document) SetProvideClientKey(k url.URL) { +func (t *Document) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Document) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Document) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -105247,13 +105247,13 @@ func (t *Document) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Document) SetSignClientKey(k url.URL) { +func (t *Document) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Document) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Document) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -105277,7 +105277,7 @@ func (t *Document) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Document) SetSharedInbox(k url.URL) { +func (t *Document) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -105405,8 +105405,8 @@ func (t *Audio) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Audio) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Audio) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -105424,13 +105424,13 @@ func (t *Audio) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Audio) AppendAttributedTo(k url.URL) { +func (t *Audio) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Audio) PrependAttributedTo(k url.URL) { +func (t *Audio) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -105461,8 +105461,8 @@ func (t *Audio) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Audio) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Audio) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -105480,13 +105480,13 @@ func (t *Audio) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Audio) AppendAudience(k url.URL) { +func (t *Audio) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Audio) PrependAudience(k url.URL) { +func (t *Audio) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -105879,8 +105879,8 @@ func (t *Audio) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Audio) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Audio) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -105904,7 +105904,7 @@ func (t *Audio) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Audio) SetId(k url.URL) { +func (t *Audio) SetId(k *url.URL) { t.raw.SetId(k) } @@ -105971,8 +105971,8 @@ func (t *Audio) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Audio) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Audio) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -105990,13 +105990,13 @@ func (t *Audio) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Audio) AppendInReplyTo(k url.URL) { +func (t *Audio) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Audio) PrependInReplyTo(k url.URL) { +func (t *Audio) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -106471,8 +106471,8 @@ func (t *Audio) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Audio) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Audio) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -106488,13 +106488,13 @@ func (t *Audio) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Audio) AppendUrl(k url.URL) { +func (t *Audio) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Audio) PrependUrl(k url.URL) { +func (t *Audio) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -106523,8 +106523,8 @@ func (t *Audio) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Audio) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Audio) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -106542,13 +106542,13 @@ func (t *Audio) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Audio) AppendTo(k url.URL) { +func (t *Audio) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Audio) PrependTo(k url.URL) { +func (t *Audio) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -106579,8 +106579,8 @@ func (t *Audio) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Audio) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Audio) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -106598,13 +106598,13 @@ func (t *Audio) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Audio) AppendBto(k url.URL) { +func (t *Audio) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Audio) PrependBto(k url.URL) { +func (t *Audio) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -106635,8 +106635,8 @@ func (t *Audio) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Audio) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Audio) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -106654,13 +106654,13 @@ func (t *Audio) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Audio) AppendCc(k url.URL) { +func (t *Audio) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Audio) PrependCc(k url.URL) { +func (t *Audio) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -106691,8 +106691,8 @@ func (t *Audio) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Audio) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Audio) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -106710,13 +106710,13 @@ func (t *Audio) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Audio) AppendBcc(k url.URL) { +func (t *Audio) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Audio) PrependBcc(k url.URL) { +func (t *Audio) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -107069,8 +107069,8 @@ func (t *Audio) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Audio) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Audio) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -107084,13 +107084,13 @@ func (t *Audio) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Audio) AppendStreams(k url.URL) { +func (t *Audio) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Audio) PrependStreams(k url.URL) { +func (t *Audio) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -107187,8 +107187,8 @@ func (t *Audio) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Audio) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Audio) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -107212,13 +107212,13 @@ func (t *Audio) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Audio) SetProxyUrl(k url.URL) { +func (t *Audio) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Audio) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Audio) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -107242,13 +107242,13 @@ func (t *Audio) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Audio) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Audio) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Audio) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Audio) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -107272,13 +107272,13 @@ func (t *Audio) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Audio) SetOauthTokenEndpoint(k url.URL) { +func (t *Audio) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Audio) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Audio) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -107302,13 +107302,13 @@ func (t *Audio) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Audio) SetProvideClientKey(k url.URL) { +func (t *Audio) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Audio) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Audio) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -107332,13 +107332,13 @@ func (t *Audio) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Audio) SetSignClientKey(k url.URL) { +func (t *Audio) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Audio) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Audio) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -107362,7 +107362,7 @@ func (t *Audio) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Audio) SetSharedInbox(k url.URL) { +func (t *Audio) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -107558,8 +107558,8 @@ func (t *Image) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Image) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Image) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -107577,13 +107577,13 @@ func (t *Image) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Image) AppendAttributedTo(k url.URL) { +func (t *Image) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Image) PrependAttributedTo(k url.URL) { +func (t *Image) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -107614,8 +107614,8 @@ func (t *Image) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Image) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Image) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -107633,13 +107633,13 @@ func (t *Image) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Image) AppendAudience(k url.URL) { +func (t *Image) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Image) PrependAudience(k url.URL) { +func (t *Image) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -108032,8 +108032,8 @@ func (t *Image) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Image) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Image) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -108057,7 +108057,7 @@ func (t *Image) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Image) SetId(k url.URL) { +func (t *Image) SetId(k *url.URL) { t.raw.SetId(k) } @@ -108124,8 +108124,8 @@ func (t *Image) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Image) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Image) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -108143,13 +108143,13 @@ func (t *Image) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Image) AppendInReplyTo(k url.URL) { +func (t *Image) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Image) PrependInReplyTo(k url.URL) { +func (t *Image) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -108624,8 +108624,8 @@ func (t *Image) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Image) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Image) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -108641,13 +108641,13 @@ func (t *Image) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Image) AppendUrl(k url.URL) { +func (t *Image) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Image) PrependUrl(k url.URL) { +func (t *Image) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -108676,8 +108676,8 @@ func (t *Image) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Image) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Image) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -108695,13 +108695,13 @@ func (t *Image) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Image) AppendTo(k url.URL) { +func (t *Image) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Image) PrependTo(k url.URL) { +func (t *Image) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -108732,8 +108732,8 @@ func (t *Image) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Image) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Image) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -108751,13 +108751,13 @@ func (t *Image) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Image) AppendBto(k url.URL) { +func (t *Image) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Image) PrependBto(k url.URL) { +func (t *Image) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -108788,8 +108788,8 @@ func (t *Image) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Image) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Image) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -108807,13 +108807,13 @@ func (t *Image) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Image) AppendCc(k url.URL) { +func (t *Image) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Image) PrependCc(k url.URL) { +func (t *Image) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -108844,8 +108844,8 @@ func (t *Image) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Image) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Image) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -108863,13 +108863,13 @@ func (t *Image) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Image) AppendBcc(k url.URL) { +func (t *Image) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Image) PrependBcc(k url.URL) { +func (t *Image) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -109222,8 +109222,8 @@ func (t *Image) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Image) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Image) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -109237,13 +109237,13 @@ func (t *Image) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Image) AppendStreams(k url.URL) { +func (t *Image) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Image) PrependStreams(k url.URL) { +func (t *Image) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -109340,8 +109340,8 @@ func (t *Image) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Image) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Image) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -109365,13 +109365,13 @@ func (t *Image) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Image) SetProxyUrl(k url.URL) { +func (t *Image) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Image) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Image) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -109395,13 +109395,13 @@ func (t *Image) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Image) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Image) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Image) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Image) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -109425,13 +109425,13 @@ func (t *Image) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Image) SetOauthTokenEndpoint(k url.URL) { +func (t *Image) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Image) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Image) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -109455,13 +109455,13 @@ func (t *Image) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Image) SetProvideClientKey(k url.URL) { +func (t *Image) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Image) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Image) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -109485,13 +109485,13 @@ func (t *Image) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Image) SetSignClientKey(k url.URL) { +func (t *Image) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Image) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Image) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -109515,7 +109515,7 @@ func (t *Image) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Image) SetSharedInbox(k url.URL) { +func (t *Image) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -109643,8 +109643,8 @@ func (t *Video) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Video) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Video) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -109662,13 +109662,13 @@ func (t *Video) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Video) AppendAttributedTo(k url.URL) { +func (t *Video) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Video) PrependAttributedTo(k url.URL) { +func (t *Video) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -109699,8 +109699,8 @@ func (t *Video) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Video) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Video) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -109718,13 +109718,13 @@ func (t *Video) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Video) AppendAudience(k url.URL) { +func (t *Video) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Video) PrependAudience(k url.URL) { +func (t *Video) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -110117,8 +110117,8 @@ func (t *Video) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Video) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Video) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -110142,7 +110142,7 @@ func (t *Video) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Video) SetId(k url.URL) { +func (t *Video) SetId(k *url.URL) { t.raw.SetId(k) } @@ -110209,8 +110209,8 @@ func (t *Video) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Video) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Video) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -110228,13 +110228,13 @@ func (t *Video) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Video) AppendInReplyTo(k url.URL) { +func (t *Video) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Video) PrependInReplyTo(k url.URL) { +func (t *Video) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -110709,8 +110709,8 @@ func (t *Video) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Video) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Video) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -110726,13 +110726,13 @@ func (t *Video) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Video) AppendUrl(k url.URL) { +func (t *Video) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Video) PrependUrl(k url.URL) { +func (t *Video) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -110761,8 +110761,8 @@ func (t *Video) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Video) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Video) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -110780,13 +110780,13 @@ func (t *Video) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Video) AppendTo(k url.URL) { +func (t *Video) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Video) PrependTo(k url.URL) { +func (t *Video) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -110817,8 +110817,8 @@ func (t *Video) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Video) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Video) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -110836,13 +110836,13 @@ func (t *Video) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Video) AppendBto(k url.URL) { +func (t *Video) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Video) PrependBto(k url.URL) { +func (t *Video) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -110873,8 +110873,8 @@ func (t *Video) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Video) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Video) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -110892,13 +110892,13 @@ func (t *Video) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Video) AppendCc(k url.URL) { +func (t *Video) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Video) PrependCc(k url.URL) { +func (t *Video) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -110929,8 +110929,8 @@ func (t *Video) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Video) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Video) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -110948,13 +110948,13 @@ func (t *Video) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Video) AppendBcc(k url.URL) { +func (t *Video) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Video) PrependBcc(k url.URL) { +func (t *Video) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -111307,8 +111307,8 @@ func (t *Video) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Video) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Video) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -111322,13 +111322,13 @@ func (t *Video) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Video) AppendStreams(k url.URL) { +func (t *Video) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Video) PrependStreams(k url.URL) { +func (t *Video) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -111425,8 +111425,8 @@ func (t *Video) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Video) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Video) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -111450,13 +111450,13 @@ func (t *Video) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Video) SetProxyUrl(k url.URL) { +func (t *Video) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Video) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Video) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -111480,13 +111480,13 @@ func (t *Video) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Video) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Video) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Video) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Video) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -111510,13 +111510,13 @@ func (t *Video) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Video) SetOauthTokenEndpoint(k url.URL) { +func (t *Video) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Video) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Video) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -111540,13 +111540,13 @@ func (t *Video) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Video) SetProvideClientKey(k url.URL) { +func (t *Video) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Video) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Video) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -111570,13 +111570,13 @@ func (t *Video) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Video) SetSignClientKey(k url.URL) { +func (t *Video) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Video) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Video) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -111600,7 +111600,7 @@ func (t *Video) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Video) SetSharedInbox(k url.URL) { +func (t *Video) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -111728,8 +111728,8 @@ func (t *Note) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Note) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Note) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -111747,13 +111747,13 @@ func (t *Note) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Note) AppendAttributedTo(k url.URL) { +func (t *Note) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Note) PrependAttributedTo(k url.URL) { +func (t *Note) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -111784,8 +111784,8 @@ func (t *Note) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Note) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Note) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -111803,13 +111803,13 @@ func (t *Note) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Note) AppendAudience(k url.URL) { +func (t *Note) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Note) PrependAudience(k url.URL) { +func (t *Note) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -112202,8 +112202,8 @@ func (t *Note) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Note) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Note) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -112227,7 +112227,7 @@ func (t *Note) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Note) SetId(k url.URL) { +func (t *Note) SetId(k *url.URL) { t.raw.SetId(k) } @@ -112294,8 +112294,8 @@ func (t *Note) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Note) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Note) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -112313,13 +112313,13 @@ func (t *Note) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Note) AppendInReplyTo(k url.URL) { +func (t *Note) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Note) PrependInReplyTo(k url.URL) { +func (t *Note) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -112794,8 +112794,8 @@ func (t *Note) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Note) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Note) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -112811,13 +112811,13 @@ func (t *Note) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Note) AppendUrl(k url.URL) { +func (t *Note) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Note) PrependUrl(k url.URL) { +func (t *Note) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -112846,8 +112846,8 @@ func (t *Note) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Note) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Note) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -112865,13 +112865,13 @@ func (t *Note) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Note) AppendTo(k url.URL) { +func (t *Note) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Note) PrependTo(k url.URL) { +func (t *Note) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -112902,8 +112902,8 @@ func (t *Note) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Note) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Note) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -112921,13 +112921,13 @@ func (t *Note) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Note) AppendBto(k url.URL) { +func (t *Note) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Note) PrependBto(k url.URL) { +func (t *Note) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -112958,8 +112958,8 @@ func (t *Note) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Note) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Note) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -112977,13 +112977,13 @@ func (t *Note) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Note) AppendCc(k url.URL) { +func (t *Note) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Note) PrependCc(k url.URL) { +func (t *Note) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -113014,8 +113014,8 @@ func (t *Note) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Note) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Note) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -113033,13 +113033,13 @@ func (t *Note) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Note) AppendBcc(k url.URL) { +func (t *Note) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Note) PrependBcc(k url.URL) { +func (t *Note) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -113392,8 +113392,8 @@ func (t *Note) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Note) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Note) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -113407,13 +113407,13 @@ func (t *Note) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Note) AppendStreams(k url.URL) { +func (t *Note) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Note) PrependStreams(k url.URL) { +func (t *Note) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -113510,8 +113510,8 @@ func (t *Note) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Note) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Note) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -113535,13 +113535,13 @@ func (t *Note) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Note) SetProxyUrl(k url.URL) { +func (t *Note) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Note) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Note) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -113565,13 +113565,13 @@ func (t *Note) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Note) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Note) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Note) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Note) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -113595,13 +113595,13 @@ func (t *Note) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Note) SetOauthTokenEndpoint(k url.URL) { +func (t *Note) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Note) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Note) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -113625,13 +113625,13 @@ func (t *Note) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Note) SetProvideClientKey(k url.URL) { +func (t *Note) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Note) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Note) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -113655,13 +113655,13 @@ func (t *Note) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Note) SetSignClientKey(k url.URL) { +func (t *Note) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Note) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Note) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -113685,7 +113685,7 @@ func (t *Note) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Note) SetSharedInbox(k url.URL) { +func (t *Note) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -113813,8 +113813,8 @@ func (t *Page) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Page) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Page) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -113832,13 +113832,13 @@ func (t *Page) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Page) AppendAttributedTo(k url.URL) { +func (t *Page) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Page) PrependAttributedTo(k url.URL) { +func (t *Page) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -113869,8 +113869,8 @@ func (t *Page) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Page) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Page) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -113888,13 +113888,13 @@ func (t *Page) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Page) AppendAudience(k url.URL) { +func (t *Page) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Page) PrependAudience(k url.URL) { +func (t *Page) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -114287,8 +114287,8 @@ func (t *Page) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Page) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Page) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -114312,7 +114312,7 @@ func (t *Page) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Page) SetId(k url.URL) { +func (t *Page) SetId(k *url.URL) { t.raw.SetId(k) } @@ -114379,8 +114379,8 @@ func (t *Page) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Page) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Page) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -114398,13 +114398,13 @@ func (t *Page) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Page) AppendInReplyTo(k url.URL) { +func (t *Page) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Page) PrependInReplyTo(k url.URL) { +func (t *Page) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -114879,8 +114879,8 @@ func (t *Page) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Page) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Page) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -114896,13 +114896,13 @@ func (t *Page) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Page) AppendUrl(k url.URL) { +func (t *Page) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Page) PrependUrl(k url.URL) { +func (t *Page) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -114931,8 +114931,8 @@ func (t *Page) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Page) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Page) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -114950,13 +114950,13 @@ func (t *Page) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Page) AppendTo(k url.URL) { +func (t *Page) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Page) PrependTo(k url.URL) { +func (t *Page) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -114987,8 +114987,8 @@ func (t *Page) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Page) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Page) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -115006,13 +115006,13 @@ func (t *Page) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Page) AppendBto(k url.URL) { +func (t *Page) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Page) PrependBto(k url.URL) { +func (t *Page) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -115043,8 +115043,8 @@ func (t *Page) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Page) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Page) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -115062,13 +115062,13 @@ func (t *Page) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Page) AppendCc(k url.URL) { +func (t *Page) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Page) PrependCc(k url.URL) { +func (t *Page) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -115099,8 +115099,8 @@ func (t *Page) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Page) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Page) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -115118,13 +115118,13 @@ func (t *Page) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Page) AppendBcc(k url.URL) { +func (t *Page) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Page) PrependBcc(k url.URL) { +func (t *Page) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -115477,8 +115477,8 @@ func (t *Page) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Page) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Page) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -115492,13 +115492,13 @@ func (t *Page) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Page) AppendStreams(k url.URL) { +func (t *Page) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Page) PrependStreams(k url.URL) { +func (t *Page) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -115595,8 +115595,8 @@ func (t *Page) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Page) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Page) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -115620,13 +115620,13 @@ func (t *Page) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Page) SetProxyUrl(k url.URL) { +func (t *Page) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Page) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Page) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -115650,13 +115650,13 @@ func (t *Page) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Page) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Page) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Page) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Page) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -115680,13 +115680,13 @@ func (t *Page) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Page) SetOauthTokenEndpoint(k url.URL) { +func (t *Page) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Page) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Page) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -115710,13 +115710,13 @@ func (t *Page) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Page) SetProvideClientKey(k url.URL) { +func (t *Page) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Page) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Page) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -115740,13 +115740,13 @@ func (t *Page) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Page) SetSignClientKey(k url.URL) { +func (t *Page) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Page) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Page) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -115770,7 +115770,7 @@ func (t *Page) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Page) SetSharedInbox(k url.URL) { +func (t *Page) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -115898,8 +115898,8 @@ func (t *Event) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Event) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Event) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -115917,13 +115917,13 @@ func (t *Event) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Event) AppendAttributedTo(k url.URL) { +func (t *Event) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Event) PrependAttributedTo(k url.URL) { +func (t *Event) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -115954,8 +115954,8 @@ func (t *Event) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Event) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Event) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -115973,13 +115973,13 @@ func (t *Event) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Event) AppendAudience(k url.URL) { +func (t *Event) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Event) PrependAudience(k url.URL) { +func (t *Event) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -116372,8 +116372,8 @@ func (t *Event) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Event) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Event) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -116397,7 +116397,7 @@ func (t *Event) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Event) SetId(k url.URL) { +func (t *Event) SetId(k *url.URL) { t.raw.SetId(k) } @@ -116464,8 +116464,8 @@ func (t *Event) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Event) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Event) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -116483,13 +116483,13 @@ func (t *Event) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Event) AppendInReplyTo(k url.URL) { +func (t *Event) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Event) PrependInReplyTo(k url.URL) { +func (t *Event) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -116964,8 +116964,8 @@ func (t *Event) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Event) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Event) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -116981,13 +116981,13 @@ func (t *Event) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Event) AppendUrl(k url.URL) { +func (t *Event) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Event) PrependUrl(k url.URL) { +func (t *Event) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -117016,8 +117016,8 @@ func (t *Event) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Event) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Event) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -117035,13 +117035,13 @@ func (t *Event) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Event) AppendTo(k url.URL) { +func (t *Event) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Event) PrependTo(k url.URL) { +func (t *Event) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -117072,8 +117072,8 @@ func (t *Event) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Event) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Event) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -117091,13 +117091,13 @@ func (t *Event) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Event) AppendBto(k url.URL) { +func (t *Event) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Event) PrependBto(k url.URL) { +func (t *Event) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -117128,8 +117128,8 @@ func (t *Event) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Event) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Event) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -117147,13 +117147,13 @@ func (t *Event) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Event) AppendCc(k url.URL) { +func (t *Event) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Event) PrependCc(k url.URL) { +func (t *Event) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -117184,8 +117184,8 @@ func (t *Event) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Event) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Event) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -117203,13 +117203,13 @@ func (t *Event) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Event) AppendBcc(k url.URL) { +func (t *Event) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Event) PrependBcc(k url.URL) { +func (t *Event) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -117562,8 +117562,8 @@ func (t *Event) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Event) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Event) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -117577,13 +117577,13 @@ func (t *Event) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Event) AppendStreams(k url.URL) { +func (t *Event) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Event) PrependStreams(k url.URL) { +func (t *Event) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -117680,8 +117680,8 @@ func (t *Event) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Event) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Event) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -117705,13 +117705,13 @@ func (t *Event) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Event) SetProxyUrl(k url.URL) { +func (t *Event) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Event) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Event) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -117735,13 +117735,13 @@ func (t *Event) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Event) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Event) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Event) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Event) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -117765,13 +117765,13 @@ func (t *Event) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Event) SetOauthTokenEndpoint(k url.URL) { +func (t *Event) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Event) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Event) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -117795,13 +117795,13 @@ func (t *Event) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Event) SetProvideClientKey(k url.URL) { +func (t *Event) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Event) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Event) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -117825,13 +117825,13 @@ func (t *Event) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Event) SetSignClientKey(k url.URL) { +func (t *Event) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Event) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Event) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -117855,7 +117855,7 @@ func (t *Event) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Event) SetSharedInbox(k url.URL) { +func (t *Event) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -118153,8 +118153,8 @@ func (t *Place) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Place) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Place) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -118172,13 +118172,13 @@ func (t *Place) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Place) AppendAttributedTo(k url.URL) { +func (t *Place) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Place) PrependAttributedTo(k url.URL) { +func (t *Place) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -118209,8 +118209,8 @@ func (t *Place) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Place) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Place) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -118228,13 +118228,13 @@ func (t *Place) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Place) AppendAudience(k url.URL) { +func (t *Place) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Place) PrependAudience(k url.URL) { +func (t *Place) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -118627,8 +118627,8 @@ func (t *Place) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Place) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Place) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -118652,7 +118652,7 @@ func (t *Place) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Place) SetId(k url.URL) { +func (t *Place) SetId(k *url.URL) { t.raw.SetId(k) } @@ -118719,8 +118719,8 @@ func (t *Place) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Place) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Place) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -118738,13 +118738,13 @@ func (t *Place) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Place) AppendInReplyTo(k url.URL) { +func (t *Place) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Place) PrependInReplyTo(k url.URL) { +func (t *Place) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -119219,8 +119219,8 @@ func (t *Place) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Place) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Place) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -119236,13 +119236,13 @@ func (t *Place) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Place) AppendUrl(k url.URL) { +func (t *Place) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Place) PrependUrl(k url.URL) { +func (t *Place) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -119271,8 +119271,8 @@ func (t *Place) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Place) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Place) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -119290,13 +119290,13 @@ func (t *Place) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Place) AppendTo(k url.URL) { +func (t *Place) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Place) PrependTo(k url.URL) { +func (t *Place) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -119327,8 +119327,8 @@ func (t *Place) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Place) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Place) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -119346,13 +119346,13 @@ func (t *Place) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Place) AppendBto(k url.URL) { +func (t *Place) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Place) PrependBto(k url.URL) { +func (t *Place) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -119383,8 +119383,8 @@ func (t *Place) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Place) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Place) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -119402,13 +119402,13 @@ func (t *Place) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Place) AppendCc(k url.URL) { +func (t *Place) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Place) PrependCc(k url.URL) { +func (t *Place) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -119439,8 +119439,8 @@ func (t *Place) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Place) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Place) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -119458,13 +119458,13 @@ func (t *Place) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Place) AppendBcc(k url.URL) { +func (t *Place) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Place) PrependBcc(k url.URL) { +func (t *Place) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -119817,8 +119817,8 @@ func (t *Place) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Place) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Place) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -119832,13 +119832,13 @@ func (t *Place) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Place) AppendStreams(k url.URL) { +func (t *Place) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Place) PrependStreams(k url.URL) { +func (t *Place) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -119935,8 +119935,8 @@ func (t *Place) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Place) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Place) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -119960,13 +119960,13 @@ func (t *Place) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Place) SetProxyUrl(k url.URL) { +func (t *Place) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Place) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Place) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -119990,13 +119990,13 @@ func (t *Place) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Place) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Place) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Place) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Place) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -120020,13 +120020,13 @@ func (t *Place) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Place) SetOauthTokenEndpoint(k url.URL) { +func (t *Place) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Place) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Place) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -120050,13 +120050,13 @@ func (t *Place) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Place) SetProvideClientKey(k url.URL) { +func (t *Place) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Place) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Place) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -120080,13 +120080,13 @@ func (t *Place) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Place) SetSignClientKey(k url.URL) { +func (t *Place) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Place) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Place) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -120110,7 +120110,7 @@ func (t *Place) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Place) SetSharedInbox(k url.URL) { +func (t *Place) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -120272,8 +120272,8 @@ func (t *Profile) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Profile) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Profile) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -120291,13 +120291,13 @@ func (t *Profile) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Profile) AppendAttributedTo(k url.URL) { +func (t *Profile) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Profile) PrependAttributedTo(k url.URL) { +func (t *Profile) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -120328,8 +120328,8 @@ func (t *Profile) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Profile) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Profile) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -120347,13 +120347,13 @@ func (t *Profile) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Profile) AppendAudience(k url.URL) { +func (t *Profile) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Profile) PrependAudience(k url.URL) { +func (t *Profile) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -120746,8 +120746,8 @@ func (t *Profile) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Profile) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Profile) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -120771,7 +120771,7 @@ func (t *Profile) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Profile) SetId(k url.URL) { +func (t *Profile) SetId(k *url.URL) { t.raw.SetId(k) } @@ -120838,8 +120838,8 @@ func (t *Profile) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Profile) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Profile) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -120857,13 +120857,13 @@ func (t *Profile) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Profile) AppendInReplyTo(k url.URL) { +func (t *Profile) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Profile) PrependInReplyTo(k url.URL) { +func (t *Profile) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -121338,8 +121338,8 @@ func (t *Profile) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Profile) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Profile) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -121355,13 +121355,13 @@ func (t *Profile) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Profile) AppendUrl(k url.URL) { +func (t *Profile) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Profile) PrependUrl(k url.URL) { +func (t *Profile) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -121390,8 +121390,8 @@ func (t *Profile) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Profile) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Profile) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -121409,13 +121409,13 @@ func (t *Profile) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Profile) AppendTo(k url.URL) { +func (t *Profile) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Profile) PrependTo(k url.URL) { +func (t *Profile) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -121446,8 +121446,8 @@ func (t *Profile) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Profile) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Profile) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -121465,13 +121465,13 @@ func (t *Profile) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Profile) AppendBto(k url.URL) { +func (t *Profile) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Profile) PrependBto(k url.URL) { +func (t *Profile) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -121502,8 +121502,8 @@ func (t *Profile) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Profile) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Profile) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -121521,13 +121521,13 @@ func (t *Profile) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Profile) AppendCc(k url.URL) { +func (t *Profile) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Profile) PrependCc(k url.URL) { +func (t *Profile) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -121558,8 +121558,8 @@ func (t *Profile) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Profile) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Profile) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -121577,13 +121577,13 @@ func (t *Profile) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Profile) AppendBcc(k url.URL) { +func (t *Profile) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Profile) PrependBcc(k url.URL) { +func (t *Profile) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -121936,8 +121936,8 @@ func (t *Profile) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Profile) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Profile) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -121951,13 +121951,13 @@ func (t *Profile) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Profile) AppendStreams(k url.URL) { +func (t *Profile) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Profile) PrependStreams(k url.URL) { +func (t *Profile) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -122054,8 +122054,8 @@ func (t *Profile) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Profile) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Profile) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -122079,13 +122079,13 @@ func (t *Profile) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Profile) SetProxyUrl(k url.URL) { +func (t *Profile) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Profile) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Profile) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -122109,13 +122109,13 @@ func (t *Profile) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Profile) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Profile) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Profile) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Profile) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -122139,13 +122139,13 @@ func (t *Profile) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Profile) SetOauthTokenEndpoint(k url.URL) { +func (t *Profile) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Profile) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Profile) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -122169,13 +122169,13 @@ func (t *Profile) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Profile) SetProvideClientKey(k url.URL) { +func (t *Profile) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Profile) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Profile) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -122199,13 +122199,13 @@ func (t *Profile) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Profile) SetSignClientKey(k url.URL) { +func (t *Profile) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Profile) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Profile) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -122229,7 +122229,7 @@ func (t *Profile) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Profile) SetSharedInbox(k url.URL) { +func (t *Profile) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -122447,8 +122447,8 @@ func (t *Tombstone) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Tombstone) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Tombstone) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -122466,13 +122466,13 @@ func (t *Tombstone) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Tombstone) AppendAttributedTo(k url.URL) { +func (t *Tombstone) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Tombstone) PrependAttributedTo(k url.URL) { +func (t *Tombstone) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -122503,8 +122503,8 @@ func (t *Tombstone) LenAudience() (idx int) { } -// GetAudience attempts to get this 'audience' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Tombstone) GetAudience(idx int) (r Resolution, k url.URL) { +// GetAudience attempts to get this 'audience' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Tombstone) GetAudience(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAudienceIRI(idx) { @@ -122522,13 +122522,13 @@ func (t *Tombstone) GetAudience(idx int) (r Resolution, k url.URL) { } // AppendAudience appends the value for property 'audience'. -func (t *Tombstone) AppendAudience(k url.URL) { +func (t *Tombstone) AppendAudience(k *url.URL) { t.raw.AppendAudienceIRI(k) } // PrependAudience prepends the value for property 'audience'. -func (t *Tombstone) PrependAudience(k url.URL) { +func (t *Tombstone) PrependAudience(k *url.URL) { t.raw.PrependAudienceIRI(k) } @@ -122921,8 +122921,8 @@ func (t *Tombstone) HasIcon(idx int) (p Presence) { } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Tombstone) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Tombstone) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -122946,7 +122946,7 @@ func (t *Tombstone) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Tombstone) SetId(k url.URL) { +func (t *Tombstone) SetId(k *url.URL) { t.raw.SetId(k) } @@ -123013,8 +123013,8 @@ func (t *Tombstone) LenInReplyTo() (idx int) { } -// GetInReplyTo attempts to get this 'inReplyTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Tombstone) GetInReplyTo(idx int) (r Resolution, k url.URL) { +// GetInReplyTo attempts to get this 'inReplyTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Tombstone) GetInReplyTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsInReplyToIRI(idx) { @@ -123032,13 +123032,13 @@ func (t *Tombstone) GetInReplyTo(idx int) (r Resolution, k url.URL) { } // AppendInReplyTo appends the value for property 'inReplyTo'. -func (t *Tombstone) AppendInReplyTo(k url.URL) { +func (t *Tombstone) AppendInReplyTo(k *url.URL) { t.raw.AppendInReplyToIRI(k) } // PrependInReplyTo prepends the value for property 'inReplyTo'. -func (t *Tombstone) PrependInReplyTo(k url.URL) { +func (t *Tombstone) PrependInReplyTo(k *url.URL) { t.raw.PrependInReplyToIRI(k) } @@ -123513,8 +123513,8 @@ func (t *Tombstone) LenUrl() (idx int) { } -// GetUrl attempts to get this 'url' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Tombstone) GetUrl(idx int) (r Resolution, k url.URL) { +// GetUrl attempts to get this 'url' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Tombstone) GetUrl(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsUrlAnyURI(idx) { @@ -123530,13 +123530,13 @@ func (t *Tombstone) GetUrl(idx int) (r Resolution, k url.URL) { } // AppendUrl appends the value for property 'url'. -func (t *Tombstone) AppendUrl(k url.URL) { +func (t *Tombstone) AppendUrl(k *url.URL) { t.raw.AppendUrlAnyURI(k) } // PrependUrl prepends the value for property 'url'. -func (t *Tombstone) PrependUrl(k url.URL) { +func (t *Tombstone) PrependUrl(k *url.URL) { t.raw.PrependUrlAnyURI(k) } @@ -123565,8 +123565,8 @@ func (t *Tombstone) LenTo() (idx int) { } -// GetTo attempts to get this 'to' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Tombstone) GetTo(idx int) (r Resolution, k url.URL) { +// GetTo attempts to get this 'to' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Tombstone) GetTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsToIRI(idx) { @@ -123584,13 +123584,13 @@ func (t *Tombstone) GetTo(idx int) (r Resolution, k url.URL) { } // AppendTo appends the value for property 'to'. -func (t *Tombstone) AppendTo(k url.URL) { +func (t *Tombstone) AppendTo(k *url.URL) { t.raw.AppendToIRI(k) } // PrependTo prepends the value for property 'to'. -func (t *Tombstone) PrependTo(k url.URL) { +func (t *Tombstone) PrependTo(k *url.URL) { t.raw.PrependToIRI(k) } @@ -123621,8 +123621,8 @@ func (t *Tombstone) LenBto() (idx int) { } -// GetBto attempts to get this 'bto' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Tombstone) GetBto(idx int) (r Resolution, k url.URL) { +// GetBto attempts to get this 'bto' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Tombstone) GetBto(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBtoIRI(idx) { @@ -123640,13 +123640,13 @@ func (t *Tombstone) GetBto(idx int) (r Resolution, k url.URL) { } // AppendBto appends the value for property 'bto'. -func (t *Tombstone) AppendBto(k url.URL) { +func (t *Tombstone) AppendBto(k *url.URL) { t.raw.AppendBtoIRI(k) } // PrependBto prepends the value for property 'bto'. -func (t *Tombstone) PrependBto(k url.URL) { +func (t *Tombstone) PrependBto(k *url.URL) { t.raw.PrependBtoIRI(k) } @@ -123677,8 +123677,8 @@ func (t *Tombstone) LenCc() (idx int) { } -// GetCc attempts to get this 'cc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Tombstone) GetCc(idx int) (r Resolution, k url.URL) { +// GetCc attempts to get this 'cc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Tombstone) GetCc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsCcIRI(idx) { @@ -123696,13 +123696,13 @@ func (t *Tombstone) GetCc(idx int) (r Resolution, k url.URL) { } // AppendCc appends the value for property 'cc'. -func (t *Tombstone) AppendCc(k url.URL) { +func (t *Tombstone) AppendCc(k *url.URL) { t.raw.AppendCcIRI(k) } // PrependCc prepends the value for property 'cc'. -func (t *Tombstone) PrependCc(k url.URL) { +func (t *Tombstone) PrependCc(k *url.URL) { t.raw.PrependCcIRI(k) } @@ -123733,8 +123733,8 @@ func (t *Tombstone) LenBcc() (idx int) { } -// GetBcc attempts to get this 'bcc' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Tombstone) GetBcc(idx int) (r Resolution, k url.URL) { +// GetBcc attempts to get this 'bcc' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Tombstone) GetBcc(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsBccIRI(idx) { @@ -123752,13 +123752,13 @@ func (t *Tombstone) GetBcc(idx int) (r Resolution, k url.URL) { } // AppendBcc appends the value for property 'bcc'. -func (t *Tombstone) AppendBcc(k url.URL) { +func (t *Tombstone) AppendBcc(k *url.URL) { t.raw.AppendBccIRI(k) } // PrependBcc prepends the value for property 'bcc'. -func (t *Tombstone) PrependBcc(k url.URL) { +func (t *Tombstone) PrependBcc(k *url.URL) { t.raw.PrependBccIRI(k) } @@ -124111,8 +124111,8 @@ func (t *Tombstone) LenStreams() (idx int) { } -// GetStreams attempts to get this 'streams' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Tombstone) GetStreams(idx int) (r Resolution, k url.URL) { +// GetStreams attempts to get this 'streams' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Tombstone) GetStreams(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if /*t.raw.HasStreams(idx)*/ true { @@ -124126,13 +124126,13 @@ func (t *Tombstone) GetStreams(idx int) (r Resolution, k url.URL) { } // AppendStreams appends the value for property 'streams'. -func (t *Tombstone) AppendStreams(k url.URL) { +func (t *Tombstone) AppendStreams(k *url.URL) { t.raw.AppendStreams(k) } // PrependStreams prepends the value for property 'streams'. -func (t *Tombstone) PrependStreams(k url.URL) { +func (t *Tombstone) PrependStreams(k *url.URL) { t.raw.PrependStreams(k) } @@ -124229,8 +124229,8 @@ func (t *Tombstone) SetEndpoints(i vocab.ObjectType) { } -// GetProxyUrl attempts to get this 'proxyUrl' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Tombstone) GetProxyUrl() (r Resolution, k url.URL) { +// GetProxyUrl attempts to get this 'proxyUrl' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Tombstone) GetProxyUrl() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProxyUrl() { @@ -124254,13 +124254,13 @@ func (t *Tombstone) HasProxyUrl() (p Presence) { } // SetProxyUrl sets the value for property 'proxyUrl'. -func (t *Tombstone) SetProxyUrl(k url.URL) { +func (t *Tombstone) SetProxyUrl(k *url.URL) { t.raw.SetProxyUrl(k) } -// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Tombstone) GetOauthAuthorizationEndpoint() (r Resolution, k url.URL) { +// GetOauthAuthorizationEndpoint attempts to get this 'oauthAuthorizationEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Tombstone) GetOauthAuthorizationEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthAuthorizationEndpoint() { @@ -124284,13 +124284,13 @@ func (t *Tombstone) HasOauthAuthorizationEndpoint() (p Presence) { } // SetOauthAuthorizationEndpoint sets the value for property 'oauthAuthorizationEndpoint'. -func (t *Tombstone) SetOauthAuthorizationEndpoint(k url.URL) { +func (t *Tombstone) SetOauthAuthorizationEndpoint(k *url.URL) { t.raw.SetOauthAuthorizationEndpoint(k) } -// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Tombstone) GetOauthTokenEndpoint() (r Resolution, k url.URL) { +// GetOauthTokenEndpoint attempts to get this 'oauthTokenEndpoint' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Tombstone) GetOauthTokenEndpoint() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasOauthTokenEndpoint() { @@ -124314,13 +124314,13 @@ func (t *Tombstone) HasOauthTokenEndpoint() (p Presence) { } // SetOauthTokenEndpoint sets the value for property 'oauthTokenEndpoint'. -func (t *Tombstone) SetOauthTokenEndpoint(k url.URL) { +func (t *Tombstone) SetOauthTokenEndpoint(k *url.URL) { t.raw.SetOauthTokenEndpoint(k) } -// GetProvideClientKey attempts to get this 'provideClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Tombstone) GetProvideClientKey() (r Resolution, k url.URL) { +// GetProvideClientKey attempts to get this 'provideClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Tombstone) GetProvideClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasProvideClientKey() { @@ -124344,13 +124344,13 @@ func (t *Tombstone) HasProvideClientKey() (p Presence) { } // SetProvideClientKey sets the value for property 'provideClientKey'. -func (t *Tombstone) SetProvideClientKey(k url.URL) { +func (t *Tombstone) SetProvideClientKey(k *url.URL) { t.raw.SetProvideClientKey(k) } -// GetSignClientKey attempts to get this 'signClientKey' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Tombstone) GetSignClientKey() (r Resolution, k url.URL) { +// GetSignClientKey attempts to get this 'signClientKey' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Tombstone) GetSignClientKey() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSignClientKey() { @@ -124374,13 +124374,13 @@ func (t *Tombstone) HasSignClientKey() (p Presence) { } // SetSignClientKey sets the value for property 'signClientKey'. -func (t *Tombstone) SetSignClientKey(k url.URL) { +func (t *Tombstone) SetSignClientKey(k *url.URL) { t.raw.SetSignClientKey(k) } -// GetSharedInbox attempts to get this 'sharedInbox' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Tombstone) GetSharedInbox() (r Resolution, k url.URL) { +// GetSharedInbox attempts to get this 'sharedInbox' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Tombstone) GetSharedInbox() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasSharedInbox() { @@ -124404,7 +124404,7 @@ func (t *Tombstone) HasSharedInbox() (p Presence) { } // SetSharedInbox sets the value for property 'sharedInbox'. -func (t *Tombstone) SetSharedInbox(k url.URL) { +func (t *Tombstone) SetSharedInbox(k *url.URL) { t.raw.SetSharedInbox(k) } @@ -124433,8 +124433,8 @@ func (t *Mention) LenAttributedTo() (idx int) { } -// GetAttributedTo attempts to get this 'attributedTo' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Mention) GetAttributedTo(idx int) (r Resolution, k url.URL) { +// GetAttributedTo attempts to get this 'attributedTo' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Mention) GetAttributedTo(idx int) (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.IsAttributedToIRI(idx) { @@ -124452,13 +124452,13 @@ func (t *Mention) GetAttributedTo(idx int) (r Resolution, k url.URL) { } // AppendAttributedTo appends the value for property 'attributedTo'. -func (t *Mention) AppendAttributedTo(k url.URL) { +func (t *Mention) AppendAttributedTo(k *url.URL) { t.raw.AppendAttributedToIRI(k) } // PrependAttributedTo prepends the value for property 'attributedTo'. -func (t *Mention) PrependAttributedTo(k url.URL) { +func (t *Mention) PrependAttributedTo(k *url.URL) { t.raw.PrependAttributedToIRI(k) } @@ -124483,8 +124483,8 @@ func (t *Mention) HasAttributedTo(idx int) (p Presence) { } -// GetHref attempts to get this 'href' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Mention) GetHref() (r Resolution, k url.URL) { +// GetHref attempts to get this 'href' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Mention) GetHref() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasHref() { @@ -124508,13 +124508,13 @@ func (t *Mention) HasHref() (p Presence) { } // SetHref sets the value for property 'href'. -func (t *Mention) SetHref(k url.URL) { +func (t *Mention) SetHref(k *url.URL) { t.raw.SetHref(k) } -// GetId attempts to get this 'id' property as a url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. -func (t *Mention) GetId() (r Resolution, k url.URL) { +// GetId attempts to get this 'id' property as a *url.URL. It returns a Resolution appropriate for clients to determine whether it would be necessary to do raw handling. +func (t *Mention) GetId() (r Resolution, k *url.URL) { r = Unresolved handled := false if t.raw.HasId() { @@ -124538,7 +124538,7 @@ func (t *Mention) HasId() (p Presence) { } // SetId sets the value for property 'id'. -func (t *Mention) SetId(k url.URL) { +func (t *Mention) SetId(k *url.URL) { t.raw.SetId(k) } diff --git a/streams/streams_test.go b/streams/streams_test.go index c81525b..32626f3 100644 --- a/streams/streams_test.go +++ b/streams/streams_test.go @@ -242,17 +242,17 @@ func TestNulls(t *testing.T) { t.Fatal(err) } expectedSamActor := &vocab.Person{} - expectedSamActor.SetInboxAnyURI(*samIRIInbox) - expectedSamActor.SetId(*samIRI) + expectedSamActor.SetInboxAnyURI(samIRIInbox) + expectedSamActor.SetId(samIRI) expectedNote := &vocab.Note{} - expectedNote.SetId(*noteIRI) + expectedNote.SetId(noteIRI) expectedNote.AppendNameString("A Note") expectedNote.AppendContentString("This is a simple note") expectedNote.AppendToObject(expectedSamActor) expectedUpdate := &vocab.Update{} - expectedUpdate.AppendActorIRI(*sallyIRI) + expectedUpdate.AppendActorIRI(sallyIRI) expectedUpdate.AppendSummaryString("Sally updated her note") - expectedUpdate.SetId(*activityIRI) + expectedUpdate.SetId(activityIRI) expectedUpdate.AppendObject(expectedNote) tables := []struct { name string diff --git a/tools/defs/defs.go b/tools/defs/defs.go index ece5f81..f528d95 100644 --- a/tools/defs/defs.go +++ b/tools/defs/defs.go @@ -1308,7 +1308,7 @@ var ( SerializeFn: &FunctionDef{ Name: "anyURISerialize", Comment: "anyURISerialize turns a URI into a string", - Args: []*FunctionVarDef{{"u", "url.URL"}}, + Args: []*FunctionVarDef{{"u", "*url.URL"}}, Return: []*FunctionVarDef{{"s", "string"}}, Body: func() string { var b bytes.Buffer @@ -1895,7 +1895,7 @@ var IriValueType = &ValueType{ SerializeFn: &FunctionDef{ Name: "IRISerialize", Comment: "IRISerialize turns an IRI into a string", - Args: []*FunctionVarDef{{"u", "url.URL"}}, + Args: []*FunctionVarDef{{"u", "*url.URL"}}, Return: []*FunctionVarDef{{"s", "string"}}, Body: func() string { var b bytes.Buffer @@ -1923,6 +1923,10 @@ func HasAnyURI(r []RangeReference) bool { return false } +func IsIRIValueTypeString(v *ValueType) bool { + return v.DefinitionType == "*url.URL" +} + func IsIRIValueType(v *ValueType) bool { return v == IriValueType } diff --git a/tools/streams/gen/as.go b/tools/streams/gen/as.go index f50c2af..66ec130 100644 --- a/tools/streams/gen/as.go +++ b/tools/streams/gen/as.go @@ -295,7 +295,7 @@ func generateFunctionalPropertyHelper(p *defs.PropertyType, this *defs.StructDef } func generateFunctionalIRI(p *defs.PropertyType, this *defs.StructDef) { - kind := deref(defs.IriValueType.DefinitionType) + kind := defs.IriValueType.DefinitionType titleName := strings.Title(p.Name) onlyType := len(p.Range) == 1 iri := "IRI" @@ -569,6 +569,9 @@ func generateFunctionalPropertyValue(p *defs.PropertyType, this *defs.StructDef, additionalTitleName = "" } kind := deref(value.DefinitionType) + if defs.IsIRIValueTypeString(value) { + kind = value.DefinitionType + } titleName := strings.Title(p.Name) this.F = append(this.F, []*defs.MemberFunctionDef{ { @@ -705,7 +708,7 @@ func generateNonFunctionalPropertyHelper(p *defs.PropertyType, this *defs.Struct } func generateNonFunctionalIRI(p *defs.PropertyType, this *defs.StructDef) { - kind := deref(defs.IriValueType.DefinitionType) + kind := defs.IriValueType.DefinitionType titleName := strings.Title(p.Name) onlyType := len(p.Range) == 1 iri := "IRI" @@ -1098,6 +1101,9 @@ func generateNonFunctionalPropertyValue(p *defs.PropertyType, this *defs.StructD additionalTitleName = "" } kind := deref(value.DefinitionType) + if defs.IsIRIValueTypeString(value) { + kind = value.DefinitionType + } titleName := strings.Title(p.Name) this.F = append(this.F, []*defs.MemberFunctionDef{ { diff --git a/tools/vocab/gen/generate_definitions.go b/tools/vocab/gen/generate_definitions.go index 5ecc67e..4181286 100644 --- a/tools/vocab/gen/generate_definitions.go +++ b/tools/vocab/gen/generate_definitions.go @@ -75,7 +75,7 @@ func Deserialize(r defs.RangeReference, mapName, field string, slice bool) strin } else if r.V != nil { var b bytes.Buffer b.WriteString("// Begin generation by RangeReference.Deserialize for Value\n") - deserializeCode(&b, fmt.Sprintf("tmp, err := %s(v)\n", r.V.DeserializeFn.Name), mapName, "interface{}", field, slice, true) + deserializeCode(&b, fmt.Sprintf("tmp, err := %s(v)\n", r.V.DeserializeFn.Name), mapName, "interface{}", field, slice, false) b.WriteString("// End generation by RangeReference.Deserialize for Value\n") return b.String() } else { @@ -95,7 +95,7 @@ func Serialize(r defs.RangeReference, mapName, field string, slice bool) string return b.String() } else if r.V != nil { deref := "*" - if slice { + if slice || isIRIType(Type(r)) { deref = "" } var b bytes.Buffer diff --git a/tools/vocab/gen/generate_property_definitions.go b/tools/vocab/gen/generate_property_definitions.go index 56af923..58e3eaa 100644 --- a/tools/vocab/gen/generate_property_definitions.go +++ b/tools/vocab/gen/generate_property_definitions.go @@ -329,7 +329,11 @@ func generateFunctionalSingleTypeDefinition(t *defs.PropertyType, this *defs.Str } titleName := strings.Title(t.Name) isPtrType := isPtrType(member.Type) + isIRI := isIRIType(member.Type) returnType := deref(member.Type) + if isIRI { + returnType = member.Type + } this.M = append(this.M, member) this.F = append(this.F, &defs.MemberFunctionDef{ Name: fmt.Sprintf("Has%s", titleName), @@ -347,7 +351,7 @@ func generateFunctionalSingleTypeDefinition(t *defs.PropertyType, this *defs.Str Body: func() string { var b bytes.Buffer b.WriteString(fmt.Sprintf("return ")) - if isPtrType { + if isPtrType && !isIRI { b.WriteString("*") } b.WriteString(fmt.Sprintf("t.%s\n", member.Name)) @@ -361,7 +365,7 @@ func generateFunctionalSingleTypeDefinition(t *defs.PropertyType, this *defs.Str Body: func() string { var b bytes.Buffer b.WriteString(fmt.Sprintf("t.%s = ", member.Name)) - if isPtrType { + if isPtrType && !isIRI { b.WriteString("&") } b.WriteString("v\n") @@ -437,9 +441,16 @@ func generateFunctionalSingleTypeDefinition(t *defs.PropertyType, this *defs.Str } func generateNonFunctionalSingleTypeDefinition(t *defs.PropertyType, this *defs.StructDef, i *defs.InterfaceDef) (fd []*defs.FunctionDef, sd []*defs.StructDef, s, d string) { + isIRI := isIRIType(Type(t.Range[0])) + memberType := deref(Type(t.Range[0])) + returnType := memberType + if isIRI { + memberType = Type(t.Range[0]) + returnType = memberType + } member := &defs.StructMember{ Name: cleanName(t.Name), - Type: fmt.Sprintf("[]%s", deref(Type(t.Range[0]))), + Type: fmt.Sprintf("[]%s", memberType), Comment: fmt.Sprintf("The '%s' value holds a single type and any number of values", t.Name), } titleName := strings.Title(t.Name) @@ -457,7 +468,7 @@ func generateNonFunctionalSingleTypeDefinition(t *defs.PropertyType, this *defs. Comment: fmt.Sprintf("Get%s returns the value for the specified index", titleName), P: this, Args: []*defs.FunctionVarDef{{"index", "int"}}, - Return: []*defs.FunctionVarDef{{"v", deSlice(member.Type)}}, + Return: []*defs.FunctionVarDef{{"v", returnType}}, Body: func() string { var b bytes.Buffer b.WriteString(fmt.Sprintf("return t.%s[index]\n", member.Name)) @@ -467,7 +478,7 @@ func generateNonFunctionalSingleTypeDefinition(t *defs.PropertyType, this *defs. Name: fmt.Sprintf("Append%s", titleName), Comment: fmt.Sprintf("Append%s adds a value to the back of %s", titleName, t.Name), P: this, - Args: []*defs.FunctionVarDef{{"v", deSlice(member.Type)}}, + Args: []*defs.FunctionVarDef{{"v", returnType}}, Body: func() string { var b bytes.Buffer b.WriteString(fmt.Sprintf("t.%s = append(t.%s, v)\n", member.Name, member.Name)) @@ -477,7 +488,7 @@ func generateNonFunctionalSingleTypeDefinition(t *defs.PropertyType, this *defs. Name: fmt.Sprintf("Prepend%s", titleName), Comment: fmt.Sprintf("Prepend%s adds a value to the front of %s", titleName, t.Name), P: this, - Args: []*defs.FunctionVarDef{{"v", deSlice(member.Type)}}, + Args: []*defs.FunctionVarDef{{"v", returnType}}, Body: func() string { var b bytes.Buffer b.WriteString(fmt.Sprintf("t.%s = append(%s{v}, t.%s...)\n", member.Name, member.Type, member.Name)) @@ -540,17 +551,17 @@ func generateNonFunctionalSingleTypeDefinition(t *defs.PropertyType, this *defs. Name: fmt.Sprintf("Get%s", titleName), Comment: fmt.Sprintf("Get%s returns the value for the specified index", titleName), Args: []*defs.FunctionVarDef{{"index", "int"}}, - Return: []*defs.FunctionVarDef{{"v", deSlice(member.Type)}}, + Return: []*defs.FunctionVarDef{{"v", returnType}}, }, { Name: fmt.Sprintf("Append%s", titleName), Comment: fmt.Sprintf("Append%s adds a value to the back of %s", titleName, t.Name), - Args: []*defs.FunctionVarDef{{"v", deSlice(member.Type)}}, + Args: []*defs.FunctionVarDef{{"v", returnType}}, }, { Name: fmt.Sprintf("Prepend%s", titleName), Comment: fmt.Sprintf("Prepend%s adds a value to the front of %s", titleName, t.Name), - Args: []*defs.FunctionVarDef{{"v", deSlice(member.Type)}}, + Args: []*defs.FunctionVarDef{{"v", returnType}}, }, { Name: fmt.Sprintf("Remove%s", titleName), @@ -605,7 +616,11 @@ func generateFunctionalMultiTypeDefinition(t *defs.PropertyType, this *defs.Stru Comment: fmt.Sprintf("Stores possible %s type for %s property", Type(r), t.Name), } intermed.M = append(intermed.M, member) + isIRI := isIRIType(member.Type) retKind := deref(member.Type) + if isIRI { + retKind = member.Type + } typeExtensionName := strings.Title(Name(r)) if defs.IsOnlyOtherPropertyBesidesIRI(idx, t.Range) { typeExtensionName = "" @@ -628,7 +643,7 @@ func generateFunctionalMultiTypeDefinition(t *defs.PropertyType, this *defs.Stru Body: func() string { var b bytes.Buffer b.WriteString("return ") - if isPtrType(Type(r)) { + if isPtrType(Type(r)) && !isIRI { b.WriteString("*") } b.WriteString(fmt.Sprintf("t.%s.%s\n", thisIntermed.Name, member.Name)) @@ -643,7 +658,7 @@ func generateFunctionalMultiTypeDefinition(t *defs.PropertyType, this *defs.Stru Body: func() string { var b bytes.Buffer b.WriteString(fmt.Sprintf("t.%s = &%s{%s:", thisIntermed.Name, intermed.Typename, member.Name)) - if isPtrType(Type(r)) { + if isPtrType(Type(r)) && !isIRI { b.WriteString("&") } b.WriteString("v}\n") @@ -712,7 +727,11 @@ func generateNonFunctionalMultiTypeDefinition(t *defs.PropertyType, this *defs.S Comment: fmt.Sprintf("Stores possible %s type for %s property", Type(r), t.Name), } intermed.M = append(intermed.M, member) + isIRI := isIRIType(member.Type) retKind := deref(member.Type) + if isIRI { + retKind = member.Type + } typeExtensionName := strings.Title(Name(r)) if defs.IsOnlyOtherPropertyBesidesIRI(idx, t.Range) { typeExtensionName = "" @@ -753,7 +772,7 @@ func generateNonFunctionalMultiTypeDefinition(t *defs.PropertyType, this *defs.S Body: func() string { var b bytes.Buffer b.WriteString("return ") - if isPtrType(Type(r)) { + if isPtrType(Type(r)) && !isIRI { b.WriteString("*") } b.WriteString(fmt.Sprintf("t.%s[index].%s\n", thisIntermed.Name, member.Name)) @@ -768,7 +787,7 @@ func generateNonFunctionalMultiTypeDefinition(t *defs.PropertyType, this *defs.S Body: func() string { var b bytes.Buffer b.WriteString(fmt.Sprintf("t.%s = append(t.%s, &%s{%s:", thisIntermed.Name, thisIntermed.Name, intermed.Typename, member.Name)) - if isPtrType(Type(r)) { + if isPtrType(Type(r)) && !isIRI { b.WriteString("&") } b.WriteString("v})\n") @@ -783,7 +802,7 @@ func generateNonFunctionalMultiTypeDefinition(t *defs.PropertyType, this *defs.S Body: func() string { var b bytes.Buffer b.WriteString(fmt.Sprintf("t.%s = append([]*%s{&%s{%s:", thisIntermed.Name, intermed.Typename, intermed.Typename, member.Name)) - if isPtrType(Type(r)) { + if isPtrType(Type(r)) && !isIRI { b.WriteString("&") } b.WriteString(fmt.Sprintf("v}}, t.%s...)\n", thisIntermed.Name)) @@ -966,12 +985,17 @@ func generateIntermediateTypeDefinition(t *defs.PropertyType, parentTitle string Body: func() string { var b bytes.Buffer for _, r := range t.Range { + isIRI := isIRIType(Type(r)) + deref := "*" + if isIRI { + deref = "" + } b.WriteString(fmt.Sprintf("if t.%s != nil {\n", cleanName(Name(r)))) if r.T != nil { b.WriteString(fmt.Sprintf("i, err = t.%s.Serialize()\n", cleanName(Name(r)))) b.WriteString("return\n") } else if r.V != nil { - b.WriteString(fmt.Sprintf("i = %s(*t.%s)\n", r.V.SerializeFn.Name, cleanName(Name(r)))) + b.WriteString(fmt.Sprintf("i = %s(%st.%s)\n", r.V.SerializeFn.Name, deref, cleanName(Name(r)))) b.WriteString("return\n") } else { b.WriteString(fmt.Sprintf("i = t.%s\n", cleanName(Name(r)))) diff --git a/tools/vocab/gen/util.go b/tools/vocab/gen/util.go index bf005f3..5cb8e71 100644 --- a/tools/vocab/gen/util.go +++ b/tools/vocab/gen/util.go @@ -36,6 +36,10 @@ func deref(k string) string { return k } +func isIRIType(k string) bool { + return k == "*url.URL" +} + func deserializeCode(b *bytes.Buffer, parseCode, varName, typeName, field string, slice, derefAppend bool) { if slice { sliceDeserializeCode(b, parseCode, varName, typeName, field, derefAppend) diff --git a/vocab/vocab.go b/vocab/vocab.go index 82b2ad3..5cc2bfc 100644 --- a/vocab/vocab.go +++ b/vocab/vocab.go @@ -28,8 +28,8 @@ type ObjectType interface { GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -42,9 +42,9 @@ type ObjectType interface { 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) + 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) @@ -58,9 +58,9 @@ type ObjectType interface { 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) + 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) @@ -74,9 +74,9 @@ type ObjectType interface { 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) + 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) @@ -90,9 +90,9 @@ type ObjectType interface { 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) + 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) @@ -109,9 +109,9 @@ type ObjectType interface { 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) + 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) @@ -125,9 +125,9 @@ type ObjectType interface { 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) + 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) @@ -136,8 +136,8 @@ type ObjectType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -150,9 +150,9 @@ type ObjectType interface { 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) + 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) @@ -166,13 +166,13 @@ type ObjectType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -188,9 +188,9 @@ type ObjectType interface { 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) + 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) @@ -204,9 +204,9 @@ type ObjectType interface { 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) + 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) @@ -220,9 +220,9 @@ type ObjectType interface { 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) + 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) @@ -236,28 +236,28 @@ type ObjectType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -270,9 +270,9 @@ type ObjectType interface { 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) + 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) @@ -289,9 +289,9 @@ type ObjectType interface { 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) + 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{}) @@ -302,13 +302,13 @@ type ObjectType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -327,9 +327,9 @@ type ObjectType interface { 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) + 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) @@ -343,9 +343,9 @@ type ObjectType interface { 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) + 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) @@ -359,9 +359,9 @@ type ObjectType interface { 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) + 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) @@ -375,40 +375,40 @@ type ObjectType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -416,8 +416,8 @@ type ObjectType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -425,8 +425,8 @@ type ObjectType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -434,8 +434,8 @@ type ObjectType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -443,12 +443,12 @@ type ObjectType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -457,8 +457,8 @@ type ObjectType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -466,41 +466,41 @@ type ObjectType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -522,19 +522,19 @@ type LinkType interface { 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) + GetAttributedToIRI(index int) (v *url.URL) + AppendAttributedToIRI(v *url.URL) + PrependAttributedToIRI(v *url.URL) RemoveAttributedToIRI(index int) HasHref() (ok bool) - GetHref() (v url.URL) - SetHref(v url.URL) + GetHref() (v *url.URL) + SetHref(v *url.URL) HasUnknownHref() (ok bool) GetUnknownHref() (v interface{}) SetUnknownHref(i interface{}) HasId() (ok bool) - GetId() (v url.URL) - SetId(v url.URL) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -545,9 +545,9 @@ type LinkType interface { PrependRel(v string) RemoveRel(index int) IsRelIRI(index int) (ok bool) - GetRelIRI(index int) (v url.URL) - AppendRelIRI(v url.URL) - PrependRelIRI(v url.URL) + GetRelIRI(index int) (v *url.URL) + AppendRelIRI(v *url.URL) + PrependRelIRI(v *url.URL) RemoveRelIRI(index int) TypeLen() (l int) GetType(index int) (v interface{}) @@ -558,8 +558,8 @@ type LinkType interface { GetMediaType() (v string) SetMediaType(v string) IsMediaTypeIRI() (ok bool) - GetMediaTypeIRI() (v url.URL) - SetMediaTypeIRI(v url.URL) + GetMediaTypeIRI() (v *url.URL) + SetMediaTypeIRI(v *url.URL) NameLen() (l int) IsNameString(index int) (ok bool) GetNameString(index int) (v string) @@ -572,9 +572,9 @@ type LinkType interface { 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) + 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) @@ -591,9 +591,9 @@ type LinkType interface { 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) + 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) @@ -602,20 +602,20 @@ type LinkType interface { GetHreflang() (v string) SetHreflang(v string) IsHreflangIRI() (ok bool) - GetHreflangIRI() (v url.URL) - SetHreflangIRI(v url.URL) + GetHreflangIRI() (v *url.URL) + SetHreflangIRI(v *url.URL) IsHeight() (ok bool) GetHeight() (v int64) SetHeight(v int64) IsHeightIRI() (ok bool) - GetHeightIRI() (v url.URL) - SetHeightIRI(v url.URL) + GetHeightIRI() (v *url.URL) + SetHeightIRI(v *url.URL) IsWidth() (ok bool) GetWidth() (v int64) SetWidth(v int64) IsWidthIRI() (ok bool) - GetWidthIRI() (v url.URL) - SetWidthIRI(v url.URL) + GetWidthIRI() (v *url.URL) + SetWidthIRI(v *url.URL) PreviewLen() (l int) IsPreviewObject(index int) (ok bool) GetPreviewObject(index int) (v ObjectType) @@ -628,9 +628,9 @@ type LinkType interface { 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) + GetPreviewIRI(index int) (v *url.URL) + AppendPreviewIRI(v *url.URL) + PrependPreviewIRI(v *url.URL) RemovePreviewIRI(index int) } @@ -650,9 +650,9 @@ type ActivityType interface { PrependActorLink(v LinkType) RemoveActorLink(index int) IsActorIRI(index int) (ok bool) - GetActorIRI(index int) (v url.URL) - AppendActorIRI(v url.URL) - PrependActorIRI(v url.URL) + GetActorIRI(index int) (v *url.URL) + AppendActorIRI(v *url.URL) + PrependActorIRI(v *url.URL) RemoveActorIRI(index int) ObjectLen() (l int) IsObject(index int) (ok bool) @@ -661,9 +661,9 @@ type ActivityType interface { PrependObject(v ObjectType) RemoveObject(index int) IsObjectIRI(index int) (ok bool) - GetObjectIRI(index int) (v url.URL) - AppendObjectIRI(v url.URL) - PrependObjectIRI(v url.URL) + GetObjectIRI(index int) (v *url.URL) + AppendObjectIRI(v *url.URL) + PrependObjectIRI(v *url.URL) RemoveObjectIRI(index int) TargetLen() (l int) IsTargetObject(index int) (ok bool) @@ -677,9 +677,9 @@ type ActivityType interface { PrependTargetLink(v LinkType) RemoveTargetLink(index int) IsTargetIRI(index int) (ok bool) - GetTargetIRI(index int) (v url.URL) - AppendTargetIRI(v url.URL) - PrependTargetIRI(v url.URL) + GetTargetIRI(index int) (v *url.URL) + AppendTargetIRI(v *url.URL) + PrependTargetIRI(v *url.URL) RemoveTargetIRI(index int) ResultLen() (l int) IsResultObject(index int) (ok bool) @@ -693,9 +693,9 @@ type ActivityType interface { PrependResultLink(v LinkType) RemoveResultLink(index int) IsResultIRI(index int) (ok bool) - GetResultIRI(index int) (v url.URL) - AppendResultIRI(v url.URL) - PrependResultIRI(v url.URL) + GetResultIRI(index int) (v *url.URL) + AppendResultIRI(v *url.URL) + PrependResultIRI(v *url.URL) RemoveResultIRI(index int) OriginLen() (l int) IsOriginObject(index int) (ok bool) @@ -709,9 +709,9 @@ type ActivityType interface { PrependOriginLink(v LinkType) RemoveOriginLink(index int) IsOriginIRI(index int) (ok bool) - GetOriginIRI(index int) (v url.URL) - AppendOriginIRI(v url.URL) - PrependOriginIRI(v url.URL) + GetOriginIRI(index int) (v *url.URL) + AppendOriginIRI(v *url.URL) + PrependOriginIRI(v *url.URL) RemoveOriginIRI(index int) InstrumentLen() (l int) IsInstrumentObject(index int) (ok bool) @@ -725,16 +725,16 @@ type ActivityType interface { PrependInstrumentLink(v LinkType) RemoveInstrumentLink(index int) IsInstrumentIRI(index int) (ok bool) - GetInstrumentIRI(index int) (v url.URL) - AppendInstrumentIRI(v url.URL) - PrependInstrumentIRI(v url.URL) + GetInstrumentIRI(index int) (v *url.URL) + AppendInstrumentIRI(v *url.URL) + PrependInstrumentIRI(v *url.URL) RemoveInstrumentIRI(index int) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -747,9 +747,9 @@ type ActivityType interface { 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) + 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) @@ -763,9 +763,9 @@ type ActivityType interface { 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) + 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) @@ -779,9 +779,9 @@ type ActivityType interface { 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) + 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) @@ -795,9 +795,9 @@ type ActivityType interface { 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) + 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) @@ -814,9 +814,9 @@ type ActivityType interface { 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) + 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) @@ -830,9 +830,9 @@ type ActivityType interface { 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) + 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) @@ -841,8 +841,8 @@ type ActivityType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -855,9 +855,9 @@ type ActivityType interface { 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) + 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) @@ -871,13 +871,13 @@ type ActivityType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -893,9 +893,9 @@ type ActivityType interface { 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) + 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) @@ -909,9 +909,9 @@ type ActivityType interface { 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) + 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) @@ -925,9 +925,9 @@ type ActivityType interface { 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) + 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) @@ -941,28 +941,28 @@ type ActivityType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -975,9 +975,9 @@ type ActivityType interface { 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) + 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) @@ -994,9 +994,9 @@ type ActivityType interface { 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) + 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{}) @@ -1007,13 +1007,13 @@ type ActivityType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -1032,9 +1032,9 @@ type ActivityType interface { 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) + 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) @@ -1048,9 +1048,9 @@ type ActivityType interface { 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) + 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) @@ -1064,9 +1064,9 @@ type ActivityType interface { 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) + 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) @@ -1080,40 +1080,40 @@ type ActivityType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -1121,8 +1121,8 @@ type ActivityType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -1130,8 +1130,8 @@ type ActivityType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -1139,8 +1139,8 @@ type ActivityType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -1148,12 +1148,12 @@ type ActivityType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -1162,8 +1162,8 @@ type ActivityType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -1171,41 +1171,41 @@ type ActivityType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -1227,9 +1227,9 @@ type IntransitiveActivityType interface { PrependActorLink(v LinkType) RemoveActorLink(index int) IsActorIRI(index int) (ok bool) - GetActorIRI(index int) (v url.URL) - AppendActorIRI(v url.URL) - PrependActorIRI(v url.URL) + GetActorIRI(index int) (v *url.URL) + AppendActorIRI(v *url.URL) + PrependActorIRI(v *url.URL) RemoveActorIRI(index int) TargetLen() (l int) IsTargetObject(index int) (ok bool) @@ -1243,9 +1243,9 @@ type IntransitiveActivityType interface { PrependTargetLink(v LinkType) RemoveTargetLink(index int) IsTargetIRI(index int) (ok bool) - GetTargetIRI(index int) (v url.URL) - AppendTargetIRI(v url.URL) - PrependTargetIRI(v url.URL) + GetTargetIRI(index int) (v *url.URL) + AppendTargetIRI(v *url.URL) + PrependTargetIRI(v *url.URL) RemoveTargetIRI(index int) ResultLen() (l int) IsResultObject(index int) (ok bool) @@ -1259,9 +1259,9 @@ type IntransitiveActivityType interface { PrependResultLink(v LinkType) RemoveResultLink(index int) IsResultIRI(index int) (ok bool) - GetResultIRI(index int) (v url.URL) - AppendResultIRI(v url.URL) - PrependResultIRI(v url.URL) + GetResultIRI(index int) (v *url.URL) + AppendResultIRI(v *url.URL) + PrependResultIRI(v *url.URL) RemoveResultIRI(index int) OriginLen() (l int) IsOriginObject(index int) (ok bool) @@ -1275,9 +1275,9 @@ type IntransitiveActivityType interface { PrependOriginLink(v LinkType) RemoveOriginLink(index int) IsOriginIRI(index int) (ok bool) - GetOriginIRI(index int) (v url.URL) - AppendOriginIRI(v url.URL) - PrependOriginIRI(v url.URL) + GetOriginIRI(index int) (v *url.URL) + AppendOriginIRI(v *url.URL) + PrependOriginIRI(v *url.URL) RemoveOriginIRI(index int) InstrumentLen() (l int) IsInstrumentObject(index int) (ok bool) @@ -1291,16 +1291,16 @@ type IntransitiveActivityType interface { PrependInstrumentLink(v LinkType) RemoveInstrumentLink(index int) IsInstrumentIRI(index int) (ok bool) - GetInstrumentIRI(index int) (v url.URL) - AppendInstrumentIRI(v url.URL) - PrependInstrumentIRI(v url.URL) + GetInstrumentIRI(index int) (v *url.URL) + AppendInstrumentIRI(v *url.URL) + PrependInstrumentIRI(v *url.URL) RemoveInstrumentIRI(index int) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -1313,9 +1313,9 @@ type IntransitiveActivityType interface { 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) + 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) @@ -1329,9 +1329,9 @@ type IntransitiveActivityType interface { 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) + 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) @@ -1345,9 +1345,9 @@ type IntransitiveActivityType interface { 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) + 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) @@ -1361,9 +1361,9 @@ type IntransitiveActivityType interface { 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) + 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) @@ -1380,9 +1380,9 @@ type IntransitiveActivityType interface { 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) + 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) @@ -1396,9 +1396,9 @@ type IntransitiveActivityType interface { 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) + 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) @@ -1407,8 +1407,8 @@ type IntransitiveActivityType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -1421,9 +1421,9 @@ type IntransitiveActivityType interface { 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) + 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) @@ -1437,13 +1437,13 @@ type IntransitiveActivityType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -1459,9 +1459,9 @@ type IntransitiveActivityType interface { 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) + 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) @@ -1475,9 +1475,9 @@ type IntransitiveActivityType interface { 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) + 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) @@ -1491,9 +1491,9 @@ type IntransitiveActivityType interface { 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) + 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) @@ -1507,28 +1507,28 @@ type IntransitiveActivityType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -1541,9 +1541,9 @@ type IntransitiveActivityType interface { 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) + 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) @@ -1560,9 +1560,9 @@ type IntransitiveActivityType interface { 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) + 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{}) @@ -1573,13 +1573,13 @@ type IntransitiveActivityType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -1598,9 +1598,9 @@ type IntransitiveActivityType interface { 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) + 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) @@ -1614,9 +1614,9 @@ type IntransitiveActivityType interface { 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) + 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) @@ -1630,9 +1630,9 @@ type IntransitiveActivityType interface { 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) + 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) @@ -1646,40 +1646,40 @@ type IntransitiveActivityType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -1687,8 +1687,8 @@ type IntransitiveActivityType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -1696,8 +1696,8 @@ type IntransitiveActivityType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -1705,8 +1705,8 @@ type IntransitiveActivityType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -1714,12 +1714,12 @@ type IntransitiveActivityType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -1728,8 +1728,8 @@ type IntransitiveActivityType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -1737,41 +1737,41 @@ type IntransitiveActivityType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -1782,9 +1782,9 @@ type IntransitiveActivityType interface { PrependObject(v ObjectType) RemoveObject(index int) IsObjectIRI(index int) (ok bool) - GetObjectIRI(index int) (v url.URL) - AppendObjectIRI(v url.URL) - PrependObjectIRI(v url.URL) + GetObjectIRI(index int) (v *url.URL) + AppendObjectIRI(v *url.URL) + PrependObjectIRI(v *url.URL) RemoveObjectIRI(index int) } @@ -1796,8 +1796,8 @@ type CollectionType interface { GetTotalItems() (v int64) SetTotalItems(v int64) IsTotalItemsIRI() (ok bool) - GetTotalItemsIRI() (v url.URL) - SetTotalItemsIRI(v url.URL) + GetTotalItemsIRI() (v *url.URL) + SetTotalItemsIRI(v *url.URL) IsCurrentCollectionPage() (ok bool) GetCurrentCollectionPage() (v CollectionPageType) SetCurrentCollectionPage(v CollectionPageType) @@ -1805,8 +1805,8 @@ type CollectionType interface { GetCurrentLink() (v LinkType) SetCurrentLink(v LinkType) IsCurrentIRI() (ok bool) - GetCurrentIRI() (v url.URL) - SetCurrentIRI(v url.URL) + GetCurrentIRI() (v *url.URL) + SetCurrentIRI(v *url.URL) IsFirstCollectionPage() (ok bool) GetFirstCollectionPage() (v CollectionPageType) SetFirstCollectionPage(v CollectionPageType) @@ -1814,8 +1814,8 @@ type CollectionType interface { GetFirstLink() (v LinkType) SetFirstLink(v LinkType) IsFirstIRI() (ok bool) - GetFirstIRI() (v url.URL) - SetFirstIRI(v url.URL) + GetFirstIRI() (v *url.URL) + SetFirstIRI(v *url.URL) IsLastCollectionPage() (ok bool) GetLastCollectionPage() (v CollectionPageType) SetLastCollectionPage(v CollectionPageType) @@ -1823,8 +1823,8 @@ type CollectionType interface { GetLastLink() (v LinkType) SetLastLink(v LinkType) IsLastIRI() (ok bool) - GetLastIRI() (v url.URL) - SetLastIRI(v url.URL) + GetLastIRI() (v *url.URL) + SetLastIRI(v *url.URL) ItemsLen() (l int) IsItemsObject(index int) (ok bool) GetItemsObject(index int) (v ObjectType) @@ -1837,16 +1837,16 @@ type CollectionType interface { PrependItemsLink(v LinkType) RemoveItemsLink(index int) IsItemsIRI(index int) (ok bool) - GetItemsIRI(index int) (v url.URL) - AppendItemsIRI(v url.URL) - PrependItemsIRI(v url.URL) + GetItemsIRI(index int) (v *url.URL) + AppendItemsIRI(v *url.URL) + PrependItemsIRI(v *url.URL) RemoveItemsIRI(index int) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -1859,9 +1859,9 @@ type CollectionType interface { 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) + 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) @@ -1875,9 +1875,9 @@ type CollectionType interface { 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) + 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) @@ -1891,9 +1891,9 @@ type CollectionType interface { 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) + 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) @@ -1907,9 +1907,9 @@ type CollectionType interface { 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) + 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) @@ -1926,9 +1926,9 @@ type CollectionType interface { 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) + 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) @@ -1942,9 +1942,9 @@ type CollectionType interface { 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) + 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) @@ -1953,8 +1953,8 @@ type CollectionType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -1967,9 +1967,9 @@ type CollectionType interface { 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) + 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) @@ -1983,13 +1983,13 @@ type CollectionType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -2005,9 +2005,9 @@ type CollectionType interface { 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) + 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) @@ -2021,9 +2021,9 @@ type CollectionType interface { 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) + 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) @@ -2037,9 +2037,9 @@ type CollectionType interface { 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) + 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) @@ -2053,28 +2053,28 @@ type CollectionType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -2087,9 +2087,9 @@ type CollectionType interface { 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) + 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) @@ -2106,9 +2106,9 @@ type CollectionType interface { 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) + 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{}) @@ -2119,13 +2119,13 @@ type CollectionType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -2144,9 +2144,9 @@ type CollectionType interface { 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) + 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) @@ -2160,9 +2160,9 @@ type CollectionType interface { 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) + 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) @@ -2176,9 +2176,9 @@ type CollectionType interface { 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) + 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) @@ -2192,40 +2192,40 @@ type CollectionType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -2233,8 +2233,8 @@ type CollectionType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -2242,8 +2242,8 @@ type CollectionType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -2251,8 +2251,8 @@ type CollectionType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -2260,12 +2260,12 @@ type CollectionType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -2274,8 +2274,8 @@ type CollectionType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -2283,41 +2283,41 @@ type CollectionType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -2339,9 +2339,9 @@ type OrderedCollectionType interface { PrependOrderedItemsLink(v LinkType) RemoveOrderedItemsLink(index int) IsOrderedItemsIRI(index int) (ok bool) - GetOrderedItemsIRI(index int) (v url.URL) - AppendOrderedItemsIRI(v url.URL) - PrependOrderedItemsIRI(v url.URL) + GetOrderedItemsIRI(index int) (v *url.URL) + AppendOrderedItemsIRI(v *url.URL) + PrependOrderedItemsIRI(v *url.URL) RemoveOrderedItemsIRI(index int) IsCurrentOrderedCollectionPage() (ok bool) GetCurrentOrderedCollectionPage() (v OrderedCollectionPageType) @@ -2350,8 +2350,8 @@ type OrderedCollectionType interface { GetCurrentLink() (v LinkType) SetCurrentLink(v LinkType) IsCurrentIRI() (ok bool) - GetCurrentIRI() (v url.URL) - SetCurrentIRI(v url.URL) + GetCurrentIRI() (v *url.URL) + SetCurrentIRI(v *url.URL) IsFirstOrderedCollectionPage() (ok bool) GetFirstOrderedCollectionPage() (v OrderedCollectionPageType) SetFirstOrderedCollectionPage(v OrderedCollectionPageType) @@ -2359,8 +2359,8 @@ type OrderedCollectionType interface { GetFirstLink() (v LinkType) SetFirstLink(v LinkType) IsFirstIRI() (ok bool) - GetFirstIRI() (v url.URL) - SetFirstIRI(v url.URL) + GetFirstIRI() (v *url.URL) + SetFirstIRI(v *url.URL) IsLastOrderedCollectionPage() (ok bool) GetLastOrderedCollectionPage() (v OrderedCollectionPageType) SetLastOrderedCollectionPage(v OrderedCollectionPageType) @@ -2368,20 +2368,20 @@ type OrderedCollectionType interface { GetLastLink() (v LinkType) SetLastLink(v LinkType) IsLastIRI() (ok bool) - GetLastIRI() (v url.URL) - SetLastIRI(v url.URL) + GetLastIRI() (v *url.URL) + SetLastIRI(v *url.URL) IsTotalItems() (ok bool) GetTotalItems() (v int64) SetTotalItems(v int64) IsTotalItemsIRI() (ok bool) - GetTotalItemsIRI() (v url.URL) - SetTotalItemsIRI(v url.URL) + GetTotalItemsIRI() (v *url.URL) + SetTotalItemsIRI(v *url.URL) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -2394,9 +2394,9 @@ type OrderedCollectionType interface { 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) + 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) @@ -2410,9 +2410,9 @@ type OrderedCollectionType interface { 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) + 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) @@ -2426,9 +2426,9 @@ type OrderedCollectionType interface { 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) + 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) @@ -2442,9 +2442,9 @@ type OrderedCollectionType interface { 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) + 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) @@ -2461,9 +2461,9 @@ type OrderedCollectionType interface { 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) + 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) @@ -2477,9 +2477,9 @@ type OrderedCollectionType interface { 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) + 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) @@ -2488,8 +2488,8 @@ type OrderedCollectionType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -2502,9 +2502,9 @@ type OrderedCollectionType interface { 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) + 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) @@ -2518,13 +2518,13 @@ type OrderedCollectionType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -2540,9 +2540,9 @@ type OrderedCollectionType interface { 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) + 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) @@ -2556,9 +2556,9 @@ type OrderedCollectionType interface { 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) + 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) @@ -2572,9 +2572,9 @@ type OrderedCollectionType interface { 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) + 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) @@ -2588,28 +2588,28 @@ type OrderedCollectionType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -2622,9 +2622,9 @@ type OrderedCollectionType interface { 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) + 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) @@ -2641,9 +2641,9 @@ type OrderedCollectionType interface { 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) + 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{}) @@ -2654,13 +2654,13 @@ type OrderedCollectionType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -2679,9 +2679,9 @@ type OrderedCollectionType interface { 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) + 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) @@ -2695,9 +2695,9 @@ type OrderedCollectionType interface { 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) + 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) @@ -2711,9 +2711,9 @@ type OrderedCollectionType interface { 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) + 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) @@ -2727,40 +2727,40 @@ type OrderedCollectionType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -2768,8 +2768,8 @@ type OrderedCollectionType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -2777,8 +2777,8 @@ type OrderedCollectionType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -2786,8 +2786,8 @@ type OrderedCollectionType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -2795,12 +2795,12 @@ type OrderedCollectionType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -2809,8 +2809,8 @@ type OrderedCollectionType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -2818,41 +2818,41 @@ type OrderedCollectionType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -2868,9 +2868,9 @@ type OrderedCollectionType interface { PrependItemsLink(v LinkType) RemoveItemsLink(index int) IsItemsIRI(index int) (ok bool) - GetItemsIRI(index int) (v url.URL) - AppendItemsIRI(v url.URL) - PrependItemsIRI(v url.URL) + GetItemsIRI(index int) (v *url.URL) + AppendItemsIRI(v *url.URL) + PrependItemsIRI(v *url.URL) RemoveItemsIRI(index int) } @@ -2885,8 +2885,8 @@ type CollectionPageType interface { GetPartOfCollection() (v CollectionType) SetPartOfCollection(v CollectionType) IsPartOfIRI() (ok bool) - GetPartOfIRI() (v url.URL) - SetPartOfIRI(v url.URL) + GetPartOfIRI() (v *url.URL) + SetPartOfIRI(v *url.URL) IsNextCollectionPage() (ok bool) GetNextCollectionPage() (v CollectionPageType) SetNextCollectionPage(v CollectionPageType) @@ -2894,8 +2894,8 @@ type CollectionPageType interface { GetNextLink() (v LinkType) SetNextLink(v LinkType) IsNextIRI() (ok bool) - GetNextIRI() (v url.URL) - SetNextIRI(v url.URL) + GetNextIRI() (v *url.URL) + SetNextIRI(v *url.URL) IsPrevCollectionPage() (ok bool) GetPrevCollectionPage() (v CollectionPageType) SetPrevCollectionPage(v CollectionPageType) @@ -2903,14 +2903,14 @@ type CollectionPageType interface { GetPrevLink() (v LinkType) SetPrevLink(v LinkType) IsPrevIRI() (ok bool) - GetPrevIRI() (v url.URL) - SetPrevIRI(v url.URL) + GetPrevIRI() (v *url.URL) + SetPrevIRI(v *url.URL) IsTotalItems() (ok bool) GetTotalItems() (v int64) SetTotalItems(v int64) IsTotalItemsIRI() (ok bool) - GetTotalItemsIRI() (v url.URL) - SetTotalItemsIRI(v url.URL) + GetTotalItemsIRI() (v *url.URL) + SetTotalItemsIRI(v *url.URL) IsCurrentCollectionPage() (ok bool) GetCurrentCollectionPage() (v CollectionPageType) SetCurrentCollectionPage(v CollectionPageType) @@ -2918,8 +2918,8 @@ type CollectionPageType interface { GetCurrentLink() (v LinkType) SetCurrentLink(v LinkType) IsCurrentIRI() (ok bool) - GetCurrentIRI() (v url.URL) - SetCurrentIRI(v url.URL) + GetCurrentIRI() (v *url.URL) + SetCurrentIRI(v *url.URL) IsFirstCollectionPage() (ok bool) GetFirstCollectionPage() (v CollectionPageType) SetFirstCollectionPage(v CollectionPageType) @@ -2927,8 +2927,8 @@ type CollectionPageType interface { GetFirstLink() (v LinkType) SetFirstLink(v LinkType) IsFirstIRI() (ok bool) - GetFirstIRI() (v url.URL) - SetFirstIRI(v url.URL) + GetFirstIRI() (v *url.URL) + SetFirstIRI(v *url.URL) IsLastCollectionPage() (ok bool) GetLastCollectionPage() (v CollectionPageType) SetLastCollectionPage(v CollectionPageType) @@ -2936,8 +2936,8 @@ type CollectionPageType interface { GetLastLink() (v LinkType) SetLastLink(v LinkType) IsLastIRI() (ok bool) - GetLastIRI() (v url.URL) - SetLastIRI(v url.URL) + GetLastIRI() (v *url.URL) + SetLastIRI(v *url.URL) ItemsLen() (l int) IsItemsObject(index int) (ok bool) GetItemsObject(index int) (v ObjectType) @@ -2950,16 +2950,16 @@ type CollectionPageType interface { PrependItemsLink(v LinkType) RemoveItemsLink(index int) IsItemsIRI(index int) (ok bool) - GetItemsIRI(index int) (v url.URL) - AppendItemsIRI(v url.URL) - PrependItemsIRI(v url.URL) + GetItemsIRI(index int) (v *url.URL) + AppendItemsIRI(v *url.URL) + PrependItemsIRI(v *url.URL) RemoveItemsIRI(index int) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -2972,9 +2972,9 @@ type CollectionPageType interface { 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) + 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) @@ -2988,9 +2988,9 @@ type CollectionPageType interface { 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) + 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) @@ -3004,9 +3004,9 @@ type CollectionPageType interface { 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) + 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) @@ -3020,9 +3020,9 @@ type CollectionPageType interface { 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) + 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) @@ -3039,9 +3039,9 @@ type CollectionPageType interface { 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) + 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) @@ -3055,9 +3055,9 @@ type CollectionPageType interface { 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) + 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) @@ -3066,8 +3066,8 @@ type CollectionPageType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -3080,9 +3080,9 @@ type CollectionPageType interface { 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) + 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) @@ -3096,13 +3096,13 @@ type CollectionPageType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -3118,9 +3118,9 @@ type CollectionPageType interface { 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) + 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) @@ -3134,9 +3134,9 @@ type CollectionPageType interface { 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) + 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) @@ -3150,9 +3150,9 @@ type CollectionPageType interface { 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) + 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) @@ -3166,28 +3166,28 @@ type CollectionPageType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -3200,9 +3200,9 @@ type CollectionPageType interface { 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) + 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) @@ -3219,9 +3219,9 @@ type CollectionPageType interface { 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) + 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{}) @@ -3232,13 +3232,13 @@ type CollectionPageType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -3257,9 +3257,9 @@ type CollectionPageType interface { 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) + 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) @@ -3273,9 +3273,9 @@ type CollectionPageType interface { 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) + 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) @@ -3289,9 +3289,9 @@ type CollectionPageType interface { 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) + 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) @@ -3305,40 +3305,40 @@ type CollectionPageType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -3346,8 +3346,8 @@ type CollectionPageType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -3355,8 +3355,8 @@ type CollectionPageType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -3364,8 +3364,8 @@ type CollectionPageType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -3373,12 +3373,12 @@ type CollectionPageType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -3387,8 +3387,8 @@ type CollectionPageType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -3396,41 +3396,41 @@ type CollectionPageType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -3444,8 +3444,8 @@ type OrderedCollectionPageType interface { GetStartIndex() (v int64) SetStartIndex(v int64) IsStartIndexIRI() (ok bool) - GetStartIndexIRI() (v url.URL) - SetStartIndexIRI(v url.URL) + GetStartIndexIRI() (v *url.URL) + SetStartIndexIRI(v *url.URL) IsNextOrderedCollectionPage() (ok bool) GetNextOrderedCollectionPage() (v OrderedCollectionPageType) SetNextOrderedCollectionPage(v OrderedCollectionPageType) @@ -3453,8 +3453,8 @@ type OrderedCollectionPageType interface { GetNextLink() (v LinkType) SetNextLink(v LinkType) IsNextIRI() (ok bool) - GetNextIRI() (v url.URL) - SetNextIRI(v url.URL) + GetNextIRI() (v *url.URL) + SetNextIRI(v *url.URL) IsPrevOrderedCollectionPage() (ok bool) GetPrevOrderedCollectionPage() (v OrderedCollectionPageType) SetPrevOrderedCollectionPage(v OrderedCollectionPageType) @@ -3462,8 +3462,8 @@ type OrderedCollectionPageType interface { GetPrevLink() (v LinkType) SetPrevLink(v LinkType) IsPrevIRI() (ok bool) - GetPrevIRI() (v url.URL) - SetPrevIRI(v url.URL) + GetPrevIRI() (v *url.URL) + SetPrevIRI(v *url.URL) OrderedItemsLen() (l int) IsOrderedItemsObject(index int) (ok bool) GetOrderedItemsObject(index int) (v ObjectType) @@ -3476,9 +3476,9 @@ type OrderedCollectionPageType interface { PrependOrderedItemsLink(v LinkType) RemoveOrderedItemsLink(index int) IsOrderedItemsIRI(index int) (ok bool) - GetOrderedItemsIRI(index int) (v url.URL) - AppendOrderedItemsIRI(v url.URL) - PrependOrderedItemsIRI(v url.URL) + GetOrderedItemsIRI(index int) (v *url.URL) + AppendOrderedItemsIRI(v *url.URL) + PrependOrderedItemsIRI(v *url.URL) RemoveOrderedItemsIRI(index int) IsCurrentOrderedCollectionPage() (ok bool) GetCurrentOrderedCollectionPage() (v OrderedCollectionPageType) @@ -3487,8 +3487,8 @@ type OrderedCollectionPageType interface { GetCurrentLink() (v LinkType) SetCurrentLink(v LinkType) IsCurrentIRI() (ok bool) - GetCurrentIRI() (v url.URL) - SetCurrentIRI(v url.URL) + GetCurrentIRI() (v *url.URL) + SetCurrentIRI(v *url.URL) IsFirstOrderedCollectionPage() (ok bool) GetFirstOrderedCollectionPage() (v OrderedCollectionPageType) SetFirstOrderedCollectionPage(v OrderedCollectionPageType) @@ -3496,8 +3496,8 @@ type OrderedCollectionPageType interface { GetFirstLink() (v LinkType) SetFirstLink(v LinkType) IsFirstIRI() (ok bool) - GetFirstIRI() (v url.URL) - SetFirstIRI(v url.URL) + GetFirstIRI() (v *url.URL) + SetFirstIRI(v *url.URL) IsLastOrderedCollectionPage() (ok bool) GetLastOrderedCollectionPage() (v OrderedCollectionPageType) SetLastOrderedCollectionPage(v OrderedCollectionPageType) @@ -3505,20 +3505,20 @@ type OrderedCollectionPageType interface { GetLastLink() (v LinkType) SetLastLink(v LinkType) IsLastIRI() (ok bool) - GetLastIRI() (v url.URL) - SetLastIRI(v url.URL) + GetLastIRI() (v *url.URL) + SetLastIRI(v *url.URL) IsTotalItems() (ok bool) GetTotalItems() (v int64) SetTotalItems(v int64) IsTotalItemsIRI() (ok bool) - GetTotalItemsIRI() (v url.URL) - SetTotalItemsIRI(v url.URL) + GetTotalItemsIRI() (v *url.URL) + SetTotalItemsIRI(v *url.URL) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -3531,9 +3531,9 @@ type OrderedCollectionPageType interface { 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) + 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) @@ -3547,9 +3547,9 @@ type OrderedCollectionPageType interface { 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) + 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) @@ -3563,9 +3563,9 @@ type OrderedCollectionPageType interface { 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) + 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) @@ -3579,9 +3579,9 @@ type OrderedCollectionPageType interface { 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) + 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) @@ -3598,9 +3598,9 @@ type OrderedCollectionPageType interface { 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) + 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) @@ -3614,9 +3614,9 @@ type OrderedCollectionPageType interface { 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) + 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) @@ -3625,8 +3625,8 @@ type OrderedCollectionPageType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -3639,9 +3639,9 @@ type OrderedCollectionPageType interface { 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) + 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) @@ -3655,13 +3655,13 @@ type OrderedCollectionPageType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -3677,9 +3677,9 @@ type OrderedCollectionPageType interface { 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) + 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) @@ -3693,9 +3693,9 @@ type OrderedCollectionPageType interface { 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) + 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) @@ -3709,9 +3709,9 @@ type OrderedCollectionPageType interface { 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) + 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) @@ -3725,28 +3725,28 @@ type OrderedCollectionPageType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -3759,9 +3759,9 @@ type OrderedCollectionPageType interface { 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) + 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) @@ -3778,9 +3778,9 @@ type OrderedCollectionPageType interface { 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) + 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{}) @@ -3791,13 +3791,13 @@ type OrderedCollectionPageType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -3816,9 +3816,9 @@ type OrderedCollectionPageType interface { 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) + 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) @@ -3832,9 +3832,9 @@ type OrderedCollectionPageType interface { 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) + 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) @@ -3848,9 +3848,9 @@ type OrderedCollectionPageType interface { 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) + 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) @@ -3864,40 +3864,40 @@ type OrderedCollectionPageType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -3905,8 +3905,8 @@ type OrderedCollectionPageType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -3914,8 +3914,8 @@ type OrderedCollectionPageType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -3923,8 +3923,8 @@ type OrderedCollectionPageType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -3932,12 +3932,12 @@ type OrderedCollectionPageType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -3946,8 +3946,8 @@ type OrderedCollectionPageType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -3955,41 +3955,41 @@ type OrderedCollectionPageType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -4000,8 +4000,8 @@ type OrderedCollectionPageType interface { GetPartOfCollection() (v CollectionType) SetPartOfCollection(v CollectionType) IsPartOfIRI() (ok bool) - GetPartOfIRI() (v url.URL) - SetPartOfIRI(v url.URL) + GetPartOfIRI() (v *url.URL) + SetPartOfIRI(v *url.URL) ItemsLen() (l int) IsItemsObject(index int) (ok bool) GetItemsObject(index int) (v ObjectType) @@ -4014,9 +4014,9 @@ type OrderedCollectionPageType interface { PrependItemsLink(v LinkType) RemoveItemsLink(index int) IsItemsIRI(index int) (ok bool) - GetItemsIRI(index int) (v url.URL) - AppendItemsIRI(v url.URL) - PrependItemsIRI(v url.URL) + GetItemsIRI(index int) (v *url.URL) + AppendItemsIRI(v *url.URL) + PrependItemsIRI(v *url.URL) RemoveItemsIRI(index int) } @@ -4036,9 +4036,9 @@ type AcceptType interface { PrependActorLink(v LinkType) RemoveActorLink(index int) IsActorIRI(index int) (ok bool) - GetActorIRI(index int) (v url.URL) - AppendActorIRI(v url.URL) - PrependActorIRI(v url.URL) + GetActorIRI(index int) (v *url.URL) + AppendActorIRI(v *url.URL) + PrependActorIRI(v *url.URL) RemoveActorIRI(index int) ObjectLen() (l int) IsObject(index int) (ok bool) @@ -4047,9 +4047,9 @@ type AcceptType interface { PrependObject(v ObjectType) RemoveObject(index int) IsObjectIRI(index int) (ok bool) - GetObjectIRI(index int) (v url.URL) - AppendObjectIRI(v url.URL) - PrependObjectIRI(v url.URL) + GetObjectIRI(index int) (v *url.URL) + AppendObjectIRI(v *url.URL) + PrependObjectIRI(v *url.URL) RemoveObjectIRI(index int) TargetLen() (l int) IsTargetObject(index int) (ok bool) @@ -4063,9 +4063,9 @@ type AcceptType interface { PrependTargetLink(v LinkType) RemoveTargetLink(index int) IsTargetIRI(index int) (ok bool) - GetTargetIRI(index int) (v url.URL) - AppendTargetIRI(v url.URL) - PrependTargetIRI(v url.URL) + GetTargetIRI(index int) (v *url.URL) + AppendTargetIRI(v *url.URL) + PrependTargetIRI(v *url.URL) RemoveTargetIRI(index int) ResultLen() (l int) IsResultObject(index int) (ok bool) @@ -4079,9 +4079,9 @@ type AcceptType interface { PrependResultLink(v LinkType) RemoveResultLink(index int) IsResultIRI(index int) (ok bool) - GetResultIRI(index int) (v url.URL) - AppendResultIRI(v url.URL) - PrependResultIRI(v url.URL) + GetResultIRI(index int) (v *url.URL) + AppendResultIRI(v *url.URL) + PrependResultIRI(v *url.URL) RemoveResultIRI(index int) OriginLen() (l int) IsOriginObject(index int) (ok bool) @@ -4095,9 +4095,9 @@ type AcceptType interface { PrependOriginLink(v LinkType) RemoveOriginLink(index int) IsOriginIRI(index int) (ok bool) - GetOriginIRI(index int) (v url.URL) - AppendOriginIRI(v url.URL) - PrependOriginIRI(v url.URL) + GetOriginIRI(index int) (v *url.URL) + AppendOriginIRI(v *url.URL) + PrependOriginIRI(v *url.URL) RemoveOriginIRI(index int) InstrumentLen() (l int) IsInstrumentObject(index int) (ok bool) @@ -4111,16 +4111,16 @@ type AcceptType interface { PrependInstrumentLink(v LinkType) RemoveInstrumentLink(index int) IsInstrumentIRI(index int) (ok bool) - GetInstrumentIRI(index int) (v url.URL) - AppendInstrumentIRI(v url.URL) - PrependInstrumentIRI(v url.URL) + GetInstrumentIRI(index int) (v *url.URL) + AppendInstrumentIRI(v *url.URL) + PrependInstrumentIRI(v *url.URL) RemoveInstrumentIRI(index int) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -4133,9 +4133,9 @@ type AcceptType interface { 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) + 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) @@ -4149,9 +4149,9 @@ type AcceptType interface { 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) + 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) @@ -4165,9 +4165,9 @@ type AcceptType interface { 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) + 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) @@ -4181,9 +4181,9 @@ type AcceptType interface { 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) + 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) @@ -4200,9 +4200,9 @@ type AcceptType interface { 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) + 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) @@ -4216,9 +4216,9 @@ type AcceptType interface { 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) + 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) @@ -4227,8 +4227,8 @@ type AcceptType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -4241,9 +4241,9 @@ type AcceptType interface { 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) + 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) @@ -4257,13 +4257,13 @@ type AcceptType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -4279,9 +4279,9 @@ type AcceptType interface { 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) + 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) @@ -4295,9 +4295,9 @@ type AcceptType interface { 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) + 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) @@ -4311,9 +4311,9 @@ type AcceptType interface { 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) + 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) @@ -4327,28 +4327,28 @@ type AcceptType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -4361,9 +4361,9 @@ type AcceptType interface { 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) + 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) @@ -4380,9 +4380,9 @@ type AcceptType interface { 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) + 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{}) @@ -4393,13 +4393,13 @@ type AcceptType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -4418,9 +4418,9 @@ type AcceptType interface { 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) + 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) @@ -4434,9 +4434,9 @@ type AcceptType interface { 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) + 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) @@ -4450,9 +4450,9 @@ type AcceptType interface { 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) + 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) @@ -4466,40 +4466,40 @@ type AcceptType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -4507,8 +4507,8 @@ type AcceptType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -4516,8 +4516,8 @@ type AcceptType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -4525,8 +4525,8 @@ type AcceptType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -4534,12 +4534,12 @@ type AcceptType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -4548,8 +4548,8 @@ type AcceptType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -4557,41 +4557,41 @@ type AcceptType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -4613,9 +4613,9 @@ type TentativeAcceptType interface { PrependActorLink(v LinkType) RemoveActorLink(index int) IsActorIRI(index int) (ok bool) - GetActorIRI(index int) (v url.URL) - AppendActorIRI(v url.URL) - PrependActorIRI(v url.URL) + GetActorIRI(index int) (v *url.URL) + AppendActorIRI(v *url.URL) + PrependActorIRI(v *url.URL) RemoveActorIRI(index int) ObjectLen() (l int) IsObject(index int) (ok bool) @@ -4624,9 +4624,9 @@ type TentativeAcceptType interface { PrependObject(v ObjectType) RemoveObject(index int) IsObjectIRI(index int) (ok bool) - GetObjectIRI(index int) (v url.URL) - AppendObjectIRI(v url.URL) - PrependObjectIRI(v url.URL) + GetObjectIRI(index int) (v *url.URL) + AppendObjectIRI(v *url.URL) + PrependObjectIRI(v *url.URL) RemoveObjectIRI(index int) TargetLen() (l int) IsTargetObject(index int) (ok bool) @@ -4640,9 +4640,9 @@ type TentativeAcceptType interface { PrependTargetLink(v LinkType) RemoveTargetLink(index int) IsTargetIRI(index int) (ok bool) - GetTargetIRI(index int) (v url.URL) - AppendTargetIRI(v url.URL) - PrependTargetIRI(v url.URL) + GetTargetIRI(index int) (v *url.URL) + AppendTargetIRI(v *url.URL) + PrependTargetIRI(v *url.URL) RemoveTargetIRI(index int) ResultLen() (l int) IsResultObject(index int) (ok bool) @@ -4656,9 +4656,9 @@ type TentativeAcceptType interface { PrependResultLink(v LinkType) RemoveResultLink(index int) IsResultIRI(index int) (ok bool) - GetResultIRI(index int) (v url.URL) - AppendResultIRI(v url.URL) - PrependResultIRI(v url.URL) + GetResultIRI(index int) (v *url.URL) + AppendResultIRI(v *url.URL) + PrependResultIRI(v *url.URL) RemoveResultIRI(index int) OriginLen() (l int) IsOriginObject(index int) (ok bool) @@ -4672,9 +4672,9 @@ type TentativeAcceptType interface { PrependOriginLink(v LinkType) RemoveOriginLink(index int) IsOriginIRI(index int) (ok bool) - GetOriginIRI(index int) (v url.URL) - AppendOriginIRI(v url.URL) - PrependOriginIRI(v url.URL) + GetOriginIRI(index int) (v *url.URL) + AppendOriginIRI(v *url.URL) + PrependOriginIRI(v *url.URL) RemoveOriginIRI(index int) InstrumentLen() (l int) IsInstrumentObject(index int) (ok bool) @@ -4688,16 +4688,16 @@ type TentativeAcceptType interface { PrependInstrumentLink(v LinkType) RemoveInstrumentLink(index int) IsInstrumentIRI(index int) (ok bool) - GetInstrumentIRI(index int) (v url.URL) - AppendInstrumentIRI(v url.URL) - PrependInstrumentIRI(v url.URL) + GetInstrumentIRI(index int) (v *url.URL) + AppendInstrumentIRI(v *url.URL) + PrependInstrumentIRI(v *url.URL) RemoveInstrumentIRI(index int) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -4710,9 +4710,9 @@ type TentativeAcceptType interface { 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) + 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) @@ -4726,9 +4726,9 @@ type TentativeAcceptType interface { 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) + 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) @@ -4742,9 +4742,9 @@ type TentativeAcceptType interface { 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) + 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) @@ -4758,9 +4758,9 @@ type TentativeAcceptType interface { 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) + 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) @@ -4777,9 +4777,9 @@ type TentativeAcceptType interface { 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) + 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) @@ -4793,9 +4793,9 @@ type TentativeAcceptType interface { 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) + 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) @@ -4804,8 +4804,8 @@ type TentativeAcceptType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -4818,9 +4818,9 @@ type TentativeAcceptType interface { 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) + 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) @@ -4834,13 +4834,13 @@ type TentativeAcceptType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -4856,9 +4856,9 @@ type TentativeAcceptType interface { 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) + 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) @@ -4872,9 +4872,9 @@ type TentativeAcceptType interface { 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) + 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) @@ -4888,9 +4888,9 @@ type TentativeAcceptType interface { 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) + 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) @@ -4904,28 +4904,28 @@ type TentativeAcceptType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -4938,9 +4938,9 @@ type TentativeAcceptType interface { 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) + 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) @@ -4957,9 +4957,9 @@ type TentativeAcceptType interface { 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) + 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{}) @@ -4970,13 +4970,13 @@ type TentativeAcceptType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -4995,9 +4995,9 @@ type TentativeAcceptType interface { 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) + 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) @@ -5011,9 +5011,9 @@ type TentativeAcceptType interface { 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) + 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) @@ -5027,9 +5027,9 @@ type TentativeAcceptType interface { 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) + 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) @@ -5043,40 +5043,40 @@ type TentativeAcceptType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -5084,8 +5084,8 @@ type TentativeAcceptType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -5093,8 +5093,8 @@ type TentativeAcceptType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -5102,8 +5102,8 @@ type TentativeAcceptType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -5111,12 +5111,12 @@ type TentativeAcceptType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -5125,8 +5125,8 @@ type TentativeAcceptType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -5134,41 +5134,41 @@ type TentativeAcceptType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -5190,9 +5190,9 @@ type AddType interface { PrependActorLink(v LinkType) RemoveActorLink(index int) IsActorIRI(index int) (ok bool) - GetActorIRI(index int) (v url.URL) - AppendActorIRI(v url.URL) - PrependActorIRI(v url.URL) + GetActorIRI(index int) (v *url.URL) + AppendActorIRI(v *url.URL) + PrependActorIRI(v *url.URL) RemoveActorIRI(index int) ObjectLen() (l int) IsObject(index int) (ok bool) @@ -5201,9 +5201,9 @@ type AddType interface { PrependObject(v ObjectType) RemoveObject(index int) IsObjectIRI(index int) (ok bool) - GetObjectIRI(index int) (v url.URL) - AppendObjectIRI(v url.URL) - PrependObjectIRI(v url.URL) + GetObjectIRI(index int) (v *url.URL) + AppendObjectIRI(v *url.URL) + PrependObjectIRI(v *url.URL) RemoveObjectIRI(index int) TargetLen() (l int) IsTargetObject(index int) (ok bool) @@ -5217,9 +5217,9 @@ type AddType interface { PrependTargetLink(v LinkType) RemoveTargetLink(index int) IsTargetIRI(index int) (ok bool) - GetTargetIRI(index int) (v url.URL) - AppendTargetIRI(v url.URL) - PrependTargetIRI(v url.URL) + GetTargetIRI(index int) (v *url.URL) + AppendTargetIRI(v *url.URL) + PrependTargetIRI(v *url.URL) RemoveTargetIRI(index int) ResultLen() (l int) IsResultObject(index int) (ok bool) @@ -5233,9 +5233,9 @@ type AddType interface { PrependResultLink(v LinkType) RemoveResultLink(index int) IsResultIRI(index int) (ok bool) - GetResultIRI(index int) (v url.URL) - AppendResultIRI(v url.URL) - PrependResultIRI(v url.URL) + GetResultIRI(index int) (v *url.URL) + AppendResultIRI(v *url.URL) + PrependResultIRI(v *url.URL) RemoveResultIRI(index int) OriginLen() (l int) IsOriginObject(index int) (ok bool) @@ -5249,9 +5249,9 @@ type AddType interface { PrependOriginLink(v LinkType) RemoveOriginLink(index int) IsOriginIRI(index int) (ok bool) - GetOriginIRI(index int) (v url.URL) - AppendOriginIRI(v url.URL) - PrependOriginIRI(v url.URL) + GetOriginIRI(index int) (v *url.URL) + AppendOriginIRI(v *url.URL) + PrependOriginIRI(v *url.URL) RemoveOriginIRI(index int) InstrumentLen() (l int) IsInstrumentObject(index int) (ok bool) @@ -5265,16 +5265,16 @@ type AddType interface { PrependInstrumentLink(v LinkType) RemoveInstrumentLink(index int) IsInstrumentIRI(index int) (ok bool) - GetInstrumentIRI(index int) (v url.URL) - AppendInstrumentIRI(v url.URL) - PrependInstrumentIRI(v url.URL) + GetInstrumentIRI(index int) (v *url.URL) + AppendInstrumentIRI(v *url.URL) + PrependInstrumentIRI(v *url.URL) RemoveInstrumentIRI(index int) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -5287,9 +5287,9 @@ type AddType interface { 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) + 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) @@ -5303,9 +5303,9 @@ type AddType interface { 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) + 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) @@ -5319,9 +5319,9 @@ type AddType interface { 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) + 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) @@ -5335,9 +5335,9 @@ type AddType interface { 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) + 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) @@ -5354,9 +5354,9 @@ type AddType interface { 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) + 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) @@ -5370,9 +5370,9 @@ type AddType interface { 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) + 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) @@ -5381,8 +5381,8 @@ type AddType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -5395,9 +5395,9 @@ type AddType interface { 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) + 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) @@ -5411,13 +5411,13 @@ type AddType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -5433,9 +5433,9 @@ type AddType interface { 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) + 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) @@ -5449,9 +5449,9 @@ type AddType interface { 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) + 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) @@ -5465,9 +5465,9 @@ type AddType interface { 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) + 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) @@ -5481,28 +5481,28 @@ type AddType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -5515,9 +5515,9 @@ type AddType interface { 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) + 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) @@ -5534,9 +5534,9 @@ type AddType interface { 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) + 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{}) @@ -5547,13 +5547,13 @@ type AddType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -5572,9 +5572,9 @@ type AddType interface { 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) + 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) @@ -5588,9 +5588,9 @@ type AddType interface { 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) + 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) @@ -5604,9 +5604,9 @@ type AddType interface { 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) + 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) @@ -5620,40 +5620,40 @@ type AddType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -5661,8 +5661,8 @@ type AddType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -5670,8 +5670,8 @@ type AddType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -5679,8 +5679,8 @@ type AddType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -5688,12 +5688,12 @@ type AddType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -5702,8 +5702,8 @@ type AddType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -5711,41 +5711,41 @@ type AddType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -5767,9 +5767,9 @@ type ArriveType interface { PrependActorLink(v LinkType) RemoveActorLink(index int) IsActorIRI(index int) (ok bool) - GetActorIRI(index int) (v url.URL) - AppendActorIRI(v url.URL) - PrependActorIRI(v url.URL) + GetActorIRI(index int) (v *url.URL) + AppendActorIRI(v *url.URL) + PrependActorIRI(v *url.URL) RemoveActorIRI(index int) TargetLen() (l int) IsTargetObject(index int) (ok bool) @@ -5783,9 +5783,9 @@ type ArriveType interface { PrependTargetLink(v LinkType) RemoveTargetLink(index int) IsTargetIRI(index int) (ok bool) - GetTargetIRI(index int) (v url.URL) - AppendTargetIRI(v url.URL) - PrependTargetIRI(v url.URL) + GetTargetIRI(index int) (v *url.URL) + AppendTargetIRI(v *url.URL) + PrependTargetIRI(v *url.URL) RemoveTargetIRI(index int) ResultLen() (l int) IsResultObject(index int) (ok bool) @@ -5799,9 +5799,9 @@ type ArriveType interface { PrependResultLink(v LinkType) RemoveResultLink(index int) IsResultIRI(index int) (ok bool) - GetResultIRI(index int) (v url.URL) - AppendResultIRI(v url.URL) - PrependResultIRI(v url.URL) + GetResultIRI(index int) (v *url.URL) + AppendResultIRI(v *url.URL) + PrependResultIRI(v *url.URL) RemoveResultIRI(index int) OriginLen() (l int) IsOriginObject(index int) (ok bool) @@ -5815,9 +5815,9 @@ type ArriveType interface { PrependOriginLink(v LinkType) RemoveOriginLink(index int) IsOriginIRI(index int) (ok bool) - GetOriginIRI(index int) (v url.URL) - AppendOriginIRI(v url.URL) - PrependOriginIRI(v url.URL) + GetOriginIRI(index int) (v *url.URL) + AppendOriginIRI(v *url.URL) + PrependOriginIRI(v *url.URL) RemoveOriginIRI(index int) InstrumentLen() (l int) IsInstrumentObject(index int) (ok bool) @@ -5831,16 +5831,16 @@ type ArriveType interface { PrependInstrumentLink(v LinkType) RemoveInstrumentLink(index int) IsInstrumentIRI(index int) (ok bool) - GetInstrumentIRI(index int) (v url.URL) - AppendInstrumentIRI(v url.URL) - PrependInstrumentIRI(v url.URL) + GetInstrumentIRI(index int) (v *url.URL) + AppendInstrumentIRI(v *url.URL) + PrependInstrumentIRI(v *url.URL) RemoveInstrumentIRI(index int) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -5853,9 +5853,9 @@ type ArriveType interface { 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) + 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) @@ -5869,9 +5869,9 @@ type ArriveType interface { 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) + 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) @@ -5885,9 +5885,9 @@ type ArriveType interface { 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) + 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) @@ -5901,9 +5901,9 @@ type ArriveType interface { 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) + 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) @@ -5920,9 +5920,9 @@ type ArriveType interface { 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) + 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) @@ -5936,9 +5936,9 @@ type ArriveType interface { 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) + 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) @@ -5947,8 +5947,8 @@ type ArriveType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -5961,9 +5961,9 @@ type ArriveType interface { 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) + 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) @@ -5977,13 +5977,13 @@ type ArriveType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -5999,9 +5999,9 @@ type ArriveType interface { 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) + 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) @@ -6015,9 +6015,9 @@ type ArriveType interface { 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) + 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) @@ -6031,9 +6031,9 @@ type ArriveType interface { 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) + 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) @@ -6047,28 +6047,28 @@ type ArriveType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -6081,9 +6081,9 @@ type ArriveType interface { 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) + 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) @@ -6100,9 +6100,9 @@ type ArriveType interface { 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) + 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{}) @@ -6113,13 +6113,13 @@ type ArriveType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -6138,9 +6138,9 @@ type ArriveType interface { 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) + 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) @@ -6154,9 +6154,9 @@ type ArriveType interface { 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) + 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) @@ -6170,9 +6170,9 @@ type ArriveType interface { 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) + 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) @@ -6186,40 +6186,40 @@ type ArriveType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -6227,8 +6227,8 @@ type ArriveType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -6236,8 +6236,8 @@ type ArriveType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -6245,8 +6245,8 @@ type ArriveType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -6254,12 +6254,12 @@ type ArriveType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -6268,8 +6268,8 @@ type ArriveType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -6277,41 +6277,41 @@ type ArriveType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -6333,9 +6333,9 @@ type CreateType interface { PrependActorLink(v LinkType) RemoveActorLink(index int) IsActorIRI(index int) (ok bool) - GetActorIRI(index int) (v url.URL) - AppendActorIRI(v url.URL) - PrependActorIRI(v url.URL) + GetActorIRI(index int) (v *url.URL) + AppendActorIRI(v *url.URL) + PrependActorIRI(v *url.URL) RemoveActorIRI(index int) ObjectLen() (l int) IsObject(index int) (ok bool) @@ -6344,9 +6344,9 @@ type CreateType interface { PrependObject(v ObjectType) RemoveObject(index int) IsObjectIRI(index int) (ok bool) - GetObjectIRI(index int) (v url.URL) - AppendObjectIRI(v url.URL) - PrependObjectIRI(v url.URL) + GetObjectIRI(index int) (v *url.URL) + AppendObjectIRI(v *url.URL) + PrependObjectIRI(v *url.URL) RemoveObjectIRI(index int) TargetLen() (l int) IsTargetObject(index int) (ok bool) @@ -6360,9 +6360,9 @@ type CreateType interface { PrependTargetLink(v LinkType) RemoveTargetLink(index int) IsTargetIRI(index int) (ok bool) - GetTargetIRI(index int) (v url.URL) - AppendTargetIRI(v url.URL) - PrependTargetIRI(v url.URL) + GetTargetIRI(index int) (v *url.URL) + AppendTargetIRI(v *url.URL) + PrependTargetIRI(v *url.URL) RemoveTargetIRI(index int) ResultLen() (l int) IsResultObject(index int) (ok bool) @@ -6376,9 +6376,9 @@ type CreateType interface { PrependResultLink(v LinkType) RemoveResultLink(index int) IsResultIRI(index int) (ok bool) - GetResultIRI(index int) (v url.URL) - AppendResultIRI(v url.URL) - PrependResultIRI(v url.URL) + GetResultIRI(index int) (v *url.URL) + AppendResultIRI(v *url.URL) + PrependResultIRI(v *url.URL) RemoveResultIRI(index int) OriginLen() (l int) IsOriginObject(index int) (ok bool) @@ -6392,9 +6392,9 @@ type CreateType interface { PrependOriginLink(v LinkType) RemoveOriginLink(index int) IsOriginIRI(index int) (ok bool) - GetOriginIRI(index int) (v url.URL) - AppendOriginIRI(v url.URL) - PrependOriginIRI(v url.URL) + GetOriginIRI(index int) (v *url.URL) + AppendOriginIRI(v *url.URL) + PrependOriginIRI(v *url.URL) RemoveOriginIRI(index int) InstrumentLen() (l int) IsInstrumentObject(index int) (ok bool) @@ -6408,16 +6408,16 @@ type CreateType interface { PrependInstrumentLink(v LinkType) RemoveInstrumentLink(index int) IsInstrumentIRI(index int) (ok bool) - GetInstrumentIRI(index int) (v url.URL) - AppendInstrumentIRI(v url.URL) - PrependInstrumentIRI(v url.URL) + GetInstrumentIRI(index int) (v *url.URL) + AppendInstrumentIRI(v *url.URL) + PrependInstrumentIRI(v *url.URL) RemoveInstrumentIRI(index int) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -6430,9 +6430,9 @@ type CreateType interface { 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) + 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) @@ -6446,9 +6446,9 @@ type CreateType interface { 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) + 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) @@ -6462,9 +6462,9 @@ type CreateType interface { 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) + 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) @@ -6478,9 +6478,9 @@ type CreateType interface { 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) + 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) @@ -6497,9 +6497,9 @@ type CreateType interface { 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) + 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) @@ -6513,9 +6513,9 @@ type CreateType interface { 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) + 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) @@ -6524,8 +6524,8 @@ type CreateType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -6538,9 +6538,9 @@ type CreateType interface { 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) + 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) @@ -6554,13 +6554,13 @@ type CreateType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -6576,9 +6576,9 @@ type CreateType interface { 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) + 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) @@ -6592,9 +6592,9 @@ type CreateType interface { 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) + 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) @@ -6608,9 +6608,9 @@ type CreateType interface { 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) + 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) @@ -6624,28 +6624,28 @@ type CreateType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -6658,9 +6658,9 @@ type CreateType interface { 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) + 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) @@ -6677,9 +6677,9 @@ type CreateType interface { 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) + 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{}) @@ -6690,13 +6690,13 @@ type CreateType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -6715,9 +6715,9 @@ type CreateType interface { 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) + 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) @@ -6731,9 +6731,9 @@ type CreateType interface { 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) + 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) @@ -6747,9 +6747,9 @@ type CreateType interface { 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) + 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) @@ -6763,40 +6763,40 @@ type CreateType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -6804,8 +6804,8 @@ type CreateType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -6813,8 +6813,8 @@ type CreateType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -6822,8 +6822,8 @@ type CreateType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -6831,12 +6831,12 @@ type CreateType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -6845,8 +6845,8 @@ type CreateType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -6854,41 +6854,41 @@ type CreateType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -6910,9 +6910,9 @@ type DeleteType interface { PrependActorLink(v LinkType) RemoveActorLink(index int) IsActorIRI(index int) (ok bool) - GetActorIRI(index int) (v url.URL) - AppendActorIRI(v url.URL) - PrependActorIRI(v url.URL) + GetActorIRI(index int) (v *url.URL) + AppendActorIRI(v *url.URL) + PrependActorIRI(v *url.URL) RemoveActorIRI(index int) ObjectLen() (l int) IsObject(index int) (ok bool) @@ -6921,9 +6921,9 @@ type DeleteType interface { PrependObject(v ObjectType) RemoveObject(index int) IsObjectIRI(index int) (ok bool) - GetObjectIRI(index int) (v url.URL) - AppendObjectIRI(v url.URL) - PrependObjectIRI(v url.URL) + GetObjectIRI(index int) (v *url.URL) + AppendObjectIRI(v *url.URL) + PrependObjectIRI(v *url.URL) RemoveObjectIRI(index int) TargetLen() (l int) IsTargetObject(index int) (ok bool) @@ -6937,9 +6937,9 @@ type DeleteType interface { PrependTargetLink(v LinkType) RemoveTargetLink(index int) IsTargetIRI(index int) (ok bool) - GetTargetIRI(index int) (v url.URL) - AppendTargetIRI(v url.URL) - PrependTargetIRI(v url.URL) + GetTargetIRI(index int) (v *url.URL) + AppendTargetIRI(v *url.URL) + PrependTargetIRI(v *url.URL) RemoveTargetIRI(index int) ResultLen() (l int) IsResultObject(index int) (ok bool) @@ -6953,9 +6953,9 @@ type DeleteType interface { PrependResultLink(v LinkType) RemoveResultLink(index int) IsResultIRI(index int) (ok bool) - GetResultIRI(index int) (v url.URL) - AppendResultIRI(v url.URL) - PrependResultIRI(v url.URL) + GetResultIRI(index int) (v *url.URL) + AppendResultIRI(v *url.URL) + PrependResultIRI(v *url.URL) RemoveResultIRI(index int) OriginLen() (l int) IsOriginObject(index int) (ok bool) @@ -6969,9 +6969,9 @@ type DeleteType interface { PrependOriginLink(v LinkType) RemoveOriginLink(index int) IsOriginIRI(index int) (ok bool) - GetOriginIRI(index int) (v url.URL) - AppendOriginIRI(v url.URL) - PrependOriginIRI(v url.URL) + GetOriginIRI(index int) (v *url.URL) + AppendOriginIRI(v *url.URL) + PrependOriginIRI(v *url.URL) RemoveOriginIRI(index int) InstrumentLen() (l int) IsInstrumentObject(index int) (ok bool) @@ -6985,16 +6985,16 @@ type DeleteType interface { PrependInstrumentLink(v LinkType) RemoveInstrumentLink(index int) IsInstrumentIRI(index int) (ok bool) - GetInstrumentIRI(index int) (v url.URL) - AppendInstrumentIRI(v url.URL) - PrependInstrumentIRI(v url.URL) + GetInstrumentIRI(index int) (v *url.URL) + AppendInstrumentIRI(v *url.URL) + PrependInstrumentIRI(v *url.URL) RemoveInstrumentIRI(index int) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -7007,9 +7007,9 @@ type DeleteType interface { 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) + 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) @@ -7023,9 +7023,9 @@ type DeleteType interface { 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) + 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) @@ -7039,9 +7039,9 @@ type DeleteType interface { 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) + 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) @@ -7055,9 +7055,9 @@ type DeleteType interface { 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) + 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) @@ -7074,9 +7074,9 @@ type DeleteType interface { 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) + 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) @@ -7090,9 +7090,9 @@ type DeleteType interface { 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) + 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) @@ -7101,8 +7101,8 @@ type DeleteType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -7115,9 +7115,9 @@ type DeleteType interface { 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) + 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) @@ -7131,13 +7131,13 @@ type DeleteType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -7153,9 +7153,9 @@ type DeleteType interface { 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) + 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) @@ -7169,9 +7169,9 @@ type DeleteType interface { 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) + 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) @@ -7185,9 +7185,9 @@ type DeleteType interface { 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) + 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) @@ -7201,28 +7201,28 @@ type DeleteType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -7235,9 +7235,9 @@ type DeleteType interface { 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) + 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) @@ -7254,9 +7254,9 @@ type DeleteType interface { 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) + 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{}) @@ -7267,13 +7267,13 @@ type DeleteType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -7292,9 +7292,9 @@ type DeleteType interface { 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) + 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) @@ -7308,9 +7308,9 @@ type DeleteType interface { 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) + 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) @@ -7324,9 +7324,9 @@ type DeleteType interface { 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) + 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) @@ -7340,40 +7340,40 @@ type DeleteType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -7381,8 +7381,8 @@ type DeleteType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -7390,8 +7390,8 @@ type DeleteType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -7399,8 +7399,8 @@ type DeleteType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -7408,12 +7408,12 @@ type DeleteType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -7422,8 +7422,8 @@ type DeleteType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -7431,41 +7431,41 @@ type DeleteType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -7487,9 +7487,9 @@ type FollowType interface { PrependActorLink(v LinkType) RemoveActorLink(index int) IsActorIRI(index int) (ok bool) - GetActorIRI(index int) (v url.URL) - AppendActorIRI(v url.URL) - PrependActorIRI(v url.URL) + GetActorIRI(index int) (v *url.URL) + AppendActorIRI(v *url.URL) + PrependActorIRI(v *url.URL) RemoveActorIRI(index int) ObjectLen() (l int) IsObject(index int) (ok bool) @@ -7498,9 +7498,9 @@ type FollowType interface { PrependObject(v ObjectType) RemoveObject(index int) IsObjectIRI(index int) (ok bool) - GetObjectIRI(index int) (v url.URL) - AppendObjectIRI(v url.URL) - PrependObjectIRI(v url.URL) + GetObjectIRI(index int) (v *url.URL) + AppendObjectIRI(v *url.URL) + PrependObjectIRI(v *url.URL) RemoveObjectIRI(index int) TargetLen() (l int) IsTargetObject(index int) (ok bool) @@ -7514,9 +7514,9 @@ type FollowType interface { PrependTargetLink(v LinkType) RemoveTargetLink(index int) IsTargetIRI(index int) (ok bool) - GetTargetIRI(index int) (v url.URL) - AppendTargetIRI(v url.URL) - PrependTargetIRI(v url.URL) + GetTargetIRI(index int) (v *url.URL) + AppendTargetIRI(v *url.URL) + PrependTargetIRI(v *url.URL) RemoveTargetIRI(index int) ResultLen() (l int) IsResultObject(index int) (ok bool) @@ -7530,9 +7530,9 @@ type FollowType interface { PrependResultLink(v LinkType) RemoveResultLink(index int) IsResultIRI(index int) (ok bool) - GetResultIRI(index int) (v url.URL) - AppendResultIRI(v url.URL) - PrependResultIRI(v url.URL) + GetResultIRI(index int) (v *url.URL) + AppendResultIRI(v *url.URL) + PrependResultIRI(v *url.URL) RemoveResultIRI(index int) OriginLen() (l int) IsOriginObject(index int) (ok bool) @@ -7546,9 +7546,9 @@ type FollowType interface { PrependOriginLink(v LinkType) RemoveOriginLink(index int) IsOriginIRI(index int) (ok bool) - GetOriginIRI(index int) (v url.URL) - AppendOriginIRI(v url.URL) - PrependOriginIRI(v url.URL) + GetOriginIRI(index int) (v *url.URL) + AppendOriginIRI(v *url.URL) + PrependOriginIRI(v *url.URL) RemoveOriginIRI(index int) InstrumentLen() (l int) IsInstrumentObject(index int) (ok bool) @@ -7562,16 +7562,16 @@ type FollowType interface { PrependInstrumentLink(v LinkType) RemoveInstrumentLink(index int) IsInstrumentIRI(index int) (ok bool) - GetInstrumentIRI(index int) (v url.URL) - AppendInstrumentIRI(v url.URL) - PrependInstrumentIRI(v url.URL) + GetInstrumentIRI(index int) (v *url.URL) + AppendInstrumentIRI(v *url.URL) + PrependInstrumentIRI(v *url.URL) RemoveInstrumentIRI(index int) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -7584,9 +7584,9 @@ type FollowType interface { 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) + 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) @@ -7600,9 +7600,9 @@ type FollowType interface { 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) + 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) @@ -7616,9 +7616,9 @@ type FollowType interface { 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) + 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) @@ -7632,9 +7632,9 @@ type FollowType interface { 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) + 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) @@ -7651,9 +7651,9 @@ type FollowType interface { 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) + 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) @@ -7667,9 +7667,9 @@ type FollowType interface { 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) + 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) @@ -7678,8 +7678,8 @@ type FollowType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -7692,9 +7692,9 @@ type FollowType interface { 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) + 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) @@ -7708,13 +7708,13 @@ type FollowType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -7730,9 +7730,9 @@ type FollowType interface { 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) + 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) @@ -7746,9 +7746,9 @@ type FollowType interface { 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) + 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) @@ -7762,9 +7762,9 @@ type FollowType interface { 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) + 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) @@ -7778,28 +7778,28 @@ type FollowType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -7812,9 +7812,9 @@ type FollowType interface { 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) + 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) @@ -7831,9 +7831,9 @@ type FollowType interface { 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) + 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{}) @@ -7844,13 +7844,13 @@ type FollowType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -7869,9 +7869,9 @@ type FollowType interface { 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) + 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) @@ -7885,9 +7885,9 @@ type FollowType interface { 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) + 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) @@ -7901,9 +7901,9 @@ type FollowType interface { 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) + 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) @@ -7917,40 +7917,40 @@ type FollowType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -7958,8 +7958,8 @@ type FollowType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -7967,8 +7967,8 @@ type FollowType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -7976,8 +7976,8 @@ type FollowType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -7985,12 +7985,12 @@ type FollowType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -7999,8 +7999,8 @@ type FollowType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -8008,41 +8008,41 @@ type FollowType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -8064,9 +8064,9 @@ type IgnoreType interface { PrependActorLink(v LinkType) RemoveActorLink(index int) IsActorIRI(index int) (ok bool) - GetActorIRI(index int) (v url.URL) - AppendActorIRI(v url.URL) - PrependActorIRI(v url.URL) + GetActorIRI(index int) (v *url.URL) + AppendActorIRI(v *url.URL) + PrependActorIRI(v *url.URL) RemoveActorIRI(index int) ObjectLen() (l int) IsObject(index int) (ok bool) @@ -8075,9 +8075,9 @@ type IgnoreType interface { PrependObject(v ObjectType) RemoveObject(index int) IsObjectIRI(index int) (ok bool) - GetObjectIRI(index int) (v url.URL) - AppendObjectIRI(v url.URL) - PrependObjectIRI(v url.URL) + GetObjectIRI(index int) (v *url.URL) + AppendObjectIRI(v *url.URL) + PrependObjectIRI(v *url.URL) RemoveObjectIRI(index int) TargetLen() (l int) IsTargetObject(index int) (ok bool) @@ -8091,9 +8091,9 @@ type IgnoreType interface { PrependTargetLink(v LinkType) RemoveTargetLink(index int) IsTargetIRI(index int) (ok bool) - GetTargetIRI(index int) (v url.URL) - AppendTargetIRI(v url.URL) - PrependTargetIRI(v url.URL) + GetTargetIRI(index int) (v *url.URL) + AppendTargetIRI(v *url.URL) + PrependTargetIRI(v *url.URL) RemoveTargetIRI(index int) ResultLen() (l int) IsResultObject(index int) (ok bool) @@ -8107,9 +8107,9 @@ type IgnoreType interface { PrependResultLink(v LinkType) RemoveResultLink(index int) IsResultIRI(index int) (ok bool) - GetResultIRI(index int) (v url.URL) - AppendResultIRI(v url.URL) - PrependResultIRI(v url.URL) + GetResultIRI(index int) (v *url.URL) + AppendResultIRI(v *url.URL) + PrependResultIRI(v *url.URL) RemoveResultIRI(index int) OriginLen() (l int) IsOriginObject(index int) (ok bool) @@ -8123,9 +8123,9 @@ type IgnoreType interface { PrependOriginLink(v LinkType) RemoveOriginLink(index int) IsOriginIRI(index int) (ok bool) - GetOriginIRI(index int) (v url.URL) - AppendOriginIRI(v url.URL) - PrependOriginIRI(v url.URL) + GetOriginIRI(index int) (v *url.URL) + AppendOriginIRI(v *url.URL) + PrependOriginIRI(v *url.URL) RemoveOriginIRI(index int) InstrumentLen() (l int) IsInstrumentObject(index int) (ok bool) @@ -8139,16 +8139,16 @@ type IgnoreType interface { PrependInstrumentLink(v LinkType) RemoveInstrumentLink(index int) IsInstrumentIRI(index int) (ok bool) - GetInstrumentIRI(index int) (v url.URL) - AppendInstrumentIRI(v url.URL) - PrependInstrumentIRI(v url.URL) + GetInstrumentIRI(index int) (v *url.URL) + AppendInstrumentIRI(v *url.URL) + PrependInstrumentIRI(v *url.URL) RemoveInstrumentIRI(index int) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -8161,9 +8161,9 @@ type IgnoreType interface { 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) + 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) @@ -8177,9 +8177,9 @@ type IgnoreType interface { 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) + 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) @@ -8193,9 +8193,9 @@ type IgnoreType interface { 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) + 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) @@ -8209,9 +8209,9 @@ type IgnoreType interface { 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) + 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) @@ -8228,9 +8228,9 @@ type IgnoreType interface { 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) + 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) @@ -8244,9 +8244,9 @@ type IgnoreType interface { 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) + 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) @@ -8255,8 +8255,8 @@ type IgnoreType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -8269,9 +8269,9 @@ type IgnoreType interface { 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) + 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) @@ -8285,13 +8285,13 @@ type IgnoreType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -8307,9 +8307,9 @@ type IgnoreType interface { 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) + 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) @@ -8323,9 +8323,9 @@ type IgnoreType interface { 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) + 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) @@ -8339,9 +8339,9 @@ type IgnoreType interface { 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) + 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) @@ -8355,28 +8355,28 @@ type IgnoreType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -8389,9 +8389,9 @@ type IgnoreType interface { 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) + 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) @@ -8408,9 +8408,9 @@ type IgnoreType interface { 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) + 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{}) @@ -8421,13 +8421,13 @@ type IgnoreType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -8446,9 +8446,9 @@ type IgnoreType interface { 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) + 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) @@ -8462,9 +8462,9 @@ type IgnoreType interface { 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) + 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) @@ -8478,9 +8478,9 @@ type IgnoreType interface { 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) + 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) @@ -8494,40 +8494,40 @@ type IgnoreType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -8535,8 +8535,8 @@ type IgnoreType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -8544,8 +8544,8 @@ type IgnoreType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -8553,8 +8553,8 @@ type IgnoreType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -8562,12 +8562,12 @@ type IgnoreType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -8576,8 +8576,8 @@ type IgnoreType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -8585,41 +8585,41 @@ type IgnoreType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -8641,9 +8641,9 @@ type JoinType interface { PrependActorLink(v LinkType) RemoveActorLink(index int) IsActorIRI(index int) (ok bool) - GetActorIRI(index int) (v url.URL) - AppendActorIRI(v url.URL) - PrependActorIRI(v url.URL) + GetActorIRI(index int) (v *url.URL) + AppendActorIRI(v *url.URL) + PrependActorIRI(v *url.URL) RemoveActorIRI(index int) ObjectLen() (l int) IsObject(index int) (ok bool) @@ -8652,9 +8652,9 @@ type JoinType interface { PrependObject(v ObjectType) RemoveObject(index int) IsObjectIRI(index int) (ok bool) - GetObjectIRI(index int) (v url.URL) - AppendObjectIRI(v url.URL) - PrependObjectIRI(v url.URL) + GetObjectIRI(index int) (v *url.URL) + AppendObjectIRI(v *url.URL) + PrependObjectIRI(v *url.URL) RemoveObjectIRI(index int) TargetLen() (l int) IsTargetObject(index int) (ok bool) @@ -8668,9 +8668,9 @@ type JoinType interface { PrependTargetLink(v LinkType) RemoveTargetLink(index int) IsTargetIRI(index int) (ok bool) - GetTargetIRI(index int) (v url.URL) - AppendTargetIRI(v url.URL) - PrependTargetIRI(v url.URL) + GetTargetIRI(index int) (v *url.URL) + AppendTargetIRI(v *url.URL) + PrependTargetIRI(v *url.URL) RemoveTargetIRI(index int) ResultLen() (l int) IsResultObject(index int) (ok bool) @@ -8684,9 +8684,9 @@ type JoinType interface { PrependResultLink(v LinkType) RemoveResultLink(index int) IsResultIRI(index int) (ok bool) - GetResultIRI(index int) (v url.URL) - AppendResultIRI(v url.URL) - PrependResultIRI(v url.URL) + GetResultIRI(index int) (v *url.URL) + AppendResultIRI(v *url.URL) + PrependResultIRI(v *url.URL) RemoveResultIRI(index int) OriginLen() (l int) IsOriginObject(index int) (ok bool) @@ -8700,9 +8700,9 @@ type JoinType interface { PrependOriginLink(v LinkType) RemoveOriginLink(index int) IsOriginIRI(index int) (ok bool) - GetOriginIRI(index int) (v url.URL) - AppendOriginIRI(v url.URL) - PrependOriginIRI(v url.URL) + GetOriginIRI(index int) (v *url.URL) + AppendOriginIRI(v *url.URL) + PrependOriginIRI(v *url.URL) RemoveOriginIRI(index int) InstrumentLen() (l int) IsInstrumentObject(index int) (ok bool) @@ -8716,16 +8716,16 @@ type JoinType interface { PrependInstrumentLink(v LinkType) RemoveInstrumentLink(index int) IsInstrumentIRI(index int) (ok bool) - GetInstrumentIRI(index int) (v url.URL) - AppendInstrumentIRI(v url.URL) - PrependInstrumentIRI(v url.URL) + GetInstrumentIRI(index int) (v *url.URL) + AppendInstrumentIRI(v *url.URL) + PrependInstrumentIRI(v *url.URL) RemoveInstrumentIRI(index int) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -8738,9 +8738,9 @@ type JoinType interface { 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) + 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) @@ -8754,9 +8754,9 @@ type JoinType interface { 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) + 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) @@ -8770,9 +8770,9 @@ type JoinType interface { 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) + 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) @@ -8786,9 +8786,9 @@ type JoinType interface { 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) + 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) @@ -8805,9 +8805,9 @@ type JoinType interface { 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) + 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) @@ -8821,9 +8821,9 @@ type JoinType interface { 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) + 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) @@ -8832,8 +8832,8 @@ type JoinType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -8846,9 +8846,9 @@ type JoinType interface { 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) + 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) @@ -8862,13 +8862,13 @@ type JoinType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -8884,9 +8884,9 @@ type JoinType interface { 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) + 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) @@ -8900,9 +8900,9 @@ type JoinType interface { 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) + 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) @@ -8916,9 +8916,9 @@ type JoinType interface { 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) + 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) @@ -8932,28 +8932,28 @@ type JoinType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -8966,9 +8966,9 @@ type JoinType interface { 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) + 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) @@ -8985,9 +8985,9 @@ type JoinType interface { 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) + 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{}) @@ -8998,13 +8998,13 @@ type JoinType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -9023,9 +9023,9 @@ type JoinType interface { 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) + 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) @@ -9039,9 +9039,9 @@ type JoinType interface { 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) + 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) @@ -9055,9 +9055,9 @@ type JoinType interface { 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) + 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) @@ -9071,40 +9071,40 @@ type JoinType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -9112,8 +9112,8 @@ type JoinType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -9121,8 +9121,8 @@ type JoinType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -9130,8 +9130,8 @@ type JoinType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -9139,12 +9139,12 @@ type JoinType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -9153,8 +9153,8 @@ type JoinType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -9162,41 +9162,41 @@ type JoinType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -9218,9 +9218,9 @@ type LeaveType interface { PrependActorLink(v LinkType) RemoveActorLink(index int) IsActorIRI(index int) (ok bool) - GetActorIRI(index int) (v url.URL) - AppendActorIRI(v url.URL) - PrependActorIRI(v url.URL) + GetActorIRI(index int) (v *url.URL) + AppendActorIRI(v *url.URL) + PrependActorIRI(v *url.URL) RemoveActorIRI(index int) ObjectLen() (l int) IsObject(index int) (ok bool) @@ -9229,9 +9229,9 @@ type LeaveType interface { PrependObject(v ObjectType) RemoveObject(index int) IsObjectIRI(index int) (ok bool) - GetObjectIRI(index int) (v url.URL) - AppendObjectIRI(v url.URL) - PrependObjectIRI(v url.URL) + GetObjectIRI(index int) (v *url.URL) + AppendObjectIRI(v *url.URL) + PrependObjectIRI(v *url.URL) RemoveObjectIRI(index int) TargetLen() (l int) IsTargetObject(index int) (ok bool) @@ -9245,9 +9245,9 @@ type LeaveType interface { PrependTargetLink(v LinkType) RemoveTargetLink(index int) IsTargetIRI(index int) (ok bool) - GetTargetIRI(index int) (v url.URL) - AppendTargetIRI(v url.URL) - PrependTargetIRI(v url.URL) + GetTargetIRI(index int) (v *url.URL) + AppendTargetIRI(v *url.URL) + PrependTargetIRI(v *url.URL) RemoveTargetIRI(index int) ResultLen() (l int) IsResultObject(index int) (ok bool) @@ -9261,9 +9261,9 @@ type LeaveType interface { PrependResultLink(v LinkType) RemoveResultLink(index int) IsResultIRI(index int) (ok bool) - GetResultIRI(index int) (v url.URL) - AppendResultIRI(v url.URL) - PrependResultIRI(v url.URL) + GetResultIRI(index int) (v *url.URL) + AppendResultIRI(v *url.URL) + PrependResultIRI(v *url.URL) RemoveResultIRI(index int) OriginLen() (l int) IsOriginObject(index int) (ok bool) @@ -9277,9 +9277,9 @@ type LeaveType interface { PrependOriginLink(v LinkType) RemoveOriginLink(index int) IsOriginIRI(index int) (ok bool) - GetOriginIRI(index int) (v url.URL) - AppendOriginIRI(v url.URL) - PrependOriginIRI(v url.URL) + GetOriginIRI(index int) (v *url.URL) + AppendOriginIRI(v *url.URL) + PrependOriginIRI(v *url.URL) RemoveOriginIRI(index int) InstrumentLen() (l int) IsInstrumentObject(index int) (ok bool) @@ -9293,16 +9293,16 @@ type LeaveType interface { PrependInstrumentLink(v LinkType) RemoveInstrumentLink(index int) IsInstrumentIRI(index int) (ok bool) - GetInstrumentIRI(index int) (v url.URL) - AppendInstrumentIRI(v url.URL) - PrependInstrumentIRI(v url.URL) + GetInstrumentIRI(index int) (v *url.URL) + AppendInstrumentIRI(v *url.URL) + PrependInstrumentIRI(v *url.URL) RemoveInstrumentIRI(index int) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -9315,9 +9315,9 @@ type LeaveType interface { 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) + 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) @@ -9331,9 +9331,9 @@ type LeaveType interface { 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) + 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) @@ -9347,9 +9347,9 @@ type LeaveType interface { 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) + 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) @@ -9363,9 +9363,9 @@ type LeaveType interface { 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) + 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) @@ -9382,9 +9382,9 @@ type LeaveType interface { 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) + 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) @@ -9398,9 +9398,9 @@ type LeaveType interface { 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) + 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) @@ -9409,8 +9409,8 @@ type LeaveType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -9423,9 +9423,9 @@ type LeaveType interface { 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) + 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) @@ -9439,13 +9439,13 @@ type LeaveType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -9461,9 +9461,9 @@ type LeaveType interface { 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) + 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) @@ -9477,9 +9477,9 @@ type LeaveType interface { 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) + 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) @@ -9493,9 +9493,9 @@ type LeaveType interface { 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) + 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) @@ -9509,28 +9509,28 @@ type LeaveType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -9543,9 +9543,9 @@ type LeaveType interface { 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) + 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) @@ -9562,9 +9562,9 @@ type LeaveType interface { 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) + 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{}) @@ -9575,13 +9575,13 @@ type LeaveType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -9600,9 +9600,9 @@ type LeaveType interface { 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) + 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) @@ -9616,9 +9616,9 @@ type LeaveType interface { 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) + 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) @@ -9632,9 +9632,9 @@ type LeaveType interface { 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) + 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) @@ -9648,40 +9648,40 @@ type LeaveType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -9689,8 +9689,8 @@ type LeaveType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -9698,8 +9698,8 @@ type LeaveType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -9707,8 +9707,8 @@ type LeaveType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -9716,12 +9716,12 @@ type LeaveType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -9730,8 +9730,8 @@ type LeaveType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -9739,41 +9739,41 @@ type LeaveType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -9795,9 +9795,9 @@ type LikeType interface { PrependActorLink(v LinkType) RemoveActorLink(index int) IsActorIRI(index int) (ok bool) - GetActorIRI(index int) (v url.URL) - AppendActorIRI(v url.URL) - PrependActorIRI(v url.URL) + GetActorIRI(index int) (v *url.URL) + AppendActorIRI(v *url.URL) + PrependActorIRI(v *url.URL) RemoveActorIRI(index int) ObjectLen() (l int) IsObject(index int) (ok bool) @@ -9806,9 +9806,9 @@ type LikeType interface { PrependObject(v ObjectType) RemoveObject(index int) IsObjectIRI(index int) (ok bool) - GetObjectIRI(index int) (v url.URL) - AppendObjectIRI(v url.URL) - PrependObjectIRI(v url.URL) + GetObjectIRI(index int) (v *url.URL) + AppendObjectIRI(v *url.URL) + PrependObjectIRI(v *url.URL) RemoveObjectIRI(index int) TargetLen() (l int) IsTargetObject(index int) (ok bool) @@ -9822,9 +9822,9 @@ type LikeType interface { PrependTargetLink(v LinkType) RemoveTargetLink(index int) IsTargetIRI(index int) (ok bool) - GetTargetIRI(index int) (v url.URL) - AppendTargetIRI(v url.URL) - PrependTargetIRI(v url.URL) + GetTargetIRI(index int) (v *url.URL) + AppendTargetIRI(v *url.URL) + PrependTargetIRI(v *url.URL) RemoveTargetIRI(index int) ResultLen() (l int) IsResultObject(index int) (ok bool) @@ -9838,9 +9838,9 @@ type LikeType interface { PrependResultLink(v LinkType) RemoveResultLink(index int) IsResultIRI(index int) (ok bool) - GetResultIRI(index int) (v url.URL) - AppendResultIRI(v url.URL) - PrependResultIRI(v url.URL) + GetResultIRI(index int) (v *url.URL) + AppendResultIRI(v *url.URL) + PrependResultIRI(v *url.URL) RemoveResultIRI(index int) OriginLen() (l int) IsOriginObject(index int) (ok bool) @@ -9854,9 +9854,9 @@ type LikeType interface { PrependOriginLink(v LinkType) RemoveOriginLink(index int) IsOriginIRI(index int) (ok bool) - GetOriginIRI(index int) (v url.URL) - AppendOriginIRI(v url.URL) - PrependOriginIRI(v url.URL) + GetOriginIRI(index int) (v *url.URL) + AppendOriginIRI(v *url.URL) + PrependOriginIRI(v *url.URL) RemoveOriginIRI(index int) InstrumentLen() (l int) IsInstrumentObject(index int) (ok bool) @@ -9870,16 +9870,16 @@ type LikeType interface { PrependInstrumentLink(v LinkType) RemoveInstrumentLink(index int) IsInstrumentIRI(index int) (ok bool) - GetInstrumentIRI(index int) (v url.URL) - AppendInstrumentIRI(v url.URL) - PrependInstrumentIRI(v url.URL) + GetInstrumentIRI(index int) (v *url.URL) + AppendInstrumentIRI(v *url.URL) + PrependInstrumentIRI(v *url.URL) RemoveInstrumentIRI(index int) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -9892,9 +9892,9 @@ type LikeType interface { 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) + 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) @@ -9908,9 +9908,9 @@ type LikeType interface { 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) + 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) @@ -9924,9 +9924,9 @@ type LikeType interface { 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) + 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) @@ -9940,9 +9940,9 @@ type LikeType interface { 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) + 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) @@ -9959,9 +9959,9 @@ type LikeType interface { 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) + 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) @@ -9975,9 +9975,9 @@ type LikeType interface { 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) + 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) @@ -9986,8 +9986,8 @@ type LikeType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -10000,9 +10000,9 @@ type LikeType interface { 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) + 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) @@ -10016,13 +10016,13 @@ type LikeType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -10038,9 +10038,9 @@ type LikeType interface { 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) + 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) @@ -10054,9 +10054,9 @@ type LikeType interface { 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) + 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) @@ -10070,9 +10070,9 @@ type LikeType interface { 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) + 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) @@ -10086,28 +10086,28 @@ type LikeType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -10120,9 +10120,9 @@ type LikeType interface { 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) + 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) @@ -10139,9 +10139,9 @@ type LikeType interface { 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) + 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{}) @@ -10152,13 +10152,13 @@ type LikeType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -10177,9 +10177,9 @@ type LikeType interface { 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) + 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) @@ -10193,9 +10193,9 @@ type LikeType interface { 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) + 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) @@ -10209,9 +10209,9 @@ type LikeType interface { 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) + 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) @@ -10225,40 +10225,40 @@ type LikeType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -10266,8 +10266,8 @@ type LikeType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -10275,8 +10275,8 @@ type LikeType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -10284,8 +10284,8 @@ type LikeType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -10293,12 +10293,12 @@ type LikeType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -10307,8 +10307,8 @@ type LikeType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -10316,41 +10316,41 @@ type LikeType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -10372,9 +10372,9 @@ type OfferType interface { PrependActorLink(v LinkType) RemoveActorLink(index int) IsActorIRI(index int) (ok bool) - GetActorIRI(index int) (v url.URL) - AppendActorIRI(v url.URL) - PrependActorIRI(v url.URL) + GetActorIRI(index int) (v *url.URL) + AppendActorIRI(v *url.URL) + PrependActorIRI(v *url.URL) RemoveActorIRI(index int) ObjectLen() (l int) IsObject(index int) (ok bool) @@ -10383,9 +10383,9 @@ type OfferType interface { PrependObject(v ObjectType) RemoveObject(index int) IsObjectIRI(index int) (ok bool) - GetObjectIRI(index int) (v url.URL) - AppendObjectIRI(v url.URL) - PrependObjectIRI(v url.URL) + GetObjectIRI(index int) (v *url.URL) + AppendObjectIRI(v *url.URL) + PrependObjectIRI(v *url.URL) RemoveObjectIRI(index int) TargetLen() (l int) IsTargetObject(index int) (ok bool) @@ -10399,9 +10399,9 @@ type OfferType interface { PrependTargetLink(v LinkType) RemoveTargetLink(index int) IsTargetIRI(index int) (ok bool) - GetTargetIRI(index int) (v url.URL) - AppendTargetIRI(v url.URL) - PrependTargetIRI(v url.URL) + GetTargetIRI(index int) (v *url.URL) + AppendTargetIRI(v *url.URL) + PrependTargetIRI(v *url.URL) RemoveTargetIRI(index int) ResultLen() (l int) IsResultObject(index int) (ok bool) @@ -10415,9 +10415,9 @@ type OfferType interface { PrependResultLink(v LinkType) RemoveResultLink(index int) IsResultIRI(index int) (ok bool) - GetResultIRI(index int) (v url.URL) - AppendResultIRI(v url.URL) - PrependResultIRI(v url.URL) + GetResultIRI(index int) (v *url.URL) + AppendResultIRI(v *url.URL) + PrependResultIRI(v *url.URL) RemoveResultIRI(index int) OriginLen() (l int) IsOriginObject(index int) (ok bool) @@ -10431,9 +10431,9 @@ type OfferType interface { PrependOriginLink(v LinkType) RemoveOriginLink(index int) IsOriginIRI(index int) (ok bool) - GetOriginIRI(index int) (v url.URL) - AppendOriginIRI(v url.URL) - PrependOriginIRI(v url.URL) + GetOriginIRI(index int) (v *url.URL) + AppendOriginIRI(v *url.URL) + PrependOriginIRI(v *url.URL) RemoveOriginIRI(index int) InstrumentLen() (l int) IsInstrumentObject(index int) (ok bool) @@ -10447,16 +10447,16 @@ type OfferType interface { PrependInstrumentLink(v LinkType) RemoveInstrumentLink(index int) IsInstrumentIRI(index int) (ok bool) - GetInstrumentIRI(index int) (v url.URL) - AppendInstrumentIRI(v url.URL) - PrependInstrumentIRI(v url.URL) + GetInstrumentIRI(index int) (v *url.URL) + AppendInstrumentIRI(v *url.URL) + PrependInstrumentIRI(v *url.URL) RemoveInstrumentIRI(index int) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -10469,9 +10469,9 @@ type OfferType interface { 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) + 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) @@ -10485,9 +10485,9 @@ type OfferType interface { 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) + 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) @@ -10501,9 +10501,9 @@ type OfferType interface { 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) + 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) @@ -10517,9 +10517,9 @@ type OfferType interface { 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) + 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) @@ -10536,9 +10536,9 @@ type OfferType interface { 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) + 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) @@ -10552,9 +10552,9 @@ type OfferType interface { 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) + 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) @@ -10563,8 +10563,8 @@ type OfferType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -10577,9 +10577,9 @@ type OfferType interface { 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) + 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) @@ -10593,13 +10593,13 @@ type OfferType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -10615,9 +10615,9 @@ type OfferType interface { 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) + 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) @@ -10631,9 +10631,9 @@ type OfferType interface { 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) + 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) @@ -10647,9 +10647,9 @@ type OfferType interface { 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) + 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) @@ -10663,28 +10663,28 @@ type OfferType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -10697,9 +10697,9 @@ type OfferType interface { 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) + 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) @@ -10716,9 +10716,9 @@ type OfferType interface { 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) + 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{}) @@ -10729,13 +10729,13 @@ type OfferType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -10754,9 +10754,9 @@ type OfferType interface { 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) + 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) @@ -10770,9 +10770,9 @@ type OfferType interface { 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) + 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) @@ -10786,9 +10786,9 @@ type OfferType interface { 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) + 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) @@ -10802,40 +10802,40 @@ type OfferType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -10843,8 +10843,8 @@ type OfferType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -10852,8 +10852,8 @@ type OfferType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -10861,8 +10861,8 @@ type OfferType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -10870,12 +10870,12 @@ type OfferType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -10884,8 +10884,8 @@ type OfferType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -10893,41 +10893,41 @@ type OfferType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -10949,9 +10949,9 @@ type InviteType interface { PrependActorLink(v LinkType) RemoveActorLink(index int) IsActorIRI(index int) (ok bool) - GetActorIRI(index int) (v url.URL) - AppendActorIRI(v url.URL) - PrependActorIRI(v url.URL) + GetActorIRI(index int) (v *url.URL) + AppendActorIRI(v *url.URL) + PrependActorIRI(v *url.URL) RemoveActorIRI(index int) ObjectLen() (l int) IsObject(index int) (ok bool) @@ -10960,9 +10960,9 @@ type InviteType interface { PrependObject(v ObjectType) RemoveObject(index int) IsObjectIRI(index int) (ok bool) - GetObjectIRI(index int) (v url.URL) - AppendObjectIRI(v url.URL) - PrependObjectIRI(v url.URL) + GetObjectIRI(index int) (v *url.URL) + AppendObjectIRI(v *url.URL) + PrependObjectIRI(v *url.URL) RemoveObjectIRI(index int) TargetLen() (l int) IsTargetObject(index int) (ok bool) @@ -10976,9 +10976,9 @@ type InviteType interface { PrependTargetLink(v LinkType) RemoveTargetLink(index int) IsTargetIRI(index int) (ok bool) - GetTargetIRI(index int) (v url.URL) - AppendTargetIRI(v url.URL) - PrependTargetIRI(v url.URL) + GetTargetIRI(index int) (v *url.URL) + AppendTargetIRI(v *url.URL) + PrependTargetIRI(v *url.URL) RemoveTargetIRI(index int) ResultLen() (l int) IsResultObject(index int) (ok bool) @@ -10992,9 +10992,9 @@ type InviteType interface { PrependResultLink(v LinkType) RemoveResultLink(index int) IsResultIRI(index int) (ok bool) - GetResultIRI(index int) (v url.URL) - AppendResultIRI(v url.URL) - PrependResultIRI(v url.URL) + GetResultIRI(index int) (v *url.URL) + AppendResultIRI(v *url.URL) + PrependResultIRI(v *url.URL) RemoveResultIRI(index int) OriginLen() (l int) IsOriginObject(index int) (ok bool) @@ -11008,9 +11008,9 @@ type InviteType interface { PrependOriginLink(v LinkType) RemoveOriginLink(index int) IsOriginIRI(index int) (ok bool) - GetOriginIRI(index int) (v url.URL) - AppendOriginIRI(v url.URL) - PrependOriginIRI(v url.URL) + GetOriginIRI(index int) (v *url.URL) + AppendOriginIRI(v *url.URL) + PrependOriginIRI(v *url.URL) RemoveOriginIRI(index int) InstrumentLen() (l int) IsInstrumentObject(index int) (ok bool) @@ -11024,16 +11024,16 @@ type InviteType interface { PrependInstrumentLink(v LinkType) RemoveInstrumentLink(index int) IsInstrumentIRI(index int) (ok bool) - GetInstrumentIRI(index int) (v url.URL) - AppendInstrumentIRI(v url.URL) - PrependInstrumentIRI(v url.URL) + GetInstrumentIRI(index int) (v *url.URL) + AppendInstrumentIRI(v *url.URL) + PrependInstrumentIRI(v *url.URL) RemoveInstrumentIRI(index int) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -11046,9 +11046,9 @@ type InviteType interface { 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) + 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) @@ -11062,9 +11062,9 @@ type InviteType interface { 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) + 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) @@ -11078,9 +11078,9 @@ type InviteType interface { 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) + 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) @@ -11094,9 +11094,9 @@ type InviteType interface { 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) + 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) @@ -11113,9 +11113,9 @@ type InviteType interface { 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) + 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) @@ -11129,9 +11129,9 @@ type InviteType interface { 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) + 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) @@ -11140,8 +11140,8 @@ type InviteType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -11154,9 +11154,9 @@ type InviteType interface { 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) + 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) @@ -11170,13 +11170,13 @@ type InviteType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -11192,9 +11192,9 @@ type InviteType interface { 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) + 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) @@ -11208,9 +11208,9 @@ type InviteType interface { 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) + 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) @@ -11224,9 +11224,9 @@ type InviteType interface { 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) + 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) @@ -11240,28 +11240,28 @@ type InviteType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -11274,9 +11274,9 @@ type InviteType interface { 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) + 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) @@ -11293,9 +11293,9 @@ type InviteType interface { 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) + 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{}) @@ -11306,13 +11306,13 @@ type InviteType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -11331,9 +11331,9 @@ type InviteType interface { 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) + 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) @@ -11347,9 +11347,9 @@ type InviteType interface { 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) + 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) @@ -11363,9 +11363,9 @@ type InviteType interface { 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) + 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) @@ -11379,40 +11379,40 @@ type InviteType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -11420,8 +11420,8 @@ type InviteType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -11429,8 +11429,8 @@ type InviteType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -11438,8 +11438,8 @@ type InviteType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -11447,12 +11447,12 @@ type InviteType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -11461,8 +11461,8 @@ type InviteType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -11470,41 +11470,41 @@ type InviteType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -11526,9 +11526,9 @@ type RejectType interface { PrependActorLink(v LinkType) RemoveActorLink(index int) IsActorIRI(index int) (ok bool) - GetActorIRI(index int) (v url.URL) - AppendActorIRI(v url.URL) - PrependActorIRI(v url.URL) + GetActorIRI(index int) (v *url.URL) + AppendActorIRI(v *url.URL) + PrependActorIRI(v *url.URL) RemoveActorIRI(index int) ObjectLen() (l int) IsObject(index int) (ok bool) @@ -11537,9 +11537,9 @@ type RejectType interface { PrependObject(v ObjectType) RemoveObject(index int) IsObjectIRI(index int) (ok bool) - GetObjectIRI(index int) (v url.URL) - AppendObjectIRI(v url.URL) - PrependObjectIRI(v url.URL) + GetObjectIRI(index int) (v *url.URL) + AppendObjectIRI(v *url.URL) + PrependObjectIRI(v *url.URL) RemoveObjectIRI(index int) TargetLen() (l int) IsTargetObject(index int) (ok bool) @@ -11553,9 +11553,9 @@ type RejectType interface { PrependTargetLink(v LinkType) RemoveTargetLink(index int) IsTargetIRI(index int) (ok bool) - GetTargetIRI(index int) (v url.URL) - AppendTargetIRI(v url.URL) - PrependTargetIRI(v url.URL) + GetTargetIRI(index int) (v *url.URL) + AppendTargetIRI(v *url.URL) + PrependTargetIRI(v *url.URL) RemoveTargetIRI(index int) ResultLen() (l int) IsResultObject(index int) (ok bool) @@ -11569,9 +11569,9 @@ type RejectType interface { PrependResultLink(v LinkType) RemoveResultLink(index int) IsResultIRI(index int) (ok bool) - GetResultIRI(index int) (v url.URL) - AppendResultIRI(v url.URL) - PrependResultIRI(v url.URL) + GetResultIRI(index int) (v *url.URL) + AppendResultIRI(v *url.URL) + PrependResultIRI(v *url.URL) RemoveResultIRI(index int) OriginLen() (l int) IsOriginObject(index int) (ok bool) @@ -11585,9 +11585,9 @@ type RejectType interface { PrependOriginLink(v LinkType) RemoveOriginLink(index int) IsOriginIRI(index int) (ok bool) - GetOriginIRI(index int) (v url.URL) - AppendOriginIRI(v url.URL) - PrependOriginIRI(v url.URL) + GetOriginIRI(index int) (v *url.URL) + AppendOriginIRI(v *url.URL) + PrependOriginIRI(v *url.URL) RemoveOriginIRI(index int) InstrumentLen() (l int) IsInstrumentObject(index int) (ok bool) @@ -11601,16 +11601,16 @@ type RejectType interface { PrependInstrumentLink(v LinkType) RemoveInstrumentLink(index int) IsInstrumentIRI(index int) (ok bool) - GetInstrumentIRI(index int) (v url.URL) - AppendInstrumentIRI(v url.URL) - PrependInstrumentIRI(v url.URL) + GetInstrumentIRI(index int) (v *url.URL) + AppendInstrumentIRI(v *url.URL) + PrependInstrumentIRI(v *url.URL) RemoveInstrumentIRI(index int) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -11623,9 +11623,9 @@ type RejectType interface { 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) + 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) @@ -11639,9 +11639,9 @@ type RejectType interface { 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) + 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) @@ -11655,9 +11655,9 @@ type RejectType interface { 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) + 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) @@ -11671,9 +11671,9 @@ type RejectType interface { 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) + 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) @@ -11690,9 +11690,9 @@ type RejectType interface { 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) + 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) @@ -11706,9 +11706,9 @@ type RejectType interface { 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) + 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) @@ -11717,8 +11717,8 @@ type RejectType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -11731,9 +11731,9 @@ type RejectType interface { 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) + 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) @@ -11747,13 +11747,13 @@ type RejectType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -11769,9 +11769,9 @@ type RejectType interface { 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) + 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) @@ -11785,9 +11785,9 @@ type RejectType interface { 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) + 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) @@ -11801,9 +11801,9 @@ type RejectType interface { 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) + 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) @@ -11817,28 +11817,28 @@ type RejectType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -11851,9 +11851,9 @@ type RejectType interface { 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) + 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) @@ -11870,9 +11870,9 @@ type RejectType interface { 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) + 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{}) @@ -11883,13 +11883,13 @@ type RejectType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -11908,9 +11908,9 @@ type RejectType interface { 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) + 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) @@ -11924,9 +11924,9 @@ type RejectType interface { 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) + 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) @@ -11940,9 +11940,9 @@ type RejectType interface { 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) + 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) @@ -11956,40 +11956,40 @@ type RejectType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -11997,8 +11997,8 @@ type RejectType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -12006,8 +12006,8 @@ type RejectType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -12015,8 +12015,8 @@ type RejectType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -12024,12 +12024,12 @@ type RejectType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -12038,8 +12038,8 @@ type RejectType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -12047,41 +12047,41 @@ type RejectType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -12103,9 +12103,9 @@ type TentativeRejectType interface { PrependActorLink(v LinkType) RemoveActorLink(index int) IsActorIRI(index int) (ok bool) - GetActorIRI(index int) (v url.URL) - AppendActorIRI(v url.URL) - PrependActorIRI(v url.URL) + GetActorIRI(index int) (v *url.URL) + AppendActorIRI(v *url.URL) + PrependActorIRI(v *url.URL) RemoveActorIRI(index int) ObjectLen() (l int) IsObject(index int) (ok bool) @@ -12114,9 +12114,9 @@ type TentativeRejectType interface { PrependObject(v ObjectType) RemoveObject(index int) IsObjectIRI(index int) (ok bool) - GetObjectIRI(index int) (v url.URL) - AppendObjectIRI(v url.URL) - PrependObjectIRI(v url.URL) + GetObjectIRI(index int) (v *url.URL) + AppendObjectIRI(v *url.URL) + PrependObjectIRI(v *url.URL) RemoveObjectIRI(index int) TargetLen() (l int) IsTargetObject(index int) (ok bool) @@ -12130,9 +12130,9 @@ type TentativeRejectType interface { PrependTargetLink(v LinkType) RemoveTargetLink(index int) IsTargetIRI(index int) (ok bool) - GetTargetIRI(index int) (v url.URL) - AppendTargetIRI(v url.URL) - PrependTargetIRI(v url.URL) + GetTargetIRI(index int) (v *url.URL) + AppendTargetIRI(v *url.URL) + PrependTargetIRI(v *url.URL) RemoveTargetIRI(index int) ResultLen() (l int) IsResultObject(index int) (ok bool) @@ -12146,9 +12146,9 @@ type TentativeRejectType interface { PrependResultLink(v LinkType) RemoveResultLink(index int) IsResultIRI(index int) (ok bool) - GetResultIRI(index int) (v url.URL) - AppendResultIRI(v url.URL) - PrependResultIRI(v url.URL) + GetResultIRI(index int) (v *url.URL) + AppendResultIRI(v *url.URL) + PrependResultIRI(v *url.URL) RemoveResultIRI(index int) OriginLen() (l int) IsOriginObject(index int) (ok bool) @@ -12162,9 +12162,9 @@ type TentativeRejectType interface { PrependOriginLink(v LinkType) RemoveOriginLink(index int) IsOriginIRI(index int) (ok bool) - GetOriginIRI(index int) (v url.URL) - AppendOriginIRI(v url.URL) - PrependOriginIRI(v url.URL) + GetOriginIRI(index int) (v *url.URL) + AppendOriginIRI(v *url.URL) + PrependOriginIRI(v *url.URL) RemoveOriginIRI(index int) InstrumentLen() (l int) IsInstrumentObject(index int) (ok bool) @@ -12178,16 +12178,16 @@ type TentativeRejectType interface { PrependInstrumentLink(v LinkType) RemoveInstrumentLink(index int) IsInstrumentIRI(index int) (ok bool) - GetInstrumentIRI(index int) (v url.URL) - AppendInstrumentIRI(v url.URL) - PrependInstrumentIRI(v url.URL) + GetInstrumentIRI(index int) (v *url.URL) + AppendInstrumentIRI(v *url.URL) + PrependInstrumentIRI(v *url.URL) RemoveInstrumentIRI(index int) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -12200,9 +12200,9 @@ type TentativeRejectType interface { 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) + 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) @@ -12216,9 +12216,9 @@ type TentativeRejectType interface { 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) + 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) @@ -12232,9 +12232,9 @@ type TentativeRejectType interface { 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) + 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) @@ -12248,9 +12248,9 @@ type TentativeRejectType interface { 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) + 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) @@ -12267,9 +12267,9 @@ type TentativeRejectType interface { 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) + 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) @@ -12283,9 +12283,9 @@ type TentativeRejectType interface { 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) + 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) @@ -12294,8 +12294,8 @@ type TentativeRejectType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -12308,9 +12308,9 @@ type TentativeRejectType interface { 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) + 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) @@ -12324,13 +12324,13 @@ type TentativeRejectType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -12346,9 +12346,9 @@ type TentativeRejectType interface { 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) + 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) @@ -12362,9 +12362,9 @@ type TentativeRejectType interface { 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) + 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) @@ -12378,9 +12378,9 @@ type TentativeRejectType interface { 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) + 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) @@ -12394,28 +12394,28 @@ type TentativeRejectType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -12428,9 +12428,9 @@ type TentativeRejectType interface { 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) + 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) @@ -12447,9 +12447,9 @@ type TentativeRejectType interface { 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) + 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{}) @@ -12460,13 +12460,13 @@ type TentativeRejectType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -12485,9 +12485,9 @@ type TentativeRejectType interface { 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) + 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) @@ -12501,9 +12501,9 @@ type TentativeRejectType interface { 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) + 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) @@ -12517,9 +12517,9 @@ type TentativeRejectType interface { 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) + 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) @@ -12533,40 +12533,40 @@ type TentativeRejectType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -12574,8 +12574,8 @@ type TentativeRejectType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -12583,8 +12583,8 @@ type TentativeRejectType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -12592,8 +12592,8 @@ type TentativeRejectType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -12601,12 +12601,12 @@ type TentativeRejectType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -12615,8 +12615,8 @@ type TentativeRejectType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -12624,41 +12624,41 @@ type TentativeRejectType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -12680,9 +12680,9 @@ type RemoveType interface { PrependActorLink(v LinkType) RemoveActorLink(index int) IsActorIRI(index int) (ok bool) - GetActorIRI(index int) (v url.URL) - AppendActorIRI(v url.URL) - PrependActorIRI(v url.URL) + GetActorIRI(index int) (v *url.URL) + AppendActorIRI(v *url.URL) + PrependActorIRI(v *url.URL) RemoveActorIRI(index int) ObjectLen() (l int) IsObject(index int) (ok bool) @@ -12691,9 +12691,9 @@ type RemoveType interface { PrependObject(v ObjectType) RemoveObject(index int) IsObjectIRI(index int) (ok bool) - GetObjectIRI(index int) (v url.URL) - AppendObjectIRI(v url.URL) - PrependObjectIRI(v url.URL) + GetObjectIRI(index int) (v *url.URL) + AppendObjectIRI(v *url.URL) + PrependObjectIRI(v *url.URL) RemoveObjectIRI(index int) TargetLen() (l int) IsTargetObject(index int) (ok bool) @@ -12707,9 +12707,9 @@ type RemoveType interface { PrependTargetLink(v LinkType) RemoveTargetLink(index int) IsTargetIRI(index int) (ok bool) - GetTargetIRI(index int) (v url.URL) - AppendTargetIRI(v url.URL) - PrependTargetIRI(v url.URL) + GetTargetIRI(index int) (v *url.URL) + AppendTargetIRI(v *url.URL) + PrependTargetIRI(v *url.URL) RemoveTargetIRI(index int) ResultLen() (l int) IsResultObject(index int) (ok bool) @@ -12723,9 +12723,9 @@ type RemoveType interface { PrependResultLink(v LinkType) RemoveResultLink(index int) IsResultIRI(index int) (ok bool) - GetResultIRI(index int) (v url.URL) - AppendResultIRI(v url.URL) - PrependResultIRI(v url.URL) + GetResultIRI(index int) (v *url.URL) + AppendResultIRI(v *url.URL) + PrependResultIRI(v *url.URL) RemoveResultIRI(index int) OriginLen() (l int) IsOriginObject(index int) (ok bool) @@ -12739,9 +12739,9 @@ type RemoveType interface { PrependOriginLink(v LinkType) RemoveOriginLink(index int) IsOriginIRI(index int) (ok bool) - GetOriginIRI(index int) (v url.URL) - AppendOriginIRI(v url.URL) - PrependOriginIRI(v url.URL) + GetOriginIRI(index int) (v *url.URL) + AppendOriginIRI(v *url.URL) + PrependOriginIRI(v *url.URL) RemoveOriginIRI(index int) InstrumentLen() (l int) IsInstrumentObject(index int) (ok bool) @@ -12755,16 +12755,16 @@ type RemoveType interface { PrependInstrumentLink(v LinkType) RemoveInstrumentLink(index int) IsInstrumentIRI(index int) (ok bool) - GetInstrumentIRI(index int) (v url.URL) - AppendInstrumentIRI(v url.URL) - PrependInstrumentIRI(v url.URL) + GetInstrumentIRI(index int) (v *url.URL) + AppendInstrumentIRI(v *url.URL) + PrependInstrumentIRI(v *url.URL) RemoveInstrumentIRI(index int) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -12777,9 +12777,9 @@ type RemoveType interface { 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) + 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) @@ -12793,9 +12793,9 @@ type RemoveType interface { 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) + 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) @@ -12809,9 +12809,9 @@ type RemoveType interface { 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) + 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) @@ -12825,9 +12825,9 @@ type RemoveType interface { 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) + 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) @@ -12844,9 +12844,9 @@ type RemoveType interface { 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) + 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) @@ -12860,9 +12860,9 @@ type RemoveType interface { 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) + 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) @@ -12871,8 +12871,8 @@ type RemoveType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -12885,9 +12885,9 @@ type RemoveType interface { 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) + 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) @@ -12901,13 +12901,13 @@ type RemoveType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -12923,9 +12923,9 @@ type RemoveType interface { 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) + 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) @@ -12939,9 +12939,9 @@ type RemoveType interface { 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) + 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) @@ -12955,9 +12955,9 @@ type RemoveType interface { 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) + 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) @@ -12971,28 +12971,28 @@ type RemoveType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -13005,9 +13005,9 @@ type RemoveType interface { 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) + 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) @@ -13024,9 +13024,9 @@ type RemoveType interface { 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) + 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{}) @@ -13037,13 +13037,13 @@ type RemoveType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -13062,9 +13062,9 @@ type RemoveType interface { 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) + 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) @@ -13078,9 +13078,9 @@ type RemoveType interface { 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) + 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) @@ -13094,9 +13094,9 @@ type RemoveType interface { 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) + 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) @@ -13110,40 +13110,40 @@ type RemoveType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -13151,8 +13151,8 @@ type RemoveType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -13160,8 +13160,8 @@ type RemoveType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -13169,8 +13169,8 @@ type RemoveType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -13178,12 +13178,12 @@ type RemoveType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -13192,8 +13192,8 @@ type RemoveType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -13201,41 +13201,41 @@ type RemoveType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -13257,9 +13257,9 @@ type UndoType interface { PrependActorLink(v LinkType) RemoveActorLink(index int) IsActorIRI(index int) (ok bool) - GetActorIRI(index int) (v url.URL) - AppendActorIRI(v url.URL) - PrependActorIRI(v url.URL) + GetActorIRI(index int) (v *url.URL) + AppendActorIRI(v *url.URL) + PrependActorIRI(v *url.URL) RemoveActorIRI(index int) ObjectLen() (l int) IsObject(index int) (ok bool) @@ -13268,9 +13268,9 @@ type UndoType interface { PrependObject(v ObjectType) RemoveObject(index int) IsObjectIRI(index int) (ok bool) - GetObjectIRI(index int) (v url.URL) - AppendObjectIRI(v url.URL) - PrependObjectIRI(v url.URL) + GetObjectIRI(index int) (v *url.URL) + AppendObjectIRI(v *url.URL) + PrependObjectIRI(v *url.URL) RemoveObjectIRI(index int) TargetLen() (l int) IsTargetObject(index int) (ok bool) @@ -13284,9 +13284,9 @@ type UndoType interface { PrependTargetLink(v LinkType) RemoveTargetLink(index int) IsTargetIRI(index int) (ok bool) - GetTargetIRI(index int) (v url.URL) - AppendTargetIRI(v url.URL) - PrependTargetIRI(v url.URL) + GetTargetIRI(index int) (v *url.URL) + AppendTargetIRI(v *url.URL) + PrependTargetIRI(v *url.URL) RemoveTargetIRI(index int) ResultLen() (l int) IsResultObject(index int) (ok bool) @@ -13300,9 +13300,9 @@ type UndoType interface { PrependResultLink(v LinkType) RemoveResultLink(index int) IsResultIRI(index int) (ok bool) - GetResultIRI(index int) (v url.URL) - AppendResultIRI(v url.URL) - PrependResultIRI(v url.URL) + GetResultIRI(index int) (v *url.URL) + AppendResultIRI(v *url.URL) + PrependResultIRI(v *url.URL) RemoveResultIRI(index int) OriginLen() (l int) IsOriginObject(index int) (ok bool) @@ -13316,9 +13316,9 @@ type UndoType interface { PrependOriginLink(v LinkType) RemoveOriginLink(index int) IsOriginIRI(index int) (ok bool) - GetOriginIRI(index int) (v url.URL) - AppendOriginIRI(v url.URL) - PrependOriginIRI(v url.URL) + GetOriginIRI(index int) (v *url.URL) + AppendOriginIRI(v *url.URL) + PrependOriginIRI(v *url.URL) RemoveOriginIRI(index int) InstrumentLen() (l int) IsInstrumentObject(index int) (ok bool) @@ -13332,16 +13332,16 @@ type UndoType interface { PrependInstrumentLink(v LinkType) RemoveInstrumentLink(index int) IsInstrumentIRI(index int) (ok bool) - GetInstrumentIRI(index int) (v url.URL) - AppendInstrumentIRI(v url.URL) - PrependInstrumentIRI(v url.URL) + GetInstrumentIRI(index int) (v *url.URL) + AppendInstrumentIRI(v *url.URL) + PrependInstrumentIRI(v *url.URL) RemoveInstrumentIRI(index int) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -13354,9 +13354,9 @@ type UndoType interface { 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) + 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) @@ -13370,9 +13370,9 @@ type UndoType interface { 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) + 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) @@ -13386,9 +13386,9 @@ type UndoType interface { 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) + 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) @@ -13402,9 +13402,9 @@ type UndoType interface { 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) + 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) @@ -13421,9 +13421,9 @@ type UndoType interface { 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) + 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) @@ -13437,9 +13437,9 @@ type UndoType interface { 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) + 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) @@ -13448,8 +13448,8 @@ type UndoType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -13462,9 +13462,9 @@ type UndoType interface { 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) + 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) @@ -13478,13 +13478,13 @@ type UndoType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -13500,9 +13500,9 @@ type UndoType interface { 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) + 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) @@ -13516,9 +13516,9 @@ type UndoType interface { 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) + 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) @@ -13532,9 +13532,9 @@ type UndoType interface { 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) + 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) @@ -13548,28 +13548,28 @@ type UndoType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -13582,9 +13582,9 @@ type UndoType interface { 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) + 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) @@ -13601,9 +13601,9 @@ type UndoType interface { 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) + 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{}) @@ -13614,13 +13614,13 @@ type UndoType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -13639,9 +13639,9 @@ type UndoType interface { 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) + 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) @@ -13655,9 +13655,9 @@ type UndoType interface { 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) + 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) @@ -13671,9 +13671,9 @@ type UndoType interface { 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) + 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) @@ -13687,40 +13687,40 @@ type UndoType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -13728,8 +13728,8 @@ type UndoType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -13737,8 +13737,8 @@ type UndoType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -13746,8 +13746,8 @@ type UndoType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -13755,12 +13755,12 @@ type UndoType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -13769,8 +13769,8 @@ type UndoType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -13778,41 +13778,41 @@ type UndoType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -13834,9 +13834,9 @@ type UpdateType interface { PrependActorLink(v LinkType) RemoveActorLink(index int) IsActorIRI(index int) (ok bool) - GetActorIRI(index int) (v url.URL) - AppendActorIRI(v url.URL) - PrependActorIRI(v url.URL) + GetActorIRI(index int) (v *url.URL) + AppendActorIRI(v *url.URL) + PrependActorIRI(v *url.URL) RemoveActorIRI(index int) ObjectLen() (l int) IsObject(index int) (ok bool) @@ -13845,9 +13845,9 @@ type UpdateType interface { PrependObject(v ObjectType) RemoveObject(index int) IsObjectIRI(index int) (ok bool) - GetObjectIRI(index int) (v url.URL) - AppendObjectIRI(v url.URL) - PrependObjectIRI(v url.URL) + GetObjectIRI(index int) (v *url.URL) + AppendObjectIRI(v *url.URL) + PrependObjectIRI(v *url.URL) RemoveObjectIRI(index int) TargetLen() (l int) IsTargetObject(index int) (ok bool) @@ -13861,9 +13861,9 @@ type UpdateType interface { PrependTargetLink(v LinkType) RemoveTargetLink(index int) IsTargetIRI(index int) (ok bool) - GetTargetIRI(index int) (v url.URL) - AppendTargetIRI(v url.URL) - PrependTargetIRI(v url.URL) + GetTargetIRI(index int) (v *url.URL) + AppendTargetIRI(v *url.URL) + PrependTargetIRI(v *url.URL) RemoveTargetIRI(index int) ResultLen() (l int) IsResultObject(index int) (ok bool) @@ -13877,9 +13877,9 @@ type UpdateType interface { PrependResultLink(v LinkType) RemoveResultLink(index int) IsResultIRI(index int) (ok bool) - GetResultIRI(index int) (v url.URL) - AppendResultIRI(v url.URL) - PrependResultIRI(v url.URL) + GetResultIRI(index int) (v *url.URL) + AppendResultIRI(v *url.URL) + PrependResultIRI(v *url.URL) RemoveResultIRI(index int) OriginLen() (l int) IsOriginObject(index int) (ok bool) @@ -13893,9 +13893,9 @@ type UpdateType interface { PrependOriginLink(v LinkType) RemoveOriginLink(index int) IsOriginIRI(index int) (ok bool) - GetOriginIRI(index int) (v url.URL) - AppendOriginIRI(v url.URL) - PrependOriginIRI(v url.URL) + GetOriginIRI(index int) (v *url.URL) + AppendOriginIRI(v *url.URL) + PrependOriginIRI(v *url.URL) RemoveOriginIRI(index int) InstrumentLen() (l int) IsInstrumentObject(index int) (ok bool) @@ -13909,16 +13909,16 @@ type UpdateType interface { PrependInstrumentLink(v LinkType) RemoveInstrumentLink(index int) IsInstrumentIRI(index int) (ok bool) - GetInstrumentIRI(index int) (v url.URL) - AppendInstrumentIRI(v url.URL) - PrependInstrumentIRI(v url.URL) + GetInstrumentIRI(index int) (v *url.URL) + AppendInstrumentIRI(v *url.URL) + PrependInstrumentIRI(v *url.URL) RemoveInstrumentIRI(index int) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -13931,9 +13931,9 @@ type UpdateType interface { 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) + 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) @@ -13947,9 +13947,9 @@ type UpdateType interface { 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) + 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) @@ -13963,9 +13963,9 @@ type UpdateType interface { 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) + 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) @@ -13979,9 +13979,9 @@ type UpdateType interface { 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) + 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) @@ -13998,9 +13998,9 @@ type UpdateType interface { 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) + 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) @@ -14014,9 +14014,9 @@ type UpdateType interface { 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) + 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) @@ -14025,8 +14025,8 @@ type UpdateType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -14039,9 +14039,9 @@ type UpdateType interface { 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) + 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) @@ -14055,13 +14055,13 @@ type UpdateType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -14077,9 +14077,9 @@ type UpdateType interface { 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) + 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) @@ -14093,9 +14093,9 @@ type UpdateType interface { 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) + 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) @@ -14109,9 +14109,9 @@ type UpdateType interface { 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) + 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) @@ -14125,28 +14125,28 @@ type UpdateType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -14159,9 +14159,9 @@ type UpdateType interface { 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) + 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) @@ -14178,9 +14178,9 @@ type UpdateType interface { 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) + 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{}) @@ -14191,13 +14191,13 @@ type UpdateType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -14216,9 +14216,9 @@ type UpdateType interface { 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) + 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) @@ -14232,9 +14232,9 @@ type UpdateType interface { 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) + 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) @@ -14248,9 +14248,9 @@ type UpdateType interface { 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) + 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) @@ -14264,40 +14264,40 @@ type UpdateType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -14305,8 +14305,8 @@ type UpdateType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -14314,8 +14314,8 @@ type UpdateType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -14323,8 +14323,8 @@ type UpdateType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -14332,12 +14332,12 @@ type UpdateType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -14346,8 +14346,8 @@ type UpdateType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -14355,41 +14355,41 @@ type UpdateType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -14411,9 +14411,9 @@ type ViewType interface { PrependActorLink(v LinkType) RemoveActorLink(index int) IsActorIRI(index int) (ok bool) - GetActorIRI(index int) (v url.URL) - AppendActorIRI(v url.URL) - PrependActorIRI(v url.URL) + GetActorIRI(index int) (v *url.URL) + AppendActorIRI(v *url.URL) + PrependActorIRI(v *url.URL) RemoveActorIRI(index int) ObjectLen() (l int) IsObject(index int) (ok bool) @@ -14422,9 +14422,9 @@ type ViewType interface { PrependObject(v ObjectType) RemoveObject(index int) IsObjectIRI(index int) (ok bool) - GetObjectIRI(index int) (v url.URL) - AppendObjectIRI(v url.URL) - PrependObjectIRI(v url.URL) + GetObjectIRI(index int) (v *url.URL) + AppendObjectIRI(v *url.URL) + PrependObjectIRI(v *url.URL) RemoveObjectIRI(index int) TargetLen() (l int) IsTargetObject(index int) (ok bool) @@ -14438,9 +14438,9 @@ type ViewType interface { PrependTargetLink(v LinkType) RemoveTargetLink(index int) IsTargetIRI(index int) (ok bool) - GetTargetIRI(index int) (v url.URL) - AppendTargetIRI(v url.URL) - PrependTargetIRI(v url.URL) + GetTargetIRI(index int) (v *url.URL) + AppendTargetIRI(v *url.URL) + PrependTargetIRI(v *url.URL) RemoveTargetIRI(index int) ResultLen() (l int) IsResultObject(index int) (ok bool) @@ -14454,9 +14454,9 @@ type ViewType interface { PrependResultLink(v LinkType) RemoveResultLink(index int) IsResultIRI(index int) (ok bool) - GetResultIRI(index int) (v url.URL) - AppendResultIRI(v url.URL) - PrependResultIRI(v url.URL) + GetResultIRI(index int) (v *url.URL) + AppendResultIRI(v *url.URL) + PrependResultIRI(v *url.URL) RemoveResultIRI(index int) OriginLen() (l int) IsOriginObject(index int) (ok bool) @@ -14470,9 +14470,9 @@ type ViewType interface { PrependOriginLink(v LinkType) RemoveOriginLink(index int) IsOriginIRI(index int) (ok bool) - GetOriginIRI(index int) (v url.URL) - AppendOriginIRI(v url.URL) - PrependOriginIRI(v url.URL) + GetOriginIRI(index int) (v *url.URL) + AppendOriginIRI(v *url.URL) + PrependOriginIRI(v *url.URL) RemoveOriginIRI(index int) InstrumentLen() (l int) IsInstrumentObject(index int) (ok bool) @@ -14486,16 +14486,16 @@ type ViewType interface { PrependInstrumentLink(v LinkType) RemoveInstrumentLink(index int) IsInstrumentIRI(index int) (ok bool) - GetInstrumentIRI(index int) (v url.URL) - AppendInstrumentIRI(v url.URL) - PrependInstrumentIRI(v url.URL) + GetInstrumentIRI(index int) (v *url.URL) + AppendInstrumentIRI(v *url.URL) + PrependInstrumentIRI(v *url.URL) RemoveInstrumentIRI(index int) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -14508,9 +14508,9 @@ type ViewType interface { 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) + 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) @@ -14524,9 +14524,9 @@ type ViewType interface { 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) + 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) @@ -14540,9 +14540,9 @@ type ViewType interface { 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) + 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) @@ -14556,9 +14556,9 @@ type ViewType interface { 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) + 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) @@ -14575,9 +14575,9 @@ type ViewType interface { 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) + 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) @@ -14591,9 +14591,9 @@ type ViewType interface { 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) + 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) @@ -14602,8 +14602,8 @@ type ViewType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -14616,9 +14616,9 @@ type ViewType interface { 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) + 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) @@ -14632,13 +14632,13 @@ type ViewType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -14654,9 +14654,9 @@ type ViewType interface { 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) + 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) @@ -14670,9 +14670,9 @@ type ViewType interface { 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) + 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) @@ -14686,9 +14686,9 @@ type ViewType interface { 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) + 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) @@ -14702,28 +14702,28 @@ type ViewType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -14736,9 +14736,9 @@ type ViewType interface { 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) + 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) @@ -14755,9 +14755,9 @@ type ViewType interface { 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) + 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{}) @@ -14768,13 +14768,13 @@ type ViewType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -14793,9 +14793,9 @@ type ViewType interface { 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) + 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) @@ -14809,9 +14809,9 @@ type ViewType interface { 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) + 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) @@ -14825,9 +14825,9 @@ type ViewType interface { 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) + 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) @@ -14841,40 +14841,40 @@ type ViewType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -14882,8 +14882,8 @@ type ViewType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -14891,8 +14891,8 @@ type ViewType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -14900,8 +14900,8 @@ type ViewType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -14909,12 +14909,12 @@ type ViewType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -14923,8 +14923,8 @@ type ViewType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -14932,41 +14932,41 @@ type ViewType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -14988,9 +14988,9 @@ type ListenType interface { PrependActorLink(v LinkType) RemoveActorLink(index int) IsActorIRI(index int) (ok bool) - GetActorIRI(index int) (v url.URL) - AppendActorIRI(v url.URL) - PrependActorIRI(v url.URL) + GetActorIRI(index int) (v *url.URL) + AppendActorIRI(v *url.URL) + PrependActorIRI(v *url.URL) RemoveActorIRI(index int) ObjectLen() (l int) IsObject(index int) (ok bool) @@ -14999,9 +14999,9 @@ type ListenType interface { PrependObject(v ObjectType) RemoveObject(index int) IsObjectIRI(index int) (ok bool) - GetObjectIRI(index int) (v url.URL) - AppendObjectIRI(v url.URL) - PrependObjectIRI(v url.URL) + GetObjectIRI(index int) (v *url.URL) + AppendObjectIRI(v *url.URL) + PrependObjectIRI(v *url.URL) RemoveObjectIRI(index int) TargetLen() (l int) IsTargetObject(index int) (ok bool) @@ -15015,9 +15015,9 @@ type ListenType interface { PrependTargetLink(v LinkType) RemoveTargetLink(index int) IsTargetIRI(index int) (ok bool) - GetTargetIRI(index int) (v url.URL) - AppendTargetIRI(v url.URL) - PrependTargetIRI(v url.URL) + GetTargetIRI(index int) (v *url.URL) + AppendTargetIRI(v *url.URL) + PrependTargetIRI(v *url.URL) RemoveTargetIRI(index int) ResultLen() (l int) IsResultObject(index int) (ok bool) @@ -15031,9 +15031,9 @@ type ListenType interface { PrependResultLink(v LinkType) RemoveResultLink(index int) IsResultIRI(index int) (ok bool) - GetResultIRI(index int) (v url.URL) - AppendResultIRI(v url.URL) - PrependResultIRI(v url.URL) + GetResultIRI(index int) (v *url.URL) + AppendResultIRI(v *url.URL) + PrependResultIRI(v *url.URL) RemoveResultIRI(index int) OriginLen() (l int) IsOriginObject(index int) (ok bool) @@ -15047,9 +15047,9 @@ type ListenType interface { PrependOriginLink(v LinkType) RemoveOriginLink(index int) IsOriginIRI(index int) (ok bool) - GetOriginIRI(index int) (v url.URL) - AppendOriginIRI(v url.URL) - PrependOriginIRI(v url.URL) + GetOriginIRI(index int) (v *url.URL) + AppendOriginIRI(v *url.URL) + PrependOriginIRI(v *url.URL) RemoveOriginIRI(index int) InstrumentLen() (l int) IsInstrumentObject(index int) (ok bool) @@ -15063,16 +15063,16 @@ type ListenType interface { PrependInstrumentLink(v LinkType) RemoveInstrumentLink(index int) IsInstrumentIRI(index int) (ok bool) - GetInstrumentIRI(index int) (v url.URL) - AppendInstrumentIRI(v url.URL) - PrependInstrumentIRI(v url.URL) + GetInstrumentIRI(index int) (v *url.URL) + AppendInstrumentIRI(v *url.URL) + PrependInstrumentIRI(v *url.URL) RemoveInstrumentIRI(index int) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -15085,9 +15085,9 @@ type ListenType interface { 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) + 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) @@ -15101,9 +15101,9 @@ type ListenType interface { 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) + 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) @@ -15117,9 +15117,9 @@ type ListenType interface { 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) + 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) @@ -15133,9 +15133,9 @@ type ListenType interface { 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) + 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) @@ -15152,9 +15152,9 @@ type ListenType interface { 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) + 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) @@ -15168,9 +15168,9 @@ type ListenType interface { 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) + 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) @@ -15179,8 +15179,8 @@ type ListenType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -15193,9 +15193,9 @@ type ListenType interface { 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) + 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) @@ -15209,13 +15209,13 @@ type ListenType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -15231,9 +15231,9 @@ type ListenType interface { 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) + 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) @@ -15247,9 +15247,9 @@ type ListenType interface { 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) + 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) @@ -15263,9 +15263,9 @@ type ListenType interface { 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) + 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) @@ -15279,28 +15279,28 @@ type ListenType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -15313,9 +15313,9 @@ type ListenType interface { 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) + 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) @@ -15332,9 +15332,9 @@ type ListenType interface { 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) + 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{}) @@ -15345,13 +15345,13 @@ type ListenType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -15370,9 +15370,9 @@ type ListenType interface { 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) + 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) @@ -15386,9 +15386,9 @@ type ListenType interface { 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) + 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) @@ -15402,9 +15402,9 @@ type ListenType interface { 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) + 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) @@ -15418,40 +15418,40 @@ type ListenType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -15459,8 +15459,8 @@ type ListenType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -15468,8 +15468,8 @@ type ListenType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -15477,8 +15477,8 @@ type ListenType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -15486,12 +15486,12 @@ type ListenType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -15500,8 +15500,8 @@ type ListenType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -15509,41 +15509,41 @@ type ListenType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -15565,9 +15565,9 @@ type ReadType interface { PrependActorLink(v LinkType) RemoveActorLink(index int) IsActorIRI(index int) (ok bool) - GetActorIRI(index int) (v url.URL) - AppendActorIRI(v url.URL) - PrependActorIRI(v url.URL) + GetActorIRI(index int) (v *url.URL) + AppendActorIRI(v *url.URL) + PrependActorIRI(v *url.URL) RemoveActorIRI(index int) ObjectLen() (l int) IsObject(index int) (ok bool) @@ -15576,9 +15576,9 @@ type ReadType interface { PrependObject(v ObjectType) RemoveObject(index int) IsObjectIRI(index int) (ok bool) - GetObjectIRI(index int) (v url.URL) - AppendObjectIRI(v url.URL) - PrependObjectIRI(v url.URL) + GetObjectIRI(index int) (v *url.URL) + AppendObjectIRI(v *url.URL) + PrependObjectIRI(v *url.URL) RemoveObjectIRI(index int) TargetLen() (l int) IsTargetObject(index int) (ok bool) @@ -15592,9 +15592,9 @@ type ReadType interface { PrependTargetLink(v LinkType) RemoveTargetLink(index int) IsTargetIRI(index int) (ok bool) - GetTargetIRI(index int) (v url.URL) - AppendTargetIRI(v url.URL) - PrependTargetIRI(v url.URL) + GetTargetIRI(index int) (v *url.URL) + AppendTargetIRI(v *url.URL) + PrependTargetIRI(v *url.URL) RemoveTargetIRI(index int) ResultLen() (l int) IsResultObject(index int) (ok bool) @@ -15608,9 +15608,9 @@ type ReadType interface { PrependResultLink(v LinkType) RemoveResultLink(index int) IsResultIRI(index int) (ok bool) - GetResultIRI(index int) (v url.URL) - AppendResultIRI(v url.URL) - PrependResultIRI(v url.URL) + GetResultIRI(index int) (v *url.URL) + AppendResultIRI(v *url.URL) + PrependResultIRI(v *url.URL) RemoveResultIRI(index int) OriginLen() (l int) IsOriginObject(index int) (ok bool) @@ -15624,9 +15624,9 @@ type ReadType interface { PrependOriginLink(v LinkType) RemoveOriginLink(index int) IsOriginIRI(index int) (ok bool) - GetOriginIRI(index int) (v url.URL) - AppendOriginIRI(v url.URL) - PrependOriginIRI(v url.URL) + GetOriginIRI(index int) (v *url.URL) + AppendOriginIRI(v *url.URL) + PrependOriginIRI(v *url.URL) RemoveOriginIRI(index int) InstrumentLen() (l int) IsInstrumentObject(index int) (ok bool) @@ -15640,16 +15640,16 @@ type ReadType interface { PrependInstrumentLink(v LinkType) RemoveInstrumentLink(index int) IsInstrumentIRI(index int) (ok bool) - GetInstrumentIRI(index int) (v url.URL) - AppendInstrumentIRI(v url.URL) - PrependInstrumentIRI(v url.URL) + GetInstrumentIRI(index int) (v *url.URL) + AppendInstrumentIRI(v *url.URL) + PrependInstrumentIRI(v *url.URL) RemoveInstrumentIRI(index int) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -15662,9 +15662,9 @@ type ReadType interface { 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) + 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) @@ -15678,9 +15678,9 @@ type ReadType interface { 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) + 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) @@ -15694,9 +15694,9 @@ type ReadType interface { 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) + 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) @@ -15710,9 +15710,9 @@ type ReadType interface { 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) + 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) @@ -15729,9 +15729,9 @@ type ReadType interface { 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) + 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) @@ -15745,9 +15745,9 @@ type ReadType interface { 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) + 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) @@ -15756,8 +15756,8 @@ type ReadType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -15770,9 +15770,9 @@ type ReadType interface { 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) + 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) @@ -15786,13 +15786,13 @@ type ReadType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -15808,9 +15808,9 @@ type ReadType interface { 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) + 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) @@ -15824,9 +15824,9 @@ type ReadType interface { 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) + 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) @@ -15840,9 +15840,9 @@ type ReadType interface { 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) + 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) @@ -15856,28 +15856,28 @@ type ReadType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -15890,9 +15890,9 @@ type ReadType interface { 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) + 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) @@ -15909,9 +15909,9 @@ type ReadType interface { 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) + 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{}) @@ -15922,13 +15922,13 @@ type ReadType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -15947,9 +15947,9 @@ type ReadType interface { 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) + 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) @@ -15963,9 +15963,9 @@ type ReadType interface { 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) + 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) @@ -15979,9 +15979,9 @@ type ReadType interface { 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) + 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) @@ -15995,40 +15995,40 @@ type ReadType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -16036,8 +16036,8 @@ type ReadType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -16045,8 +16045,8 @@ type ReadType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -16054,8 +16054,8 @@ type ReadType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -16063,12 +16063,12 @@ type ReadType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -16077,8 +16077,8 @@ type ReadType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -16086,41 +16086,41 @@ type ReadType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -16142,9 +16142,9 @@ type MoveType interface { PrependActorLink(v LinkType) RemoveActorLink(index int) IsActorIRI(index int) (ok bool) - GetActorIRI(index int) (v url.URL) - AppendActorIRI(v url.URL) - PrependActorIRI(v url.URL) + GetActorIRI(index int) (v *url.URL) + AppendActorIRI(v *url.URL) + PrependActorIRI(v *url.URL) RemoveActorIRI(index int) ObjectLen() (l int) IsObject(index int) (ok bool) @@ -16153,9 +16153,9 @@ type MoveType interface { PrependObject(v ObjectType) RemoveObject(index int) IsObjectIRI(index int) (ok bool) - GetObjectIRI(index int) (v url.URL) - AppendObjectIRI(v url.URL) - PrependObjectIRI(v url.URL) + GetObjectIRI(index int) (v *url.URL) + AppendObjectIRI(v *url.URL) + PrependObjectIRI(v *url.URL) RemoveObjectIRI(index int) TargetLen() (l int) IsTargetObject(index int) (ok bool) @@ -16169,9 +16169,9 @@ type MoveType interface { PrependTargetLink(v LinkType) RemoveTargetLink(index int) IsTargetIRI(index int) (ok bool) - GetTargetIRI(index int) (v url.URL) - AppendTargetIRI(v url.URL) - PrependTargetIRI(v url.URL) + GetTargetIRI(index int) (v *url.URL) + AppendTargetIRI(v *url.URL) + PrependTargetIRI(v *url.URL) RemoveTargetIRI(index int) ResultLen() (l int) IsResultObject(index int) (ok bool) @@ -16185,9 +16185,9 @@ type MoveType interface { PrependResultLink(v LinkType) RemoveResultLink(index int) IsResultIRI(index int) (ok bool) - GetResultIRI(index int) (v url.URL) - AppendResultIRI(v url.URL) - PrependResultIRI(v url.URL) + GetResultIRI(index int) (v *url.URL) + AppendResultIRI(v *url.URL) + PrependResultIRI(v *url.URL) RemoveResultIRI(index int) OriginLen() (l int) IsOriginObject(index int) (ok bool) @@ -16201,9 +16201,9 @@ type MoveType interface { PrependOriginLink(v LinkType) RemoveOriginLink(index int) IsOriginIRI(index int) (ok bool) - GetOriginIRI(index int) (v url.URL) - AppendOriginIRI(v url.URL) - PrependOriginIRI(v url.URL) + GetOriginIRI(index int) (v *url.URL) + AppendOriginIRI(v *url.URL) + PrependOriginIRI(v *url.URL) RemoveOriginIRI(index int) InstrumentLen() (l int) IsInstrumentObject(index int) (ok bool) @@ -16217,16 +16217,16 @@ type MoveType interface { PrependInstrumentLink(v LinkType) RemoveInstrumentLink(index int) IsInstrumentIRI(index int) (ok bool) - GetInstrumentIRI(index int) (v url.URL) - AppendInstrumentIRI(v url.URL) - PrependInstrumentIRI(v url.URL) + GetInstrumentIRI(index int) (v *url.URL) + AppendInstrumentIRI(v *url.URL) + PrependInstrumentIRI(v *url.URL) RemoveInstrumentIRI(index int) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -16239,9 +16239,9 @@ type MoveType interface { 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) + 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) @@ -16255,9 +16255,9 @@ type MoveType interface { 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) + 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) @@ -16271,9 +16271,9 @@ type MoveType interface { 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) + 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) @@ -16287,9 +16287,9 @@ type MoveType interface { 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) + 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) @@ -16306,9 +16306,9 @@ type MoveType interface { 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) + 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) @@ -16322,9 +16322,9 @@ type MoveType interface { 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) + 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) @@ -16333,8 +16333,8 @@ type MoveType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -16347,9 +16347,9 @@ type MoveType interface { 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) + 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) @@ -16363,13 +16363,13 @@ type MoveType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -16385,9 +16385,9 @@ type MoveType interface { 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) + 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) @@ -16401,9 +16401,9 @@ type MoveType interface { 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) + 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) @@ -16417,9 +16417,9 @@ type MoveType interface { 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) + 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) @@ -16433,28 +16433,28 @@ type MoveType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -16467,9 +16467,9 @@ type MoveType interface { 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) + 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) @@ -16486,9 +16486,9 @@ type MoveType interface { 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) + 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{}) @@ -16499,13 +16499,13 @@ type MoveType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -16524,9 +16524,9 @@ type MoveType interface { 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) + 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) @@ -16540,9 +16540,9 @@ type MoveType interface { 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) + 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) @@ -16556,9 +16556,9 @@ type MoveType interface { 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) + 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) @@ -16572,40 +16572,40 @@ type MoveType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -16613,8 +16613,8 @@ type MoveType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -16622,8 +16622,8 @@ type MoveType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -16631,8 +16631,8 @@ type MoveType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -16640,12 +16640,12 @@ type MoveType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -16654,8 +16654,8 @@ type MoveType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -16663,41 +16663,41 @@ type MoveType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -16719,9 +16719,9 @@ type TravelType interface { PrependActorLink(v LinkType) RemoveActorLink(index int) IsActorIRI(index int) (ok bool) - GetActorIRI(index int) (v url.URL) - AppendActorIRI(v url.URL) - PrependActorIRI(v url.URL) + GetActorIRI(index int) (v *url.URL) + AppendActorIRI(v *url.URL) + PrependActorIRI(v *url.URL) RemoveActorIRI(index int) TargetLen() (l int) IsTargetObject(index int) (ok bool) @@ -16735,9 +16735,9 @@ type TravelType interface { PrependTargetLink(v LinkType) RemoveTargetLink(index int) IsTargetIRI(index int) (ok bool) - GetTargetIRI(index int) (v url.URL) - AppendTargetIRI(v url.URL) - PrependTargetIRI(v url.URL) + GetTargetIRI(index int) (v *url.URL) + AppendTargetIRI(v *url.URL) + PrependTargetIRI(v *url.URL) RemoveTargetIRI(index int) ResultLen() (l int) IsResultObject(index int) (ok bool) @@ -16751,9 +16751,9 @@ type TravelType interface { PrependResultLink(v LinkType) RemoveResultLink(index int) IsResultIRI(index int) (ok bool) - GetResultIRI(index int) (v url.URL) - AppendResultIRI(v url.URL) - PrependResultIRI(v url.URL) + GetResultIRI(index int) (v *url.URL) + AppendResultIRI(v *url.URL) + PrependResultIRI(v *url.URL) RemoveResultIRI(index int) OriginLen() (l int) IsOriginObject(index int) (ok bool) @@ -16767,9 +16767,9 @@ type TravelType interface { PrependOriginLink(v LinkType) RemoveOriginLink(index int) IsOriginIRI(index int) (ok bool) - GetOriginIRI(index int) (v url.URL) - AppendOriginIRI(v url.URL) - PrependOriginIRI(v url.URL) + GetOriginIRI(index int) (v *url.URL) + AppendOriginIRI(v *url.URL) + PrependOriginIRI(v *url.URL) RemoveOriginIRI(index int) InstrumentLen() (l int) IsInstrumentObject(index int) (ok bool) @@ -16783,16 +16783,16 @@ type TravelType interface { PrependInstrumentLink(v LinkType) RemoveInstrumentLink(index int) IsInstrumentIRI(index int) (ok bool) - GetInstrumentIRI(index int) (v url.URL) - AppendInstrumentIRI(v url.URL) - PrependInstrumentIRI(v url.URL) + GetInstrumentIRI(index int) (v *url.URL) + AppendInstrumentIRI(v *url.URL) + PrependInstrumentIRI(v *url.URL) RemoveInstrumentIRI(index int) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -16805,9 +16805,9 @@ type TravelType interface { 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) + 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) @@ -16821,9 +16821,9 @@ type TravelType interface { 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) + 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) @@ -16837,9 +16837,9 @@ type TravelType interface { 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) + 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) @@ -16853,9 +16853,9 @@ type TravelType interface { 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) + 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) @@ -16872,9 +16872,9 @@ type TravelType interface { 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) + 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) @@ -16888,9 +16888,9 @@ type TravelType interface { 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) + 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) @@ -16899,8 +16899,8 @@ type TravelType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -16913,9 +16913,9 @@ type TravelType interface { 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) + 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) @@ -16929,13 +16929,13 @@ type TravelType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -16951,9 +16951,9 @@ type TravelType interface { 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) + 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) @@ -16967,9 +16967,9 @@ type TravelType interface { 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) + 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) @@ -16983,9 +16983,9 @@ type TravelType interface { 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) + 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) @@ -16999,28 +16999,28 @@ type TravelType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -17033,9 +17033,9 @@ type TravelType interface { 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) + 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) @@ -17052,9 +17052,9 @@ type TravelType interface { 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) + 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{}) @@ -17065,13 +17065,13 @@ type TravelType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -17090,9 +17090,9 @@ type TravelType interface { 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) + 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) @@ -17106,9 +17106,9 @@ type TravelType interface { 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) + 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) @@ -17122,9 +17122,9 @@ type TravelType interface { 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) + 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) @@ -17138,40 +17138,40 @@ type TravelType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -17179,8 +17179,8 @@ type TravelType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -17188,8 +17188,8 @@ type TravelType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -17197,8 +17197,8 @@ type TravelType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -17206,12 +17206,12 @@ type TravelType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -17220,8 +17220,8 @@ type TravelType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -17229,41 +17229,41 @@ type TravelType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -17285,9 +17285,9 @@ type AnnounceType interface { PrependActorLink(v LinkType) RemoveActorLink(index int) IsActorIRI(index int) (ok bool) - GetActorIRI(index int) (v url.URL) - AppendActorIRI(v url.URL) - PrependActorIRI(v url.URL) + GetActorIRI(index int) (v *url.URL) + AppendActorIRI(v *url.URL) + PrependActorIRI(v *url.URL) RemoveActorIRI(index int) ObjectLen() (l int) IsObject(index int) (ok bool) @@ -17296,9 +17296,9 @@ type AnnounceType interface { PrependObject(v ObjectType) RemoveObject(index int) IsObjectIRI(index int) (ok bool) - GetObjectIRI(index int) (v url.URL) - AppendObjectIRI(v url.URL) - PrependObjectIRI(v url.URL) + GetObjectIRI(index int) (v *url.URL) + AppendObjectIRI(v *url.URL) + PrependObjectIRI(v *url.URL) RemoveObjectIRI(index int) TargetLen() (l int) IsTargetObject(index int) (ok bool) @@ -17312,9 +17312,9 @@ type AnnounceType interface { PrependTargetLink(v LinkType) RemoveTargetLink(index int) IsTargetIRI(index int) (ok bool) - GetTargetIRI(index int) (v url.URL) - AppendTargetIRI(v url.URL) - PrependTargetIRI(v url.URL) + GetTargetIRI(index int) (v *url.URL) + AppendTargetIRI(v *url.URL) + PrependTargetIRI(v *url.URL) RemoveTargetIRI(index int) ResultLen() (l int) IsResultObject(index int) (ok bool) @@ -17328,9 +17328,9 @@ type AnnounceType interface { PrependResultLink(v LinkType) RemoveResultLink(index int) IsResultIRI(index int) (ok bool) - GetResultIRI(index int) (v url.URL) - AppendResultIRI(v url.URL) - PrependResultIRI(v url.URL) + GetResultIRI(index int) (v *url.URL) + AppendResultIRI(v *url.URL) + PrependResultIRI(v *url.URL) RemoveResultIRI(index int) OriginLen() (l int) IsOriginObject(index int) (ok bool) @@ -17344,9 +17344,9 @@ type AnnounceType interface { PrependOriginLink(v LinkType) RemoveOriginLink(index int) IsOriginIRI(index int) (ok bool) - GetOriginIRI(index int) (v url.URL) - AppendOriginIRI(v url.URL) - PrependOriginIRI(v url.URL) + GetOriginIRI(index int) (v *url.URL) + AppendOriginIRI(v *url.URL) + PrependOriginIRI(v *url.URL) RemoveOriginIRI(index int) InstrumentLen() (l int) IsInstrumentObject(index int) (ok bool) @@ -17360,16 +17360,16 @@ type AnnounceType interface { PrependInstrumentLink(v LinkType) RemoveInstrumentLink(index int) IsInstrumentIRI(index int) (ok bool) - GetInstrumentIRI(index int) (v url.URL) - AppendInstrumentIRI(v url.URL) - PrependInstrumentIRI(v url.URL) + GetInstrumentIRI(index int) (v *url.URL) + AppendInstrumentIRI(v *url.URL) + PrependInstrumentIRI(v *url.URL) RemoveInstrumentIRI(index int) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -17382,9 +17382,9 @@ type AnnounceType interface { 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) + 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) @@ -17398,9 +17398,9 @@ type AnnounceType interface { 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) + 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) @@ -17414,9 +17414,9 @@ type AnnounceType interface { 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) + 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) @@ -17430,9 +17430,9 @@ type AnnounceType interface { 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) + 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) @@ -17449,9 +17449,9 @@ type AnnounceType interface { 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) + 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) @@ -17465,9 +17465,9 @@ type AnnounceType interface { 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) + 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) @@ -17476,8 +17476,8 @@ type AnnounceType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -17490,9 +17490,9 @@ type AnnounceType interface { 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) + 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) @@ -17506,13 +17506,13 @@ type AnnounceType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -17528,9 +17528,9 @@ type AnnounceType interface { 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) + 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) @@ -17544,9 +17544,9 @@ type AnnounceType interface { 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) + 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) @@ -17560,9 +17560,9 @@ type AnnounceType interface { 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) + 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) @@ -17576,28 +17576,28 @@ type AnnounceType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -17610,9 +17610,9 @@ type AnnounceType interface { 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) + 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) @@ -17629,9 +17629,9 @@ type AnnounceType interface { 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) + 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{}) @@ -17642,13 +17642,13 @@ type AnnounceType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -17667,9 +17667,9 @@ type AnnounceType interface { 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) + 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) @@ -17683,9 +17683,9 @@ type AnnounceType interface { 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) + 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) @@ -17699,9 +17699,9 @@ type AnnounceType interface { 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) + 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) @@ -17715,40 +17715,40 @@ type AnnounceType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -17756,8 +17756,8 @@ type AnnounceType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -17765,8 +17765,8 @@ type AnnounceType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -17774,8 +17774,8 @@ type AnnounceType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -17783,12 +17783,12 @@ type AnnounceType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -17797,8 +17797,8 @@ type AnnounceType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -17806,41 +17806,41 @@ type AnnounceType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -17862,9 +17862,9 @@ type BlockType interface { PrependActorLink(v LinkType) RemoveActorLink(index int) IsActorIRI(index int) (ok bool) - GetActorIRI(index int) (v url.URL) - AppendActorIRI(v url.URL) - PrependActorIRI(v url.URL) + GetActorIRI(index int) (v *url.URL) + AppendActorIRI(v *url.URL) + PrependActorIRI(v *url.URL) RemoveActorIRI(index int) ObjectLen() (l int) IsObject(index int) (ok bool) @@ -17873,9 +17873,9 @@ type BlockType interface { PrependObject(v ObjectType) RemoveObject(index int) IsObjectIRI(index int) (ok bool) - GetObjectIRI(index int) (v url.URL) - AppendObjectIRI(v url.URL) - PrependObjectIRI(v url.URL) + GetObjectIRI(index int) (v *url.URL) + AppendObjectIRI(v *url.URL) + PrependObjectIRI(v *url.URL) RemoveObjectIRI(index int) TargetLen() (l int) IsTargetObject(index int) (ok bool) @@ -17889,9 +17889,9 @@ type BlockType interface { PrependTargetLink(v LinkType) RemoveTargetLink(index int) IsTargetIRI(index int) (ok bool) - GetTargetIRI(index int) (v url.URL) - AppendTargetIRI(v url.URL) - PrependTargetIRI(v url.URL) + GetTargetIRI(index int) (v *url.URL) + AppendTargetIRI(v *url.URL) + PrependTargetIRI(v *url.URL) RemoveTargetIRI(index int) ResultLen() (l int) IsResultObject(index int) (ok bool) @@ -17905,9 +17905,9 @@ type BlockType interface { PrependResultLink(v LinkType) RemoveResultLink(index int) IsResultIRI(index int) (ok bool) - GetResultIRI(index int) (v url.URL) - AppendResultIRI(v url.URL) - PrependResultIRI(v url.URL) + GetResultIRI(index int) (v *url.URL) + AppendResultIRI(v *url.URL) + PrependResultIRI(v *url.URL) RemoveResultIRI(index int) OriginLen() (l int) IsOriginObject(index int) (ok bool) @@ -17921,9 +17921,9 @@ type BlockType interface { PrependOriginLink(v LinkType) RemoveOriginLink(index int) IsOriginIRI(index int) (ok bool) - GetOriginIRI(index int) (v url.URL) - AppendOriginIRI(v url.URL) - PrependOriginIRI(v url.URL) + GetOriginIRI(index int) (v *url.URL) + AppendOriginIRI(v *url.URL) + PrependOriginIRI(v *url.URL) RemoveOriginIRI(index int) InstrumentLen() (l int) IsInstrumentObject(index int) (ok bool) @@ -17937,16 +17937,16 @@ type BlockType interface { PrependInstrumentLink(v LinkType) RemoveInstrumentLink(index int) IsInstrumentIRI(index int) (ok bool) - GetInstrumentIRI(index int) (v url.URL) - AppendInstrumentIRI(v url.URL) - PrependInstrumentIRI(v url.URL) + GetInstrumentIRI(index int) (v *url.URL) + AppendInstrumentIRI(v *url.URL) + PrependInstrumentIRI(v *url.URL) RemoveInstrumentIRI(index int) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -17959,9 +17959,9 @@ type BlockType interface { 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) + 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) @@ -17975,9 +17975,9 @@ type BlockType interface { 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) + 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) @@ -17991,9 +17991,9 @@ type BlockType interface { 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) + 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) @@ -18007,9 +18007,9 @@ type BlockType interface { 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) + 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) @@ -18026,9 +18026,9 @@ type BlockType interface { 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) + 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) @@ -18042,9 +18042,9 @@ type BlockType interface { 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) + 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) @@ -18053,8 +18053,8 @@ type BlockType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -18067,9 +18067,9 @@ type BlockType interface { 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) + 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) @@ -18083,13 +18083,13 @@ type BlockType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -18105,9 +18105,9 @@ type BlockType interface { 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) + 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) @@ -18121,9 +18121,9 @@ type BlockType interface { 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) + 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) @@ -18137,9 +18137,9 @@ type BlockType interface { 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) + 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) @@ -18153,28 +18153,28 @@ type BlockType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -18187,9 +18187,9 @@ type BlockType interface { 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) + 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) @@ -18206,9 +18206,9 @@ type BlockType interface { 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) + 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{}) @@ -18219,13 +18219,13 @@ type BlockType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -18244,9 +18244,9 @@ type BlockType interface { 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) + 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) @@ -18260,9 +18260,9 @@ type BlockType interface { 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) + 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) @@ -18276,9 +18276,9 @@ type BlockType interface { 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) + 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) @@ -18292,40 +18292,40 @@ type BlockType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -18333,8 +18333,8 @@ type BlockType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -18342,8 +18342,8 @@ type BlockType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -18351,8 +18351,8 @@ type BlockType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -18360,12 +18360,12 @@ type BlockType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -18374,8 +18374,8 @@ type BlockType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -18383,41 +18383,41 @@ type BlockType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -18439,9 +18439,9 @@ type FlagType interface { PrependActorLink(v LinkType) RemoveActorLink(index int) IsActorIRI(index int) (ok bool) - GetActorIRI(index int) (v url.URL) - AppendActorIRI(v url.URL) - PrependActorIRI(v url.URL) + GetActorIRI(index int) (v *url.URL) + AppendActorIRI(v *url.URL) + PrependActorIRI(v *url.URL) RemoveActorIRI(index int) ObjectLen() (l int) IsObject(index int) (ok bool) @@ -18450,9 +18450,9 @@ type FlagType interface { PrependObject(v ObjectType) RemoveObject(index int) IsObjectIRI(index int) (ok bool) - GetObjectIRI(index int) (v url.URL) - AppendObjectIRI(v url.URL) - PrependObjectIRI(v url.URL) + GetObjectIRI(index int) (v *url.URL) + AppendObjectIRI(v *url.URL) + PrependObjectIRI(v *url.URL) RemoveObjectIRI(index int) TargetLen() (l int) IsTargetObject(index int) (ok bool) @@ -18466,9 +18466,9 @@ type FlagType interface { PrependTargetLink(v LinkType) RemoveTargetLink(index int) IsTargetIRI(index int) (ok bool) - GetTargetIRI(index int) (v url.URL) - AppendTargetIRI(v url.URL) - PrependTargetIRI(v url.URL) + GetTargetIRI(index int) (v *url.URL) + AppendTargetIRI(v *url.URL) + PrependTargetIRI(v *url.URL) RemoveTargetIRI(index int) ResultLen() (l int) IsResultObject(index int) (ok bool) @@ -18482,9 +18482,9 @@ type FlagType interface { PrependResultLink(v LinkType) RemoveResultLink(index int) IsResultIRI(index int) (ok bool) - GetResultIRI(index int) (v url.URL) - AppendResultIRI(v url.URL) - PrependResultIRI(v url.URL) + GetResultIRI(index int) (v *url.URL) + AppendResultIRI(v *url.URL) + PrependResultIRI(v *url.URL) RemoveResultIRI(index int) OriginLen() (l int) IsOriginObject(index int) (ok bool) @@ -18498,9 +18498,9 @@ type FlagType interface { PrependOriginLink(v LinkType) RemoveOriginLink(index int) IsOriginIRI(index int) (ok bool) - GetOriginIRI(index int) (v url.URL) - AppendOriginIRI(v url.URL) - PrependOriginIRI(v url.URL) + GetOriginIRI(index int) (v *url.URL) + AppendOriginIRI(v *url.URL) + PrependOriginIRI(v *url.URL) RemoveOriginIRI(index int) InstrumentLen() (l int) IsInstrumentObject(index int) (ok bool) @@ -18514,16 +18514,16 @@ type FlagType interface { PrependInstrumentLink(v LinkType) RemoveInstrumentLink(index int) IsInstrumentIRI(index int) (ok bool) - GetInstrumentIRI(index int) (v url.URL) - AppendInstrumentIRI(v url.URL) - PrependInstrumentIRI(v url.URL) + GetInstrumentIRI(index int) (v *url.URL) + AppendInstrumentIRI(v *url.URL) + PrependInstrumentIRI(v *url.URL) RemoveInstrumentIRI(index int) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -18536,9 +18536,9 @@ type FlagType interface { 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) + 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) @@ -18552,9 +18552,9 @@ type FlagType interface { 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) + 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) @@ -18568,9 +18568,9 @@ type FlagType interface { 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) + 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) @@ -18584,9 +18584,9 @@ type FlagType interface { 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) + 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) @@ -18603,9 +18603,9 @@ type FlagType interface { 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) + 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) @@ -18619,9 +18619,9 @@ type FlagType interface { 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) + 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) @@ -18630,8 +18630,8 @@ type FlagType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -18644,9 +18644,9 @@ type FlagType interface { 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) + 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) @@ -18660,13 +18660,13 @@ type FlagType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -18682,9 +18682,9 @@ type FlagType interface { 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) + 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) @@ -18698,9 +18698,9 @@ type FlagType interface { 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) + 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) @@ -18714,9 +18714,9 @@ type FlagType interface { 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) + 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) @@ -18730,28 +18730,28 @@ type FlagType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -18764,9 +18764,9 @@ type FlagType interface { 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) + 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) @@ -18783,9 +18783,9 @@ type FlagType interface { 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) + 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{}) @@ -18796,13 +18796,13 @@ type FlagType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -18821,9 +18821,9 @@ type FlagType interface { 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) + 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) @@ -18837,9 +18837,9 @@ type FlagType interface { 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) + 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) @@ -18853,9 +18853,9 @@ type FlagType interface { 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) + 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) @@ -18869,40 +18869,40 @@ type FlagType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -18910,8 +18910,8 @@ type FlagType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -18919,8 +18919,8 @@ type FlagType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -18928,8 +18928,8 @@ type FlagType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -18937,12 +18937,12 @@ type FlagType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -18951,8 +18951,8 @@ type FlagType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -18960,41 +18960,41 @@ type FlagType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -19016,9 +19016,9 @@ type DislikeType interface { PrependActorLink(v LinkType) RemoveActorLink(index int) IsActorIRI(index int) (ok bool) - GetActorIRI(index int) (v url.URL) - AppendActorIRI(v url.URL) - PrependActorIRI(v url.URL) + GetActorIRI(index int) (v *url.URL) + AppendActorIRI(v *url.URL) + PrependActorIRI(v *url.URL) RemoveActorIRI(index int) ObjectLen() (l int) IsObject(index int) (ok bool) @@ -19027,9 +19027,9 @@ type DislikeType interface { PrependObject(v ObjectType) RemoveObject(index int) IsObjectIRI(index int) (ok bool) - GetObjectIRI(index int) (v url.URL) - AppendObjectIRI(v url.URL) - PrependObjectIRI(v url.URL) + GetObjectIRI(index int) (v *url.URL) + AppendObjectIRI(v *url.URL) + PrependObjectIRI(v *url.URL) RemoveObjectIRI(index int) TargetLen() (l int) IsTargetObject(index int) (ok bool) @@ -19043,9 +19043,9 @@ type DislikeType interface { PrependTargetLink(v LinkType) RemoveTargetLink(index int) IsTargetIRI(index int) (ok bool) - GetTargetIRI(index int) (v url.URL) - AppendTargetIRI(v url.URL) - PrependTargetIRI(v url.URL) + GetTargetIRI(index int) (v *url.URL) + AppendTargetIRI(v *url.URL) + PrependTargetIRI(v *url.URL) RemoveTargetIRI(index int) ResultLen() (l int) IsResultObject(index int) (ok bool) @@ -19059,9 +19059,9 @@ type DislikeType interface { PrependResultLink(v LinkType) RemoveResultLink(index int) IsResultIRI(index int) (ok bool) - GetResultIRI(index int) (v url.URL) - AppendResultIRI(v url.URL) - PrependResultIRI(v url.URL) + GetResultIRI(index int) (v *url.URL) + AppendResultIRI(v *url.URL) + PrependResultIRI(v *url.URL) RemoveResultIRI(index int) OriginLen() (l int) IsOriginObject(index int) (ok bool) @@ -19075,9 +19075,9 @@ type DislikeType interface { PrependOriginLink(v LinkType) RemoveOriginLink(index int) IsOriginIRI(index int) (ok bool) - GetOriginIRI(index int) (v url.URL) - AppendOriginIRI(v url.URL) - PrependOriginIRI(v url.URL) + GetOriginIRI(index int) (v *url.URL) + AppendOriginIRI(v *url.URL) + PrependOriginIRI(v *url.URL) RemoveOriginIRI(index int) InstrumentLen() (l int) IsInstrumentObject(index int) (ok bool) @@ -19091,16 +19091,16 @@ type DislikeType interface { PrependInstrumentLink(v LinkType) RemoveInstrumentLink(index int) IsInstrumentIRI(index int) (ok bool) - GetInstrumentIRI(index int) (v url.URL) - AppendInstrumentIRI(v url.URL) - PrependInstrumentIRI(v url.URL) + GetInstrumentIRI(index int) (v *url.URL) + AppendInstrumentIRI(v *url.URL) + PrependInstrumentIRI(v *url.URL) RemoveInstrumentIRI(index int) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -19113,9 +19113,9 @@ type DislikeType interface { 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) + 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) @@ -19129,9 +19129,9 @@ type DislikeType interface { 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) + 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) @@ -19145,9 +19145,9 @@ type DislikeType interface { 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) + 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) @@ -19161,9 +19161,9 @@ type DislikeType interface { 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) + 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) @@ -19180,9 +19180,9 @@ type DislikeType interface { 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) + 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) @@ -19196,9 +19196,9 @@ type DislikeType interface { 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) + 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) @@ -19207,8 +19207,8 @@ type DislikeType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -19221,9 +19221,9 @@ type DislikeType interface { 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) + 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) @@ -19237,13 +19237,13 @@ type DislikeType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -19259,9 +19259,9 @@ type DislikeType interface { 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) + 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) @@ -19275,9 +19275,9 @@ type DislikeType interface { 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) + 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) @@ -19291,9 +19291,9 @@ type DislikeType interface { 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) + 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) @@ -19307,28 +19307,28 @@ type DislikeType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -19341,9 +19341,9 @@ type DislikeType interface { 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) + 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) @@ -19360,9 +19360,9 @@ type DislikeType interface { 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) + 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{}) @@ -19373,13 +19373,13 @@ type DislikeType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -19398,9 +19398,9 @@ type DislikeType interface { 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) + 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) @@ -19414,9 +19414,9 @@ type DislikeType interface { 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) + 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) @@ -19430,9 +19430,9 @@ type DislikeType interface { 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) + 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) @@ -19446,40 +19446,40 @@ type DislikeType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -19487,8 +19487,8 @@ type DislikeType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -19496,8 +19496,8 @@ type DislikeType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -19505,8 +19505,8 @@ type DislikeType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -19514,12 +19514,12 @@ type DislikeType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -19528,8 +19528,8 @@ type DislikeType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -19537,41 +19537,41 @@ type DislikeType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -19593,9 +19593,9 @@ type QuestionType interface { PrependOneOfLink(v LinkType) RemoveOneOfLink(index int) IsOneOfIRI(index int) (ok bool) - GetOneOfIRI(index int) (v url.URL) - AppendOneOfIRI(v url.URL) - PrependOneOfIRI(v url.URL) + GetOneOfIRI(index int) (v *url.URL) + AppendOneOfIRI(v *url.URL) + PrependOneOfIRI(v *url.URL) RemoveOneOfIRI(index int) AnyOfLen() (l int) IsAnyOfObject(index int) (ok bool) @@ -19609,9 +19609,9 @@ type QuestionType interface { PrependAnyOfLink(v LinkType) RemoveAnyOfLink(index int) IsAnyOfIRI(index int) (ok bool) - GetAnyOfIRI(index int) (v url.URL) - AppendAnyOfIRI(v url.URL) - PrependAnyOfIRI(v url.URL) + GetAnyOfIRI(index int) (v *url.URL) + AppendAnyOfIRI(v *url.URL) + PrependAnyOfIRI(v *url.URL) RemoveAnyOfIRI(index int) ClosedLen() (l int) IsClosedDateTime(index int) (ok bool) @@ -19635,9 +19635,9 @@ type QuestionType interface { PrependClosedLink(v LinkType) RemoveClosedLink(index int) IsClosedIRI(index int) (ok bool) - GetClosedIRI(index int) (v url.URL) - AppendClosedIRI(v url.URL) - PrependClosedIRI(v url.URL) + GetClosedIRI(index int) (v *url.URL) + AppendClosedIRI(v *url.URL) + PrependClosedIRI(v *url.URL) RemoveClosedIRI(index int) ActorLen() (l int) IsActorObject(index int) (ok bool) @@ -19651,9 +19651,9 @@ type QuestionType interface { PrependActorLink(v LinkType) RemoveActorLink(index int) IsActorIRI(index int) (ok bool) - GetActorIRI(index int) (v url.URL) - AppendActorIRI(v url.URL) - PrependActorIRI(v url.URL) + GetActorIRI(index int) (v *url.URL) + AppendActorIRI(v *url.URL) + PrependActorIRI(v *url.URL) RemoveActorIRI(index int) TargetLen() (l int) IsTargetObject(index int) (ok bool) @@ -19667,9 +19667,9 @@ type QuestionType interface { PrependTargetLink(v LinkType) RemoveTargetLink(index int) IsTargetIRI(index int) (ok bool) - GetTargetIRI(index int) (v url.URL) - AppendTargetIRI(v url.URL) - PrependTargetIRI(v url.URL) + GetTargetIRI(index int) (v *url.URL) + AppendTargetIRI(v *url.URL) + PrependTargetIRI(v *url.URL) RemoveTargetIRI(index int) ResultLen() (l int) IsResultObject(index int) (ok bool) @@ -19683,9 +19683,9 @@ type QuestionType interface { PrependResultLink(v LinkType) RemoveResultLink(index int) IsResultIRI(index int) (ok bool) - GetResultIRI(index int) (v url.URL) - AppendResultIRI(v url.URL) - PrependResultIRI(v url.URL) + GetResultIRI(index int) (v *url.URL) + AppendResultIRI(v *url.URL) + PrependResultIRI(v *url.URL) RemoveResultIRI(index int) OriginLen() (l int) IsOriginObject(index int) (ok bool) @@ -19699,9 +19699,9 @@ type QuestionType interface { PrependOriginLink(v LinkType) RemoveOriginLink(index int) IsOriginIRI(index int) (ok bool) - GetOriginIRI(index int) (v url.URL) - AppendOriginIRI(v url.URL) - PrependOriginIRI(v url.URL) + GetOriginIRI(index int) (v *url.URL) + AppendOriginIRI(v *url.URL) + PrependOriginIRI(v *url.URL) RemoveOriginIRI(index int) InstrumentLen() (l int) IsInstrumentObject(index int) (ok bool) @@ -19715,16 +19715,16 @@ type QuestionType interface { PrependInstrumentLink(v LinkType) RemoveInstrumentLink(index int) IsInstrumentIRI(index int) (ok bool) - GetInstrumentIRI(index int) (v url.URL) - AppendInstrumentIRI(v url.URL) - PrependInstrumentIRI(v url.URL) + GetInstrumentIRI(index int) (v *url.URL) + AppendInstrumentIRI(v *url.URL) + PrependInstrumentIRI(v *url.URL) RemoveInstrumentIRI(index int) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -19737,9 +19737,9 @@ type QuestionType interface { 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) + 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) @@ -19753,9 +19753,9 @@ type QuestionType interface { 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) + 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) @@ -19769,9 +19769,9 @@ type QuestionType interface { 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) + 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) @@ -19785,9 +19785,9 @@ type QuestionType interface { 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) + 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) @@ -19804,9 +19804,9 @@ type QuestionType interface { 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) + 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) @@ -19820,9 +19820,9 @@ type QuestionType interface { 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) + 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) @@ -19831,8 +19831,8 @@ type QuestionType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -19845,9 +19845,9 @@ type QuestionType interface { 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) + 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) @@ -19861,13 +19861,13 @@ type QuestionType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -19883,9 +19883,9 @@ type QuestionType interface { 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) + 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) @@ -19899,9 +19899,9 @@ type QuestionType interface { 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) + 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) @@ -19915,9 +19915,9 @@ type QuestionType interface { 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) + 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) @@ -19931,28 +19931,28 @@ type QuestionType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -19965,9 +19965,9 @@ type QuestionType interface { 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) + 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) @@ -19984,9 +19984,9 @@ type QuestionType interface { 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) + 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{}) @@ -19997,13 +19997,13 @@ type QuestionType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -20022,9 +20022,9 @@ type QuestionType interface { 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) + 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) @@ -20038,9 +20038,9 @@ type QuestionType interface { 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) + 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) @@ -20054,9 +20054,9 @@ type QuestionType interface { 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) + 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) @@ -20070,40 +20070,40 @@ type QuestionType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -20111,8 +20111,8 @@ type QuestionType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -20120,8 +20120,8 @@ type QuestionType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -20129,8 +20129,8 @@ type QuestionType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -20138,12 +20138,12 @@ type QuestionType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -20152,8 +20152,8 @@ type QuestionType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -20161,41 +20161,41 @@ type QuestionType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -20209,8 +20209,8 @@ type ApplicationType interface { GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -20223,9 +20223,9 @@ type ApplicationType interface { 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) + 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) @@ -20239,9 +20239,9 @@ type ApplicationType interface { 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) + 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) @@ -20255,9 +20255,9 @@ type ApplicationType interface { 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) + 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) @@ -20271,9 +20271,9 @@ type ApplicationType interface { 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) + 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) @@ -20290,9 +20290,9 @@ type ApplicationType interface { 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) + 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) @@ -20306,9 +20306,9 @@ type ApplicationType interface { 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) + 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) @@ -20317,8 +20317,8 @@ type ApplicationType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -20331,9 +20331,9 @@ type ApplicationType interface { 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) + 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) @@ -20347,13 +20347,13 @@ type ApplicationType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -20369,9 +20369,9 @@ type ApplicationType interface { 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) + 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) @@ -20385,9 +20385,9 @@ type ApplicationType interface { 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) + 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) @@ -20401,9 +20401,9 @@ type ApplicationType interface { 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) + 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) @@ -20417,28 +20417,28 @@ type ApplicationType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -20451,9 +20451,9 @@ type ApplicationType interface { 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) + 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) @@ -20470,9 +20470,9 @@ type ApplicationType interface { 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) + 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{}) @@ -20483,13 +20483,13 @@ type ApplicationType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -20508,9 +20508,9 @@ type ApplicationType interface { 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) + 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) @@ -20524,9 +20524,9 @@ type ApplicationType interface { 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) + 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) @@ -20540,9 +20540,9 @@ type ApplicationType interface { 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) + 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) @@ -20556,40 +20556,40 @@ type ApplicationType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -20597,8 +20597,8 @@ type ApplicationType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -20606,8 +20606,8 @@ type ApplicationType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -20615,8 +20615,8 @@ type ApplicationType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -20624,12 +20624,12 @@ type ApplicationType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -20638,8 +20638,8 @@ type ApplicationType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -20647,41 +20647,41 @@ type ApplicationType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -20695,8 +20695,8 @@ type GroupType interface { GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -20709,9 +20709,9 @@ type GroupType interface { 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) + 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) @@ -20725,9 +20725,9 @@ type GroupType interface { 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) + 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) @@ -20741,9 +20741,9 @@ type GroupType interface { 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) + 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) @@ -20757,9 +20757,9 @@ type GroupType interface { 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) + 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) @@ -20776,9 +20776,9 @@ type GroupType interface { 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) + 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) @@ -20792,9 +20792,9 @@ type GroupType interface { 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) + 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) @@ -20803,8 +20803,8 @@ type GroupType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -20817,9 +20817,9 @@ type GroupType interface { 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) + 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) @@ -20833,13 +20833,13 @@ type GroupType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -20855,9 +20855,9 @@ type GroupType interface { 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) + 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) @@ -20871,9 +20871,9 @@ type GroupType interface { 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) + 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) @@ -20887,9 +20887,9 @@ type GroupType interface { 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) + 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) @@ -20903,28 +20903,28 @@ type GroupType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -20937,9 +20937,9 @@ type GroupType interface { 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) + 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) @@ -20956,9 +20956,9 @@ type GroupType interface { 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) + 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{}) @@ -20969,13 +20969,13 @@ type GroupType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -20994,9 +20994,9 @@ type GroupType interface { 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) + 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) @@ -21010,9 +21010,9 @@ type GroupType interface { 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) + 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) @@ -21026,9 +21026,9 @@ type GroupType interface { 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) + 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) @@ -21042,40 +21042,40 @@ type GroupType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -21083,8 +21083,8 @@ type GroupType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -21092,8 +21092,8 @@ type GroupType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -21101,8 +21101,8 @@ type GroupType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -21110,12 +21110,12 @@ type GroupType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -21124,8 +21124,8 @@ type GroupType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -21133,41 +21133,41 @@ type GroupType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -21181,8 +21181,8 @@ type OrganizationType interface { GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -21195,9 +21195,9 @@ type OrganizationType interface { 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) + 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) @@ -21211,9 +21211,9 @@ type OrganizationType interface { 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) + 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) @@ -21227,9 +21227,9 @@ type OrganizationType interface { 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) + 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) @@ -21243,9 +21243,9 @@ type OrganizationType interface { 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) + 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) @@ -21262,9 +21262,9 @@ type OrganizationType interface { 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) + 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) @@ -21278,9 +21278,9 @@ type OrganizationType interface { 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) + 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) @@ -21289,8 +21289,8 @@ type OrganizationType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -21303,9 +21303,9 @@ type OrganizationType interface { 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) + 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) @@ -21319,13 +21319,13 @@ type OrganizationType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -21341,9 +21341,9 @@ type OrganizationType interface { 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) + 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) @@ -21357,9 +21357,9 @@ type OrganizationType interface { 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) + 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) @@ -21373,9 +21373,9 @@ type OrganizationType interface { 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) + 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) @@ -21389,28 +21389,28 @@ type OrganizationType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -21423,9 +21423,9 @@ type OrganizationType interface { 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) + 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) @@ -21442,9 +21442,9 @@ type OrganizationType interface { 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) + 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{}) @@ -21455,13 +21455,13 @@ type OrganizationType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -21480,9 +21480,9 @@ type OrganizationType interface { 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) + 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) @@ -21496,9 +21496,9 @@ type OrganizationType interface { 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) + 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) @@ -21512,9 +21512,9 @@ type OrganizationType interface { 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) + 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) @@ -21528,40 +21528,40 @@ type OrganizationType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -21569,8 +21569,8 @@ type OrganizationType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -21578,8 +21578,8 @@ type OrganizationType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -21587,8 +21587,8 @@ type OrganizationType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -21596,12 +21596,12 @@ type OrganizationType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -21610,8 +21610,8 @@ type OrganizationType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -21619,41 +21619,41 @@ type OrganizationType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -21667,8 +21667,8 @@ type PersonType interface { GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -21681,9 +21681,9 @@ type PersonType interface { 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) + 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) @@ -21697,9 +21697,9 @@ type PersonType interface { 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) + 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) @@ -21713,9 +21713,9 @@ type PersonType interface { 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) + 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) @@ -21729,9 +21729,9 @@ type PersonType interface { 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) + 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) @@ -21748,9 +21748,9 @@ type PersonType interface { 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) + 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) @@ -21764,9 +21764,9 @@ type PersonType interface { 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) + 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) @@ -21775,8 +21775,8 @@ type PersonType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -21789,9 +21789,9 @@ type PersonType interface { 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) + 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) @@ -21805,13 +21805,13 @@ type PersonType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -21827,9 +21827,9 @@ type PersonType interface { 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) + 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) @@ -21843,9 +21843,9 @@ type PersonType interface { 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) + 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) @@ -21859,9 +21859,9 @@ type PersonType interface { 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) + 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) @@ -21875,28 +21875,28 @@ type PersonType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -21909,9 +21909,9 @@ type PersonType interface { 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) + 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) @@ -21928,9 +21928,9 @@ type PersonType interface { 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) + 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{}) @@ -21941,13 +21941,13 @@ type PersonType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -21966,9 +21966,9 @@ type PersonType interface { 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) + 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) @@ -21982,9 +21982,9 @@ type PersonType interface { 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) + 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) @@ -21998,9 +21998,9 @@ type PersonType interface { 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) + 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) @@ -22014,40 +22014,40 @@ type PersonType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -22055,8 +22055,8 @@ type PersonType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -22064,8 +22064,8 @@ type PersonType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -22073,8 +22073,8 @@ type PersonType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -22082,12 +22082,12 @@ type PersonType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -22096,8 +22096,8 @@ type PersonType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -22105,41 +22105,41 @@ type PersonType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -22153,8 +22153,8 @@ type ServiceType interface { GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -22167,9 +22167,9 @@ type ServiceType interface { 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) + 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) @@ -22183,9 +22183,9 @@ type ServiceType interface { 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) + 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) @@ -22199,9 +22199,9 @@ type ServiceType interface { 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) + 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) @@ -22215,9 +22215,9 @@ type ServiceType interface { 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) + 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) @@ -22234,9 +22234,9 @@ type ServiceType interface { 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) + 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) @@ -22250,9 +22250,9 @@ type ServiceType interface { 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) + 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) @@ -22261,8 +22261,8 @@ type ServiceType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -22275,9 +22275,9 @@ type ServiceType interface { 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) + 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) @@ -22291,13 +22291,13 @@ type ServiceType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -22313,9 +22313,9 @@ type ServiceType interface { 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) + 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) @@ -22329,9 +22329,9 @@ type ServiceType interface { 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) + 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) @@ -22345,9 +22345,9 @@ type ServiceType interface { 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) + 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) @@ -22361,28 +22361,28 @@ type ServiceType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -22395,9 +22395,9 @@ type ServiceType interface { 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) + 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) @@ -22414,9 +22414,9 @@ type ServiceType interface { 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) + 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{}) @@ -22427,13 +22427,13 @@ type ServiceType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -22452,9 +22452,9 @@ type ServiceType interface { 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) + 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) @@ -22468,9 +22468,9 @@ type ServiceType interface { 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) + 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) @@ -22484,9 +22484,9 @@ type ServiceType interface { 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) + 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) @@ -22500,40 +22500,40 @@ type ServiceType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -22541,8 +22541,8 @@ type ServiceType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -22550,8 +22550,8 @@ type ServiceType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -22559,8 +22559,8 @@ type ServiceType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -22568,12 +22568,12 @@ type ServiceType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -22582,8 +22582,8 @@ type ServiceType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -22591,41 +22591,41 @@ type ServiceType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -22642,8 +22642,8 @@ type RelationshipType interface { GetSubjectLink() (v LinkType) SetSubjectLink(v LinkType) IsSubjectIRI() (ok bool) - GetSubjectIRI() (v url.URL) - SetSubjectIRI(v url.URL) + GetSubjectIRI() (v *url.URL) + SetSubjectIRI(v *url.URL) ObjectLen() (l int) IsObject(index int) (ok bool) GetObject(index int) (v ObjectType) @@ -22651,22 +22651,22 @@ type RelationshipType interface { PrependObject(v ObjectType) RemoveObject(index int) IsObjectIRI(index int) (ok bool) - GetObjectIRI(index int) (v url.URL) - AppendObjectIRI(v url.URL) - PrependObjectIRI(v url.URL) + GetObjectIRI(index int) (v *url.URL) + AppendObjectIRI(v *url.URL) + PrependObjectIRI(v *url.URL) RemoveObjectIRI(index int) IsRelationship() (ok bool) GetRelationship() (v ObjectType) SetRelationship(v ObjectType) IsRelationshipIRI() (ok bool) - GetRelationshipIRI() (v url.URL) - SetRelationshipIRI(v url.URL) + GetRelationshipIRI() (v *url.URL) + SetRelationshipIRI(v *url.URL) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -22679,9 +22679,9 @@ type RelationshipType interface { 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) + 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) @@ -22695,9 +22695,9 @@ type RelationshipType interface { 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) + 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) @@ -22711,9 +22711,9 @@ type RelationshipType interface { 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) + 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) @@ -22727,9 +22727,9 @@ type RelationshipType interface { 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) + 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) @@ -22746,9 +22746,9 @@ type RelationshipType interface { 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) + 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) @@ -22762,9 +22762,9 @@ type RelationshipType interface { 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) + 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) @@ -22773,8 +22773,8 @@ type RelationshipType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -22787,9 +22787,9 @@ type RelationshipType interface { 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) + 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) @@ -22803,13 +22803,13 @@ type RelationshipType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -22825,9 +22825,9 @@ type RelationshipType interface { 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) + 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) @@ -22841,9 +22841,9 @@ type RelationshipType interface { 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) + 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) @@ -22857,9 +22857,9 @@ type RelationshipType interface { 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) + 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) @@ -22873,28 +22873,28 @@ type RelationshipType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -22907,9 +22907,9 @@ type RelationshipType interface { 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) + 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) @@ -22926,9 +22926,9 @@ type RelationshipType interface { 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) + 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{}) @@ -22939,13 +22939,13 @@ type RelationshipType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -22964,9 +22964,9 @@ type RelationshipType interface { 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) + 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) @@ -22980,9 +22980,9 @@ type RelationshipType interface { 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) + 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) @@ -22996,9 +22996,9 @@ type RelationshipType interface { 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) + 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) @@ -23012,40 +23012,40 @@ type RelationshipType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -23053,8 +23053,8 @@ type RelationshipType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -23062,8 +23062,8 @@ type RelationshipType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -23071,8 +23071,8 @@ type RelationshipType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -23080,12 +23080,12 @@ type RelationshipType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -23094,8 +23094,8 @@ type RelationshipType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -23103,41 +23103,41 @@ type RelationshipType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -23151,8 +23151,8 @@ type ArticleType interface { GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -23165,9 +23165,9 @@ type ArticleType interface { 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) + 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) @@ -23181,9 +23181,9 @@ type ArticleType interface { 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) + 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) @@ -23197,9 +23197,9 @@ type ArticleType interface { 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) + 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) @@ -23213,9 +23213,9 @@ type ArticleType interface { 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) + 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) @@ -23232,9 +23232,9 @@ type ArticleType interface { 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) + 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) @@ -23248,9 +23248,9 @@ type ArticleType interface { 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) + 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) @@ -23259,8 +23259,8 @@ type ArticleType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -23273,9 +23273,9 @@ type ArticleType interface { 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) + 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) @@ -23289,13 +23289,13 @@ type ArticleType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -23311,9 +23311,9 @@ type ArticleType interface { 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) + 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) @@ -23327,9 +23327,9 @@ type ArticleType interface { 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) + 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) @@ -23343,9 +23343,9 @@ type ArticleType interface { 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) + 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) @@ -23359,28 +23359,28 @@ type ArticleType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -23393,9 +23393,9 @@ type ArticleType interface { 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) + 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) @@ -23412,9 +23412,9 @@ type ArticleType interface { 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) + 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{}) @@ -23425,13 +23425,13 @@ type ArticleType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -23450,9 +23450,9 @@ type ArticleType interface { 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) + 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) @@ -23466,9 +23466,9 @@ type ArticleType interface { 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) + 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) @@ -23482,9 +23482,9 @@ type ArticleType interface { 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) + 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) @@ -23498,40 +23498,40 @@ type ArticleType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -23539,8 +23539,8 @@ type ArticleType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -23548,8 +23548,8 @@ type ArticleType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -23557,8 +23557,8 @@ type ArticleType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -23566,12 +23566,12 @@ type ArticleType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -23580,8 +23580,8 @@ type ArticleType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -23589,41 +23589,41 @@ type ArticleType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -23637,8 +23637,8 @@ type DocumentType interface { GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -23651,9 +23651,9 @@ type DocumentType interface { 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) + 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) @@ -23667,9 +23667,9 @@ type DocumentType interface { 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) + 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) @@ -23683,9 +23683,9 @@ type DocumentType interface { 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) + 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) @@ -23699,9 +23699,9 @@ type DocumentType interface { 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) + 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) @@ -23718,9 +23718,9 @@ type DocumentType interface { 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) + 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) @@ -23734,9 +23734,9 @@ type DocumentType interface { 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) + 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) @@ -23745,8 +23745,8 @@ type DocumentType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -23759,9 +23759,9 @@ type DocumentType interface { 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) + 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) @@ -23775,13 +23775,13 @@ type DocumentType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -23797,9 +23797,9 @@ type DocumentType interface { 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) + 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) @@ -23813,9 +23813,9 @@ type DocumentType interface { 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) + 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) @@ -23829,9 +23829,9 @@ type DocumentType interface { 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) + 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) @@ -23845,28 +23845,28 @@ type DocumentType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -23879,9 +23879,9 @@ type DocumentType interface { 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) + 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) @@ -23898,9 +23898,9 @@ type DocumentType interface { 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) + 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{}) @@ -23911,13 +23911,13 @@ type DocumentType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -23936,9 +23936,9 @@ type DocumentType interface { 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) + 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) @@ -23952,9 +23952,9 @@ type DocumentType interface { 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) + 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) @@ -23968,9 +23968,9 @@ type DocumentType interface { 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) + 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) @@ -23984,40 +23984,40 @@ type DocumentType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -24025,8 +24025,8 @@ type DocumentType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -24034,8 +24034,8 @@ type DocumentType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -24043,8 +24043,8 @@ type DocumentType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -24052,12 +24052,12 @@ type DocumentType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -24066,8 +24066,8 @@ type DocumentType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -24075,41 +24075,41 @@ type DocumentType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -24123,8 +24123,8 @@ type AudioType interface { GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -24137,9 +24137,9 @@ type AudioType interface { 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) + 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) @@ -24153,9 +24153,9 @@ type AudioType interface { 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) + 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) @@ -24169,9 +24169,9 @@ type AudioType interface { 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) + 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) @@ -24185,9 +24185,9 @@ type AudioType interface { 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) + 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) @@ -24204,9 +24204,9 @@ type AudioType interface { 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) + 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) @@ -24220,9 +24220,9 @@ type AudioType interface { 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) + 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) @@ -24231,8 +24231,8 @@ type AudioType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -24245,9 +24245,9 @@ type AudioType interface { 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) + 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) @@ -24261,13 +24261,13 @@ type AudioType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -24283,9 +24283,9 @@ type AudioType interface { 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) + 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) @@ -24299,9 +24299,9 @@ type AudioType interface { 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) + 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) @@ -24315,9 +24315,9 @@ type AudioType interface { 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) + 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) @@ -24331,28 +24331,28 @@ type AudioType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -24365,9 +24365,9 @@ type AudioType interface { 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) + 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) @@ -24384,9 +24384,9 @@ type AudioType interface { 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) + 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{}) @@ -24397,13 +24397,13 @@ type AudioType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -24422,9 +24422,9 @@ type AudioType interface { 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) + 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) @@ -24438,9 +24438,9 @@ type AudioType interface { 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) + 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) @@ -24454,9 +24454,9 @@ type AudioType interface { 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) + 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) @@ -24470,40 +24470,40 @@ type AudioType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -24511,8 +24511,8 @@ type AudioType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -24520,8 +24520,8 @@ type AudioType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -24529,8 +24529,8 @@ type AudioType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -24538,12 +24538,12 @@ type AudioType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -24552,8 +24552,8 @@ type AudioType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -24561,41 +24561,41 @@ type AudioType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -24609,20 +24609,20 @@ type ImageType interface { GetHeight() (v int64) SetHeight(v int64) IsHeightIRI() (ok bool) - GetHeightIRI() (v url.URL) - SetHeightIRI(v url.URL) + GetHeightIRI() (v *url.URL) + SetHeightIRI(v *url.URL) IsWidth() (ok bool) GetWidth() (v int64) SetWidth(v int64) IsWidthIRI() (ok bool) - GetWidthIRI() (v url.URL) - SetWidthIRI(v url.URL) + GetWidthIRI() (v *url.URL) + SetWidthIRI(v *url.URL) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -24635,9 +24635,9 @@ type ImageType interface { 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) + 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) @@ -24651,9 +24651,9 @@ type ImageType interface { 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) + 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) @@ -24667,9 +24667,9 @@ type ImageType interface { 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) + 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) @@ -24683,9 +24683,9 @@ type ImageType interface { 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) + 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) @@ -24702,9 +24702,9 @@ type ImageType interface { 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) + 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) @@ -24718,9 +24718,9 @@ type ImageType interface { 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) + 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) @@ -24729,8 +24729,8 @@ type ImageType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -24743,9 +24743,9 @@ type ImageType interface { 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) + 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) @@ -24759,13 +24759,13 @@ type ImageType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -24781,9 +24781,9 @@ type ImageType interface { 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) + 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) @@ -24797,9 +24797,9 @@ type ImageType interface { 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) + 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) @@ -24813,9 +24813,9 @@ type ImageType interface { 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) + 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) @@ -24829,28 +24829,28 @@ type ImageType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -24863,9 +24863,9 @@ type ImageType interface { 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) + 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) @@ -24882,9 +24882,9 @@ type ImageType interface { 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) + 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{}) @@ -24895,13 +24895,13 @@ type ImageType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -24920,9 +24920,9 @@ type ImageType interface { 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) + 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) @@ -24936,9 +24936,9 @@ type ImageType interface { 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) + 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) @@ -24952,9 +24952,9 @@ type ImageType interface { 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) + 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) @@ -24968,40 +24968,40 @@ type ImageType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -25009,8 +25009,8 @@ type ImageType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -25018,8 +25018,8 @@ type ImageType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -25027,8 +25027,8 @@ type ImageType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -25036,12 +25036,12 @@ type ImageType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -25050,8 +25050,8 @@ type ImageType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -25059,41 +25059,41 @@ type ImageType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -25107,8 +25107,8 @@ type VideoType interface { GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -25121,9 +25121,9 @@ type VideoType interface { 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) + 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) @@ -25137,9 +25137,9 @@ type VideoType interface { 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) + 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) @@ -25153,9 +25153,9 @@ type VideoType interface { 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) + 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) @@ -25169,9 +25169,9 @@ type VideoType interface { 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) + 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) @@ -25188,9 +25188,9 @@ type VideoType interface { 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) + 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) @@ -25204,9 +25204,9 @@ type VideoType interface { 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) + 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) @@ -25215,8 +25215,8 @@ type VideoType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -25229,9 +25229,9 @@ type VideoType interface { 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) + 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) @@ -25245,13 +25245,13 @@ type VideoType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -25267,9 +25267,9 @@ type VideoType interface { 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) + 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) @@ -25283,9 +25283,9 @@ type VideoType interface { 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) + 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) @@ -25299,9 +25299,9 @@ type VideoType interface { 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) + 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) @@ -25315,28 +25315,28 @@ type VideoType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -25349,9 +25349,9 @@ type VideoType interface { 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) + 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) @@ -25368,9 +25368,9 @@ type VideoType interface { 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) + 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{}) @@ -25381,13 +25381,13 @@ type VideoType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -25406,9 +25406,9 @@ type VideoType interface { 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) + 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) @@ -25422,9 +25422,9 @@ type VideoType interface { 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) + 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) @@ -25438,9 +25438,9 @@ type VideoType interface { 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) + 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) @@ -25454,40 +25454,40 @@ type VideoType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -25495,8 +25495,8 @@ type VideoType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -25504,8 +25504,8 @@ type VideoType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -25513,8 +25513,8 @@ type VideoType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -25522,12 +25522,12 @@ type VideoType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -25536,8 +25536,8 @@ type VideoType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -25545,41 +25545,41 @@ type VideoType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -25593,8 +25593,8 @@ type NoteType interface { GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -25607,9 +25607,9 @@ type NoteType interface { 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) + 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) @@ -25623,9 +25623,9 @@ type NoteType interface { 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) + 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) @@ -25639,9 +25639,9 @@ type NoteType interface { 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) + 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) @@ -25655,9 +25655,9 @@ type NoteType interface { 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) + 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) @@ -25674,9 +25674,9 @@ type NoteType interface { 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) + 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) @@ -25690,9 +25690,9 @@ type NoteType interface { 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) + 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) @@ -25701,8 +25701,8 @@ type NoteType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -25715,9 +25715,9 @@ type NoteType interface { 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) + 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) @@ -25731,13 +25731,13 @@ type NoteType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -25753,9 +25753,9 @@ type NoteType interface { 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) + 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) @@ -25769,9 +25769,9 @@ type NoteType interface { 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) + 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) @@ -25785,9 +25785,9 @@ type NoteType interface { 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) + 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) @@ -25801,28 +25801,28 @@ type NoteType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -25835,9 +25835,9 @@ type NoteType interface { 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) + 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) @@ -25854,9 +25854,9 @@ type NoteType interface { 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) + 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{}) @@ -25867,13 +25867,13 @@ type NoteType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -25892,9 +25892,9 @@ type NoteType interface { 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) + 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) @@ -25908,9 +25908,9 @@ type NoteType interface { 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) + 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) @@ -25924,9 +25924,9 @@ type NoteType interface { 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) + 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) @@ -25940,40 +25940,40 @@ type NoteType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -25981,8 +25981,8 @@ type NoteType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -25990,8 +25990,8 @@ type NoteType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -25999,8 +25999,8 @@ type NoteType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -26008,12 +26008,12 @@ type NoteType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -26022,8 +26022,8 @@ type NoteType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -26031,41 +26031,41 @@ type NoteType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -26079,8 +26079,8 @@ type PageType interface { GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -26093,9 +26093,9 @@ type PageType interface { 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) + 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) @@ -26109,9 +26109,9 @@ type PageType interface { 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) + 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) @@ -26125,9 +26125,9 @@ type PageType interface { 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) + 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) @@ -26141,9 +26141,9 @@ type PageType interface { 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) + 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) @@ -26160,9 +26160,9 @@ type PageType interface { 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) + 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) @@ -26176,9 +26176,9 @@ type PageType interface { 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) + 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) @@ -26187,8 +26187,8 @@ type PageType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -26201,9 +26201,9 @@ type PageType interface { 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) + 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) @@ -26217,13 +26217,13 @@ type PageType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -26239,9 +26239,9 @@ type PageType interface { 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) + 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) @@ -26255,9 +26255,9 @@ type PageType interface { 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) + 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) @@ -26271,9 +26271,9 @@ type PageType interface { 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) + 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) @@ -26287,28 +26287,28 @@ type PageType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -26321,9 +26321,9 @@ type PageType interface { 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) + 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) @@ -26340,9 +26340,9 @@ type PageType interface { 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) + 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{}) @@ -26353,13 +26353,13 @@ type PageType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -26378,9 +26378,9 @@ type PageType interface { 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) + 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) @@ -26394,9 +26394,9 @@ type PageType interface { 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) + 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) @@ -26410,9 +26410,9 @@ type PageType interface { 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) + 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) @@ -26426,40 +26426,40 @@ type PageType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -26467,8 +26467,8 @@ type PageType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -26476,8 +26476,8 @@ type PageType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -26485,8 +26485,8 @@ type PageType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -26494,12 +26494,12 @@ type PageType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -26508,8 +26508,8 @@ type PageType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -26517,41 +26517,41 @@ type PageType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -26565,8 +26565,8 @@ type EventType interface { GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -26579,9 +26579,9 @@ type EventType interface { 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) + 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) @@ -26595,9 +26595,9 @@ type EventType interface { 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) + 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) @@ -26611,9 +26611,9 @@ type EventType interface { 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) + 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) @@ -26627,9 +26627,9 @@ type EventType interface { 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) + 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) @@ -26646,9 +26646,9 @@ type EventType interface { 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) + 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) @@ -26662,9 +26662,9 @@ type EventType interface { 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) + 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) @@ -26673,8 +26673,8 @@ type EventType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -26687,9 +26687,9 @@ type EventType interface { 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) + 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) @@ -26703,13 +26703,13 @@ type EventType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -26725,9 +26725,9 @@ type EventType interface { 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) + 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) @@ -26741,9 +26741,9 @@ type EventType interface { 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) + 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) @@ -26757,9 +26757,9 @@ type EventType interface { 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) + 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) @@ -26773,28 +26773,28 @@ type EventType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -26807,9 +26807,9 @@ type EventType interface { 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) + 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) @@ -26826,9 +26826,9 @@ type EventType interface { 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) + 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{}) @@ -26839,13 +26839,13 @@ type EventType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -26864,9 +26864,9 @@ type EventType interface { 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) + 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) @@ -26880,9 +26880,9 @@ type EventType interface { 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) + 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) @@ -26896,9 +26896,9 @@ type EventType interface { 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) + 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) @@ -26912,40 +26912,40 @@ type EventType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -26953,8 +26953,8 @@ type EventType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -26962,8 +26962,8 @@ type EventType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -26971,8 +26971,8 @@ type EventType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -26980,12 +26980,12 @@ type EventType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -26994,8 +26994,8 @@ type EventType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -27003,41 +27003,41 @@ type EventType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -27051,38 +27051,38 @@ type PlaceType interface { GetAccuracy() (v float64) SetAccuracy(v float64) IsAccuracyIRI() (ok bool) - GetAccuracyIRI() (v url.URL) - SetAccuracyIRI(v url.URL) + GetAccuracyIRI() (v *url.URL) + SetAccuracyIRI(v *url.URL) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) IsLatitude() (ok bool) GetLatitude() (v float64) SetLatitude(v float64) IsLatitudeIRI() (ok bool) - GetLatitudeIRI() (v url.URL) - SetLatitudeIRI(v url.URL) + GetLatitudeIRI() (v *url.URL) + SetLatitudeIRI(v *url.URL) IsLongitude() (ok bool) GetLongitude() (v float64) SetLongitude(v float64) IsLongitudeIRI() (ok bool) - GetLongitudeIRI() (v url.URL) - SetLongitudeIRI(v url.URL) + GetLongitudeIRI() (v *url.URL) + SetLongitudeIRI(v *url.URL) IsRadius() (ok bool) GetRadius() (v float64) SetRadius(v float64) IsRadiusIRI() (ok bool) - GetRadiusIRI() (v url.URL) - SetRadiusIRI(v url.URL) + GetRadiusIRI() (v *url.URL) + SetRadiusIRI(v *url.URL) IsUnitsUnitsValue() (ok bool) GetUnitsUnitsValue() (v string) SetUnitsUnitsValue(v string) IsUnitsAnyURI() (ok bool) - GetUnitsAnyURI() (v url.URL) - SetUnitsAnyURI(v url.URL) + GetUnitsAnyURI() (v *url.URL) + SetUnitsAnyURI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -27095,9 +27095,9 @@ type PlaceType interface { 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) + 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) @@ -27111,9 +27111,9 @@ type PlaceType interface { 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) + 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) @@ -27127,9 +27127,9 @@ type PlaceType interface { 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) + 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) @@ -27143,9 +27143,9 @@ type PlaceType interface { 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) + 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) @@ -27162,9 +27162,9 @@ type PlaceType interface { 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) + 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) @@ -27178,9 +27178,9 @@ type PlaceType interface { 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) + 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) @@ -27189,8 +27189,8 @@ type PlaceType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -27203,9 +27203,9 @@ type PlaceType interface { 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) + 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) @@ -27219,13 +27219,13 @@ type PlaceType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -27241,9 +27241,9 @@ type PlaceType interface { 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) + 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) @@ -27257,9 +27257,9 @@ type PlaceType interface { 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) + 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) @@ -27273,9 +27273,9 @@ type PlaceType interface { 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) + 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) @@ -27289,28 +27289,28 @@ type PlaceType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -27323,9 +27323,9 @@ type PlaceType interface { 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) + 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) @@ -27342,9 +27342,9 @@ type PlaceType interface { 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) + 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{}) @@ -27355,13 +27355,13 @@ type PlaceType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -27380,9 +27380,9 @@ type PlaceType interface { 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) + 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) @@ -27396,9 +27396,9 @@ type PlaceType interface { 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) + 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) @@ -27412,9 +27412,9 @@ type PlaceType interface { 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) + 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) @@ -27428,40 +27428,40 @@ type PlaceType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -27469,8 +27469,8 @@ type PlaceType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -27478,8 +27478,8 @@ type PlaceType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -27487,8 +27487,8 @@ type PlaceType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -27496,12 +27496,12 @@ type PlaceType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -27510,8 +27510,8 @@ type PlaceType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -27519,41 +27519,41 @@ type PlaceType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -27567,14 +27567,14 @@ type ProfileType interface { GetDescribes() (v ObjectType) SetDescribes(v ObjectType) IsDescribesIRI() (ok bool) - GetDescribesIRI() (v url.URL) - SetDescribesIRI(v url.URL) + GetDescribesIRI() (v *url.URL) + SetDescribesIRI(v *url.URL) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -27587,9 +27587,9 @@ type ProfileType interface { 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) + 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) @@ -27603,9 +27603,9 @@ type ProfileType interface { 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) + 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) @@ -27619,9 +27619,9 @@ type ProfileType interface { 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) + 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) @@ -27635,9 +27635,9 @@ type ProfileType interface { 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) + 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) @@ -27654,9 +27654,9 @@ type ProfileType interface { 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) + 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) @@ -27670,9 +27670,9 @@ type ProfileType interface { 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) + 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) @@ -27681,8 +27681,8 @@ type ProfileType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -27695,9 +27695,9 @@ type ProfileType interface { 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) + 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) @@ -27711,13 +27711,13 @@ type ProfileType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -27733,9 +27733,9 @@ type ProfileType interface { 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) + 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) @@ -27749,9 +27749,9 @@ type ProfileType interface { 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) + 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) @@ -27765,9 +27765,9 @@ type ProfileType interface { 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) + 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) @@ -27781,28 +27781,28 @@ type ProfileType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -27815,9 +27815,9 @@ type ProfileType interface { 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) + 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) @@ -27834,9 +27834,9 @@ type ProfileType interface { 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) + 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{}) @@ -27847,13 +27847,13 @@ type ProfileType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -27872,9 +27872,9 @@ type ProfileType interface { 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) + 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) @@ -27888,9 +27888,9 @@ type ProfileType interface { 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) + 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) @@ -27904,9 +27904,9 @@ type ProfileType interface { 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) + 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) @@ -27920,40 +27920,40 @@ type ProfileType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -27961,8 +27961,8 @@ type ProfileType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -27970,8 +27970,8 @@ type ProfileType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -27979,8 +27979,8 @@ type ProfileType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -27988,12 +27988,12 @@ type ProfileType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -28002,8 +28002,8 @@ type ProfileType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -28011,41 +28011,41 @@ type ProfileType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -28067,22 +28067,22 @@ type TombstoneType interface { PrependFormerTypeObject(v ObjectType) RemoveFormerTypeObject(index int) IsFormerTypeIRI(index int) (ok bool) - GetFormerTypeIRI(index int) (v url.URL) - AppendFormerTypeIRI(v url.URL) - PrependFormerTypeIRI(v url.URL) + GetFormerTypeIRI(index int) (v *url.URL) + AppendFormerTypeIRI(v *url.URL) + PrependFormerTypeIRI(v *url.URL) RemoveFormerTypeIRI(index int) IsDeleted() (ok bool) GetDeleted() (v time.Time) SetDeleted(v time.Time) IsDeletedIRI() (ok bool) - GetDeletedIRI() (v url.URL) - SetDeletedIRI(v url.URL) + GetDeletedIRI() (v *url.URL) + SetDeletedIRI(v *url.URL) IsAltitude() (ok bool) GetAltitude() (v float64) SetAltitude(v float64) IsAltitudeIRI() (ok bool) - GetAltitudeIRI() (v url.URL) - SetAltitudeIRI(v url.URL) + GetAltitudeIRI() (v *url.URL) + SetAltitudeIRI(v *url.URL) AttachmentLen() (l int) IsAttachmentObject(index int) (ok bool) GetAttachmentObject(index int) (v ObjectType) @@ -28095,9 +28095,9 @@ type TombstoneType interface { 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) + 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) @@ -28111,9 +28111,9 @@ type TombstoneType interface { 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) + 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) @@ -28127,9 +28127,9 @@ type TombstoneType interface { 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) + 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) @@ -28143,9 +28143,9 @@ type TombstoneType interface { 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) + 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) @@ -28162,9 +28162,9 @@ type TombstoneType interface { 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) + 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) @@ -28178,9 +28178,9 @@ type TombstoneType interface { 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) + 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) @@ -28189,8 +28189,8 @@ type TombstoneType interface { GetEndTime() (v time.Time) SetEndTime(v time.Time) IsEndTimeIRI() (ok bool) - GetEndTimeIRI() (v url.URL) - SetEndTimeIRI(v url.URL) + GetEndTimeIRI() (v *url.URL) + SetEndTimeIRI(v *url.URL) GeneratorLen() (l int) IsGeneratorObject(index int) (ok bool) GetGeneratorObject(index int) (v ObjectType) @@ -28203,9 +28203,9 @@ type TombstoneType interface { 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) + 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) @@ -28219,13 +28219,13 @@ type TombstoneType interface { 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) + 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) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -28241,9 +28241,9 @@ type TombstoneType interface { 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) + 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) @@ -28257,9 +28257,9 @@ type TombstoneType interface { 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) + 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) @@ -28273,9 +28273,9 @@ type TombstoneType interface { 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) + 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) @@ -28289,28 +28289,28 @@ type TombstoneType interface { 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) + 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) + 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) + 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) + GetStartTimeIRI() (v *url.URL) + SetStartTimeIRI(v *url.URL) SummaryLen() (l int) IsSummaryString(index int) (ok bool) GetSummaryString(index int) (v string) @@ -28323,9 +28323,9 @@ type TombstoneType interface { 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) + 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) @@ -28342,9 +28342,9 @@ type TombstoneType interface { 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) + 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{}) @@ -28355,13 +28355,13 @@ type TombstoneType interface { GetUpdated() (v time.Time) SetUpdated(v time.Time) IsUpdatedIRI() (ok bool) - GetUpdatedIRI() (v url.URL) - SetUpdatedIRI(v url.URL) + 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) + 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) @@ -28380,9 +28380,9 @@ type TombstoneType interface { 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) + 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) @@ -28396,9 +28396,9 @@ type TombstoneType interface { 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) + 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) @@ -28412,9 +28412,9 @@ type TombstoneType interface { 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) + 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) @@ -28428,40 +28428,40 @@ type TombstoneType interface { 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) + 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) + 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) + 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) + 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) + 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) + GetOutboxAnyURI() (v *url.URL) + SetOutboxAnyURI(v *url.URL) IsFollowingCollection() (ok bool) GetFollowingCollection() (v CollectionType) SetFollowingCollection(v CollectionType) @@ -28469,8 +28469,8 @@ type TombstoneType interface { GetFollowingOrderedCollection() (v OrderedCollectionType) SetFollowingOrderedCollection(v OrderedCollectionType) IsFollowingAnyURI() (ok bool) - GetFollowingAnyURI() (v url.URL) - SetFollowingAnyURI(v url.URL) + GetFollowingAnyURI() (v *url.URL) + SetFollowingAnyURI(v *url.URL) IsFollowersCollection() (ok bool) GetFollowersCollection() (v CollectionType) SetFollowersCollection(v CollectionType) @@ -28478,8 +28478,8 @@ type TombstoneType interface { GetFollowersOrderedCollection() (v OrderedCollectionType) SetFollowersOrderedCollection(v OrderedCollectionType) IsFollowersAnyURI() (ok bool) - GetFollowersAnyURI() (v url.URL) - SetFollowersAnyURI(v url.URL) + GetFollowersAnyURI() (v *url.URL) + SetFollowersAnyURI(v *url.URL) IsLikedCollection() (ok bool) GetLikedCollection() (v CollectionType) SetLikedCollection(v CollectionType) @@ -28487,8 +28487,8 @@ type TombstoneType interface { GetLikedOrderedCollection() (v OrderedCollectionType) SetLikedOrderedCollection(v OrderedCollectionType) IsLikedAnyURI() (ok bool) - GetLikedAnyURI() (v url.URL) - SetLikedAnyURI(v url.URL) + GetLikedAnyURI() (v *url.URL) + SetLikedAnyURI(v *url.URL) IsLikesCollection() (ok bool) GetLikesCollection() (v CollectionType) SetLikesCollection(v CollectionType) @@ -28496,12 +28496,12 @@ type TombstoneType interface { GetLikesOrderedCollection() (v OrderedCollectionType) SetLikesOrderedCollection(v OrderedCollectionType) IsLikesAnyURI() (ok bool) - GetLikesAnyURI() (v url.URL) - SetLikesAnyURI(v url.URL) + 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) + GetStreams(index int) (v *url.URL) + AppendStreams(v *url.URL) + PrependStreams(v *url.URL) RemoveStreams(index int) HasUnknownStreams() (ok bool) GetUnknownStreams() (v interface{}) @@ -28510,8 +28510,8 @@ type TombstoneType interface { GetPreferredUsername() (v string) SetPreferredUsername(v string) IsPreferredUsernameIRI() (ok bool) - GetPreferredUsernameIRI() (v url.URL) - SetPreferredUsernameIRI(v url.URL) + GetPreferredUsernameIRI() (v *url.URL) + SetPreferredUsernameIRI(v *url.URL) PreferredUsernameMapLanguages() (l []string) GetPreferredUsernameMap(l string) (v string) SetPreferredUsernameMap(l string, v string) @@ -28519,41 +28519,41 @@ type TombstoneType interface { GetEndpoints() (v ObjectType) SetEndpoints(v ObjectType) IsEndpointsIRI() (ok bool) - GetEndpointsIRI() (v url.URL) - SetEndpointsIRI(v url.URL) + GetEndpointsIRI() (v *url.URL) + SetEndpointsIRI(v *url.URL) HasProxyUrl() (ok bool) - GetProxyUrl() (v url.URL) - SetProxyUrl(v url.URL) + 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) + 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) + 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) + 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) + 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) + GetSharedInbox() (v *url.URL) + SetSharedInbox(v *url.URL) HasUnknownSharedInbox() (ok bool) GetUnknownSharedInbox() (v interface{}) SetUnknownSharedInbox(i interface{}) @@ -28575,19 +28575,19 @@ type MentionType interface { 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) + GetAttributedToIRI(index int) (v *url.URL) + AppendAttributedToIRI(v *url.URL) + PrependAttributedToIRI(v *url.URL) RemoveAttributedToIRI(index int) HasHref() (ok bool) - GetHref() (v url.URL) - SetHref(v url.URL) + GetHref() (v *url.URL) + SetHref(v *url.URL) HasUnknownHref() (ok bool) GetUnknownHref() (v interface{}) SetUnknownHref(i interface{}) HasId() (ok bool) - GetId() (v url.URL) - SetId(v url.URL) + GetId() (v *url.URL) + SetId(v *url.URL) HasUnknownId() (ok bool) GetUnknownId() (v interface{}) SetUnknownId(i interface{}) @@ -28598,9 +28598,9 @@ type MentionType interface { PrependRel(v string) RemoveRel(index int) IsRelIRI(index int) (ok bool) - GetRelIRI(index int) (v url.URL) - AppendRelIRI(v url.URL) - PrependRelIRI(v url.URL) + GetRelIRI(index int) (v *url.URL) + AppendRelIRI(v *url.URL) + PrependRelIRI(v *url.URL) RemoveRelIRI(index int) TypeLen() (l int) GetType(index int) (v interface{}) @@ -28611,8 +28611,8 @@ type MentionType interface { GetMediaType() (v string) SetMediaType(v string) IsMediaTypeIRI() (ok bool) - GetMediaTypeIRI() (v url.URL) - SetMediaTypeIRI(v url.URL) + GetMediaTypeIRI() (v *url.URL) + SetMediaTypeIRI(v *url.URL) NameLen() (l int) IsNameString(index int) (ok bool) GetNameString(index int) (v string) @@ -28625,9 +28625,9 @@ type MentionType interface { 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) + 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) @@ -28644,9 +28644,9 @@ type MentionType interface { 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) + 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) @@ -28655,20 +28655,20 @@ type MentionType interface { GetHreflang() (v string) SetHreflang(v string) IsHreflangIRI() (ok bool) - GetHreflangIRI() (v url.URL) - SetHreflangIRI(v url.URL) + GetHreflangIRI() (v *url.URL) + SetHreflangIRI(v *url.URL) IsHeight() (ok bool) GetHeight() (v int64) SetHeight(v int64) IsHeightIRI() (ok bool) - GetHeightIRI() (v url.URL) - SetHeightIRI(v url.URL) + GetHeightIRI() (v *url.URL) + SetHeightIRI(v *url.URL) IsWidth() (ok bool) GetWidth() (v int64) SetWidth(v int64) IsWidthIRI() (ok bool) - GetWidthIRI() (v url.URL) - SetWidthIRI(v url.URL) + GetWidthIRI() (v *url.URL) + SetWidthIRI(v *url.URL) PreviewLen() (l int) IsPreviewObject(index int) (ok bool) GetPreviewObject(index int) (v ObjectType) @@ -28681,9 +28681,9 @@ type MentionType interface { 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) + GetPreviewIRI(index int) (v *url.URL) + AppendPreviewIRI(v *url.URL) + PrependPreviewIRI(v *url.URL) RemovePreviewIRI(index int) } @@ -28811,7 +28811,7 @@ type Object struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesObjectIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameObjectIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -28857,14 +28857,14 @@ func (t *Object) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Object) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Object) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Object) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeObjectIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Object) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeObjectIntermediateType{IRI: v} } @@ -28968,20 +28968,20 @@ func (t *Object) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Object) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Object) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Object) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentObjectIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Object) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentObjectIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Object) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentObjectIntermediateType{&attachmentObjectIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Object) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentObjectIntermediateType{&attachmentObjectIntermediateType{IRI: v}}, t.attachment...) } @@ -29093,20 +29093,20 @@ func (t *Object) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Object) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Object) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Object) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToObjectIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Object) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToObjectIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Object) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToObjectIntermediateType{&attributedToObjectIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Object) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToObjectIntermediateType{&attributedToObjectIntermediateType{IRI: v}}, t.attributedTo...) } @@ -29218,20 +29218,20 @@ func (t *Object) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Object) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Object) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Object) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceObjectIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Object) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceObjectIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Object) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceObjectIntermediateType{&audienceObjectIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Object) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceObjectIntermediateType{&audienceObjectIntermediateType{IRI: v}}, t.audience...) } @@ -29343,20 +29343,20 @@ func (t *Object) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Object) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Object) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Object) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentObjectIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Object) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentObjectIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Object) PrependContentIRI(v url.URL) { - t.content = append([]*contentObjectIntermediateType{&contentObjectIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Object) PrependContentIRI(v *url.URL) { + t.content = append([]*contentObjectIntermediateType{&contentObjectIntermediateType{IRI: v}}, t.content...) } @@ -29503,20 +29503,20 @@ func (t *Object) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Object) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Object) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Object) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextObjectIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Object) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextObjectIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Object) PrependContextIRI(v url.URL) { - t.context = append([]*contextObjectIntermediateType{&contextObjectIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Object) PrependContextIRI(v *url.URL) { + t.context = append([]*contextObjectIntermediateType{&contextObjectIntermediateType{IRI: v}}, t.context...) } @@ -29628,20 +29628,20 @@ func (t *Object) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Object) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Object) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Object) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameObjectIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Object) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameObjectIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Object) PrependNameIRI(v url.URL) { - t.name = append([]*nameObjectIntermediateType{&nameObjectIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Object) PrependNameIRI(v *url.URL) { + t.name = append([]*nameObjectIntermediateType{&nameObjectIntermediateType{IRI: v}}, t.name...) } @@ -29736,14 +29736,14 @@ func (t *Object) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Object) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Object) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Object) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeObjectIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Object) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeObjectIntermediateType{IRI: v} } @@ -29847,20 +29847,20 @@ func (t *Object) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Object) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Object) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Object) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorObjectIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Object) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorObjectIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Object) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorObjectIntermediateType{&generatorObjectIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Object) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorObjectIntermediateType{&generatorObjectIntermediateType{IRI: v}}, t.generator...) } @@ -29972,20 +29972,20 @@ func (t *Object) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Object) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Object) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Object) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconObjectIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Object) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconObjectIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Object) PrependIconIRI(v url.URL) { - t.icon = append([]*iconObjectIntermediateType{&iconObjectIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Object) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconObjectIntermediateType{&iconObjectIntermediateType{IRI: v}}, t.icon...) } @@ -30027,14 +30027,14 @@ func (t *Object) HasId() (ok bool) { } // GetId returns the value for id -func (t *Object) GetId() (v url.URL) { - return *t.id +func (t *Object) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Object) SetId(v url.URL) { - t.id = &v +func (t *Object) SetId(v *url.URL) { + t.id = v } @@ -30136,20 +30136,20 @@ func (t *Object) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Object) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Object) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Object) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageObjectIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Object) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageObjectIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Object) PrependImageIRI(v url.URL) { - t.image = append([]*imageObjectIntermediateType{&imageObjectIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Object) PrependImageIRI(v *url.URL) { + t.image = append([]*imageObjectIntermediateType{&imageObjectIntermediateType{IRI: v}}, t.image...) } @@ -30261,20 +30261,20 @@ func (t *Object) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Object) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Object) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Object) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToObjectIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Object) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToObjectIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Object) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToObjectIntermediateType{&inReplyToObjectIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Object) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToObjectIntermediateType{&inReplyToObjectIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -30386,20 +30386,20 @@ func (t *Object) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Object) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Object) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Object) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationObjectIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Object) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationObjectIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Object) PrependLocationIRI(v url.URL) { - t.location = append([]*locationObjectIntermediateType{&locationObjectIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Object) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationObjectIntermediateType{&locationObjectIntermediateType{IRI: v}}, t.location...) } @@ -30511,20 +30511,20 @@ func (t *Object) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Object) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Object) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Object) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewObjectIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Object) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewObjectIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Object) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewObjectIntermediateType{&previewObjectIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Object) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewObjectIntermediateType{&previewObjectIntermediateType{IRI: v}}, t.preview...) } @@ -30584,14 +30584,14 @@ func (t *Object) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Object) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Object) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Object) SetPublishedIRI(v url.URL) { - t.published = &publishedObjectIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Object) SetPublishedIRI(v *url.URL) { + t.published = &publishedObjectIntermediateType{IRI: v} } @@ -30643,14 +30643,14 @@ func (t *Object) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Object) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Object) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Object) SetRepliesIRI(v url.URL) { - t.replies = &repliesObjectIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Object) SetRepliesIRI(v *url.URL) { + t.replies = &repliesObjectIntermediateType{IRI: v} } @@ -30702,14 +30702,14 @@ func (t *Object) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Object) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Object) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Object) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeObjectIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Object) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeObjectIntermediateType{IRI: v} } @@ -30813,20 +30813,20 @@ func (t *Object) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Object) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Object) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Object) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryObjectIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Object) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryObjectIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Object) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryObjectIntermediateType{&summaryObjectIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Object) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryObjectIntermediateType{&summaryObjectIntermediateType{IRI: v}}, t.summary...) } @@ -30973,20 +30973,20 @@ func (t *Object) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Object) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Object) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Object) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagObjectIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Object) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagObjectIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Object) PrependTagIRI(v url.URL) { - t.tag = append([]*tagObjectIntermediateType{&tagObjectIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Object) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagObjectIntermediateType{&tagObjectIntermediateType{IRI: v}}, t.tag...) } @@ -31078,14 +31078,14 @@ func (t *Object) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Object) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Object) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Object) SetUpdatedIRI(v url.URL) { - t.updated = &updatedObjectIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Object) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedObjectIntermediateType{IRI: v} } @@ -31125,20 +31125,20 @@ func (t *Object) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Object) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Object) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Object) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlObjectIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Object) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlObjectIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Object) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlObjectIntermediateType{&urlObjectIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Object) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlObjectIntermediateType{&urlObjectIntermediateType{anyURI: v}}, t.url...) } @@ -31282,20 +31282,20 @@ func (t *Object) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Object) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Object) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Object) AppendToIRI(v url.URL) { - t.to = append(t.to, &toObjectIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Object) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toObjectIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Object) PrependToIRI(v url.URL) { - t.to = append([]*toObjectIntermediateType{&toObjectIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Object) PrependToIRI(v *url.URL) { + t.to = append([]*toObjectIntermediateType{&toObjectIntermediateType{IRI: v}}, t.to...) } @@ -31407,20 +31407,20 @@ func (t *Object) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Object) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Object) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Object) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoObjectIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Object) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoObjectIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Object) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoObjectIntermediateType{&btoObjectIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Object) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoObjectIntermediateType{&btoObjectIntermediateType{IRI: v}}, t.bto...) } @@ -31532,20 +31532,20 @@ func (t *Object) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Object) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Object) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Object) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccObjectIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Object) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccObjectIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Object) PrependCcIRI(v url.URL) { - t.cc = append([]*ccObjectIntermediateType{&ccObjectIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Object) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccObjectIntermediateType{&ccObjectIntermediateType{IRI: v}}, t.cc...) } @@ -31657,20 +31657,20 @@ func (t *Object) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Object) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Object) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Object) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccObjectIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Object) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccObjectIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Object) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccObjectIntermediateType{&bccObjectIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Object) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccObjectIntermediateType{&bccObjectIntermediateType{IRI: v}}, t.bcc...) } @@ -31730,14 +31730,14 @@ func (t *Object) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Object) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Object) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Object) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeObjectIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Object) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeObjectIntermediateType{IRI: v} } @@ -31789,14 +31789,14 @@ func (t *Object) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Object) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Object) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Object) SetDurationIRI(v url.URL) { - t.duration = &durationObjectIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Object) SetDurationIRI(v *url.URL) { + t.duration = &durationObjectIntermediateType{IRI: v} } @@ -31848,14 +31848,14 @@ func (t *Object) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Object) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Object) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Object) SetSourceIRI(v url.URL) { - t.source = &sourceObjectIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Object) SetSourceIRI(v *url.URL) { + t.source = &sourceObjectIntermediateType{IRI: v} } @@ -31907,14 +31907,14 @@ func (t *Object) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Object) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Object) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Object) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxObjectIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Object) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxObjectIntermediateType{anyURI: v} } @@ -31966,14 +31966,14 @@ func (t *Object) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Object) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Object) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Object) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxObjectIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Object) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxObjectIntermediateType{anyURI: v} } @@ -32043,14 +32043,14 @@ func (t *Object) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Object) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Object) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Object) SetFollowingAnyURI(v url.URL) { - t.following = &followingObjectIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Object) SetFollowingAnyURI(v *url.URL) { + t.following = &followingObjectIntermediateType{anyURI: v} } @@ -32120,14 +32120,14 @@ func (t *Object) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Object) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Object) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Object) SetFollowersAnyURI(v url.URL) { - t.followers = &followersObjectIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Object) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersObjectIntermediateType{anyURI: v} } @@ -32197,14 +32197,14 @@ func (t *Object) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Object) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Object) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Object) SetLikedAnyURI(v url.URL) { - t.liked = &likedObjectIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Object) SetLikedAnyURI(v *url.URL) { + t.liked = &likedObjectIntermediateType{anyURI: v} } @@ -32274,14 +32274,14 @@ func (t *Object) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Object) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Object) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Object) SetLikesAnyURI(v url.URL) { - t.likes = &likesObjectIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Object) SetLikesAnyURI(v *url.URL) { + t.likes = &likesObjectIntermediateType{anyURI: v} } @@ -32315,26 +32315,27 @@ func (t *Object) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Object) GetStreams(index int) (v url.URL) { +func (t *Object) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Object) AppendStreams(v url.URL) { +func (t *Object) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Object) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Object) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Object) 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] } @@ -32385,14 +32386,14 @@ func (t *Object) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Object) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Object) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Object) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameObjectIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Object) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameObjectIntermediateType{IRI: v} } @@ -32479,14 +32480,14 @@ func (t *Object) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Object) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Object) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Object) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsObjectIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Object) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsObjectIntermediateType{IRI: v} } @@ -32520,14 +32521,14 @@ func (t *Object) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Object) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Object) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Object) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Object) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -32559,14 +32560,14 @@ func (t *Object) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Object) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Object) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Object) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Object) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -32598,14 +32599,14 @@ func (t *Object) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Object) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Object) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Object) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Object) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -32637,14 +32638,14 @@ func (t *Object) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Object) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Object) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Object) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Object) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -32676,14 +32677,14 @@ func (t *Object) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Object) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Object) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Object) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Object) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -32715,14 +32716,14 @@ func (t *Object) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Object) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Object) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Object) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Object) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -32914,7 +32915,7 @@ func (t *Object) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -33220,7 +33221,7 @@ func (t *Object) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -33235,7 +33236,7 @@ func (t *Object) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -33250,7 +33251,7 @@ func (t *Object) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -33265,7 +33266,7 @@ func (t *Object) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -33280,7 +33281,7 @@ func (t *Object) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -33295,7 +33296,7 @@ func (t *Object) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -34093,7 +34094,7 @@ func (t *Object) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -34102,7 +34103,7 @@ func (t *Object) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -34287,7 +34288,7 @@ func (t *altitudeObjectIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -34370,7 +34371,7 @@ func (t *attachmentObjectIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -34453,7 +34454,7 @@ func (t *attributedToObjectIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -34536,7 +34537,7 @@ func (t *audienceObjectIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -34604,7 +34605,7 @@ func (t *contentObjectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -34687,7 +34688,7 @@ func (t *contextObjectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -34755,7 +34756,7 @@ func (t *nameObjectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -34809,7 +34810,7 @@ func (t *endTimeObjectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -34892,7 +34893,7 @@ func (t *generatorObjectIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -34975,7 +34976,7 @@ func (t *iconObjectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -35058,7 +35059,7 @@ func (t *imageObjectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -35141,7 +35142,7 @@ func (t *inReplyToObjectIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -35224,7 +35225,7 @@ func (t *locationObjectIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -35307,7 +35308,7 @@ func (t *previewObjectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -35361,7 +35362,7 @@ func (t *publishedObjectIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -35429,7 +35430,7 @@ func (t *repliesObjectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -35483,7 +35484,7 @@ func (t *startTimeObjectIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -35551,7 +35552,7 @@ func (t *summaryObjectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -35634,7 +35635,7 @@ func (t *tagObjectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -35688,7 +35689,7 @@ func (t *updatedObjectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -35752,7 +35753,7 @@ func (t *urlObjectIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlObjectIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -35839,7 +35840,7 @@ func (t *toObjectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -35922,7 +35923,7 @@ func (t *btoObjectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -36005,7 +36006,7 @@ func (t *ccObjectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -36088,7 +36089,7 @@ func (t *bccObjectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -36142,7 +36143,7 @@ func (t *mediaTypeObjectIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -36196,7 +36197,7 @@ func (t *durationObjectIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -36264,7 +36265,7 @@ func (t *sourceObjectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -36332,7 +36333,7 @@ func (t *inboxObjectIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -36400,7 +36401,7 @@ func (t *outboxObjectIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -36483,7 +36484,7 @@ func (t *followingObjectIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -36566,7 +36567,7 @@ func (t *followersObjectIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -36649,7 +36650,7 @@ func (t *likedObjectIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -36732,7 +36733,7 @@ func (t *likesObjectIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -36786,7 +36787,7 @@ func (t *preferredUsernameObjectIntermediateType) Serialize() (i interface{}, er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -36854,7 +36855,7 @@ func (t *endpointsObjectIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -36972,20 +36973,20 @@ func (t *Link) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Link) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Link) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Link) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToLinkIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Link) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToLinkIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Link) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToLinkIntermediateType{&attributedToLinkIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Link) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToLinkIntermediateType{&attributedToLinkIntermediateType{IRI: v}}, t.attributedTo...) } @@ -37027,14 +37028,14 @@ func (t *Link) HasHref() (ok bool) { } // GetHref returns the value for href -func (t *Link) GetHref() (v url.URL) { - return *t.href +func (t *Link) GetHref() (v *url.URL) { + return t.href } // SetHref sets the value of href -func (t *Link) SetHref(v url.URL) { - t.href = &v +func (t *Link) SetHref(v *url.URL) { + t.href = v } @@ -37066,14 +37067,14 @@ func (t *Link) HasId() (ok bool) { } // GetId returns the value for id -func (t *Link) GetId() (v url.URL) { - return *t.id +func (t *Link) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Link) SetId(v url.URL) { - t.id = &v +func (t *Link) SetId(v *url.URL) { + t.id = v } @@ -37143,20 +37144,20 @@ func (t *Link) IsRelIRI(index int) (ok bool) { } // GetRelIRI returns the value safely if IsRelIRI returned true for the specified index -func (t *Link) GetRelIRI(index int) (v url.URL) { - return *t.rel[index].IRI +func (t *Link) GetRelIRI(index int) (v *url.URL) { + return t.rel[index].IRI } -// AppendRelIRI adds to the back of rel a url.URL type -func (t *Link) AppendRelIRI(v url.URL) { - t.rel = append(t.rel, &relLinkIntermediateType{IRI: &v}) +// AppendRelIRI adds to the back of rel a *url.URL type +func (t *Link) AppendRelIRI(v *url.URL) { + t.rel = append(t.rel, &relLinkIntermediateType{IRI: v}) } -// PrependRelIRI adds to the front of rel a url.URL type -func (t *Link) PrependRelIRI(v url.URL) { - t.rel = append([]*relLinkIntermediateType{&relLinkIntermediateType{IRI: &v}}, t.rel...) +// PrependRelIRI adds to the front of rel a *url.URL type +func (t *Link) PrependRelIRI(v *url.URL) { + t.rel = append([]*relLinkIntermediateType{&relLinkIntermediateType{IRI: v}}, t.rel...) } @@ -37248,14 +37249,14 @@ func (t *Link) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Link) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Link) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Link) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeLinkIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Link) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeLinkIntermediateType{IRI: v} } @@ -37359,20 +37360,20 @@ func (t *Link) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Link) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Link) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Link) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameLinkIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Link) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameLinkIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Link) PrependNameIRI(v url.URL) { - t.name = append([]*nameLinkIntermediateType{&nameLinkIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Link) PrependNameIRI(v *url.URL) { + t.name = append([]*nameLinkIntermediateType{&nameLinkIntermediateType{IRI: v}}, t.name...) } @@ -37519,20 +37520,20 @@ func (t *Link) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Link) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Link) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Link) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryLinkIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Link) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryLinkIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Link) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryLinkIntermediateType{&summaryLinkIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Link) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryLinkIntermediateType{&summaryLinkIntermediateType{IRI: v}}, t.summary...) } @@ -37627,14 +37628,14 @@ func (t *Link) IsHreflangIRI() (ok bool) { } // GetHreflangIRI returns the value safely if IsHreflangIRI returned true -func (t *Link) GetHreflangIRI() (v url.URL) { - return *t.hreflang.IRI +func (t *Link) GetHreflangIRI() (v *url.URL) { + return t.hreflang.IRI } -// SetHreflangIRI sets the value of hreflang to be of url.URL type -func (t *Link) SetHreflangIRI(v url.URL) { - t.hreflang = &hreflangLinkIntermediateType{IRI: &v} +// SetHreflangIRI sets the value of hreflang to be of *url.URL type +func (t *Link) SetHreflangIRI(v *url.URL) { + t.hreflang = &hreflangLinkIntermediateType{IRI: v} } @@ -37686,14 +37687,14 @@ func (t *Link) IsHeightIRI() (ok bool) { } // GetHeightIRI returns the value safely if IsHeightIRI returned true -func (t *Link) GetHeightIRI() (v url.URL) { - return *t.height.IRI +func (t *Link) GetHeightIRI() (v *url.URL) { + return t.height.IRI } -// SetHeightIRI sets the value of height to be of url.URL type -func (t *Link) SetHeightIRI(v url.URL) { - t.height = &heightLinkIntermediateType{IRI: &v} +// SetHeightIRI sets the value of height to be of *url.URL type +func (t *Link) SetHeightIRI(v *url.URL) { + t.height = &heightLinkIntermediateType{IRI: v} } @@ -37745,14 +37746,14 @@ func (t *Link) IsWidthIRI() (ok bool) { } // GetWidthIRI returns the value safely if IsWidthIRI returned true -func (t *Link) GetWidthIRI() (v url.URL) { - return *t.width.IRI +func (t *Link) GetWidthIRI() (v *url.URL) { + return t.width.IRI } -// SetWidthIRI sets the value of width to be of url.URL type -func (t *Link) SetWidthIRI(v url.URL) { - t.width = &widthLinkIntermediateType{IRI: &v} +// SetWidthIRI sets the value of width to be of *url.URL type +func (t *Link) SetWidthIRI(v *url.URL) { + t.width = &widthLinkIntermediateType{IRI: v} } @@ -37856,20 +37857,20 @@ func (t *Link) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Link) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Link) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Link) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewLinkIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Link) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewLinkIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Link) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewLinkIntermediateType{&previewLinkIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Link) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewLinkIntermediateType{&previewLinkIntermediateType{IRI: v}}, t.preview...) } @@ -37964,7 +37965,7 @@ func (t *Link) Serialize() (m map[string]interface{}, err error) { if t.href != nil { hrefSerializeFunc := func() (interface{}, error) { v := t.href - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } hrefResult, err := hrefSerializeFunc() @@ -37979,7 +37980,7 @@ func (t *Link) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -38441,7 +38442,7 @@ func (t *attributedToLinkIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -38495,7 +38496,7 @@ func (t *relLinkIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -38549,7 +38550,7 @@ func (t *mediaTypeLinkIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -38617,7 +38618,7 @@ func (t *nameLinkIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -38685,7 +38686,7 @@ func (t *summaryLinkIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -38739,7 +38740,7 @@ func (t *hreflangLinkIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -38793,7 +38794,7 @@ func (t *heightLinkIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -38847,7 +38848,7 @@ func (t *widthLinkIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -38930,7 +38931,7 @@ func (t *previewLinkIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -39032,7 +39033,7 @@ type Activity struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesActivityIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameActivityIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -39130,20 +39131,20 @@ func (t *Activity) IsActorIRI(index int) (ok bool) { } // GetActorIRI returns the value safely if IsActorIRI returned true for the specified index -func (t *Activity) GetActorIRI(index int) (v url.URL) { - return *t.actor[index].IRI +func (t *Activity) GetActorIRI(index int) (v *url.URL) { + return t.actor[index].IRI } -// AppendActorIRI adds to the back of actor a url.URL type -func (t *Activity) AppendActorIRI(v url.URL) { - t.actor = append(t.actor, &actorActivityIntermediateType{IRI: &v}) +// AppendActorIRI adds to the back of actor a *url.URL type +func (t *Activity) AppendActorIRI(v *url.URL) { + t.actor = append(t.actor, &actorActivityIntermediateType{IRI: v}) } -// PrependActorIRI adds to the front of actor a url.URL type -func (t *Activity) PrependActorIRI(v url.URL) { - t.actor = append([]*actorActivityIntermediateType{&actorActivityIntermediateType{IRI: &v}}, t.actor...) +// PrependActorIRI adds to the front of actor a *url.URL type +func (t *Activity) PrependActorIRI(v *url.URL) { + t.actor = append([]*actorActivityIntermediateType{&actorActivityIntermediateType{IRI: v}}, t.actor...) } @@ -39223,20 +39224,20 @@ func (t *Activity) IsObjectIRI(index int) (ok bool) { } // GetObjectIRI returns the value safely if IsObjectIRI returned true for the specified index -func (t *Activity) GetObjectIRI(index int) (v url.URL) { - return *t.object[index].IRI +func (t *Activity) GetObjectIRI(index int) (v *url.URL) { + return t.object[index].IRI } -// AppendObjectIRI adds to the back of object a url.URL type -func (t *Activity) AppendObjectIRI(v url.URL) { - t.object = append(t.object, &objectActivityIntermediateType{IRI: &v}) +// AppendObjectIRI adds to the back of object a *url.URL type +func (t *Activity) AppendObjectIRI(v *url.URL) { + t.object = append(t.object, &objectActivityIntermediateType{IRI: v}) } -// PrependObjectIRI adds to the front of object a url.URL type -func (t *Activity) PrependObjectIRI(v url.URL) { - t.object = append([]*objectActivityIntermediateType{&objectActivityIntermediateType{IRI: &v}}, t.object...) +// PrependObjectIRI adds to the front of object a *url.URL type +func (t *Activity) PrependObjectIRI(v *url.URL) { + t.object = append([]*objectActivityIntermediateType{&objectActivityIntermediateType{IRI: v}}, t.object...) } @@ -39348,20 +39349,20 @@ func (t *Activity) IsTargetIRI(index int) (ok bool) { } // GetTargetIRI returns the value safely if IsTargetIRI returned true for the specified index -func (t *Activity) GetTargetIRI(index int) (v url.URL) { - return *t.target[index].IRI +func (t *Activity) GetTargetIRI(index int) (v *url.URL) { + return t.target[index].IRI } -// AppendTargetIRI adds to the back of target a url.URL type -func (t *Activity) AppendTargetIRI(v url.URL) { - t.target = append(t.target, &targetActivityIntermediateType{IRI: &v}) +// AppendTargetIRI adds to the back of target a *url.URL type +func (t *Activity) AppendTargetIRI(v *url.URL) { + t.target = append(t.target, &targetActivityIntermediateType{IRI: v}) } -// PrependTargetIRI adds to the front of target a url.URL type -func (t *Activity) PrependTargetIRI(v url.URL) { - t.target = append([]*targetActivityIntermediateType{&targetActivityIntermediateType{IRI: &v}}, t.target...) +// PrependTargetIRI adds to the front of target a *url.URL type +func (t *Activity) PrependTargetIRI(v *url.URL) { + t.target = append([]*targetActivityIntermediateType{&targetActivityIntermediateType{IRI: v}}, t.target...) } @@ -39473,20 +39474,20 @@ func (t *Activity) IsResultIRI(index int) (ok bool) { } // GetResultIRI returns the value safely if IsResultIRI returned true for the specified index -func (t *Activity) GetResultIRI(index int) (v url.URL) { - return *t.result[index].IRI +func (t *Activity) GetResultIRI(index int) (v *url.URL) { + return t.result[index].IRI } -// AppendResultIRI adds to the back of result a url.URL type -func (t *Activity) AppendResultIRI(v url.URL) { - t.result = append(t.result, &resultActivityIntermediateType{IRI: &v}) +// AppendResultIRI adds to the back of result a *url.URL type +func (t *Activity) AppendResultIRI(v *url.URL) { + t.result = append(t.result, &resultActivityIntermediateType{IRI: v}) } -// PrependResultIRI adds to the front of result a url.URL type -func (t *Activity) PrependResultIRI(v url.URL) { - t.result = append([]*resultActivityIntermediateType{&resultActivityIntermediateType{IRI: &v}}, t.result...) +// PrependResultIRI adds to the front of result a *url.URL type +func (t *Activity) PrependResultIRI(v *url.URL) { + t.result = append([]*resultActivityIntermediateType{&resultActivityIntermediateType{IRI: v}}, t.result...) } @@ -39598,20 +39599,20 @@ func (t *Activity) IsOriginIRI(index int) (ok bool) { } // GetOriginIRI returns the value safely if IsOriginIRI returned true for the specified index -func (t *Activity) GetOriginIRI(index int) (v url.URL) { - return *t.origin[index].IRI +func (t *Activity) GetOriginIRI(index int) (v *url.URL) { + return t.origin[index].IRI } -// AppendOriginIRI adds to the back of origin a url.URL type -func (t *Activity) AppendOriginIRI(v url.URL) { - t.origin = append(t.origin, &originActivityIntermediateType{IRI: &v}) +// AppendOriginIRI adds to the back of origin a *url.URL type +func (t *Activity) AppendOriginIRI(v *url.URL) { + t.origin = append(t.origin, &originActivityIntermediateType{IRI: v}) } -// PrependOriginIRI adds to the front of origin a url.URL type -func (t *Activity) PrependOriginIRI(v url.URL) { - t.origin = append([]*originActivityIntermediateType{&originActivityIntermediateType{IRI: &v}}, t.origin...) +// PrependOriginIRI adds to the front of origin a *url.URL type +func (t *Activity) PrependOriginIRI(v *url.URL) { + t.origin = append([]*originActivityIntermediateType{&originActivityIntermediateType{IRI: v}}, t.origin...) } @@ -39723,20 +39724,20 @@ func (t *Activity) IsInstrumentIRI(index int) (ok bool) { } // GetInstrumentIRI returns the value safely if IsInstrumentIRI returned true for the specified index -func (t *Activity) GetInstrumentIRI(index int) (v url.URL) { - return *t.instrument[index].IRI +func (t *Activity) GetInstrumentIRI(index int) (v *url.URL) { + return t.instrument[index].IRI } -// AppendInstrumentIRI adds to the back of instrument a url.URL type -func (t *Activity) AppendInstrumentIRI(v url.URL) { - t.instrument = append(t.instrument, &instrumentActivityIntermediateType{IRI: &v}) +// AppendInstrumentIRI adds to the back of instrument a *url.URL type +func (t *Activity) AppendInstrumentIRI(v *url.URL) { + t.instrument = append(t.instrument, &instrumentActivityIntermediateType{IRI: v}) } -// PrependInstrumentIRI adds to the front of instrument a url.URL type -func (t *Activity) PrependInstrumentIRI(v url.URL) { - t.instrument = append([]*instrumentActivityIntermediateType{&instrumentActivityIntermediateType{IRI: &v}}, t.instrument...) +// PrependInstrumentIRI adds to the front of instrument a *url.URL type +func (t *Activity) PrependInstrumentIRI(v *url.URL) { + t.instrument = append([]*instrumentActivityIntermediateType{&instrumentActivityIntermediateType{IRI: v}}, t.instrument...) } @@ -39796,14 +39797,14 @@ func (t *Activity) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Activity) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Activity) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Activity) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeActivityIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Activity) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeActivityIntermediateType{IRI: v} } @@ -39907,20 +39908,20 @@ func (t *Activity) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Activity) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Activity) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Activity) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentActivityIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Activity) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentActivityIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Activity) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentActivityIntermediateType{&attachmentActivityIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Activity) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentActivityIntermediateType{&attachmentActivityIntermediateType{IRI: v}}, t.attachment...) } @@ -40032,20 +40033,20 @@ func (t *Activity) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Activity) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Activity) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Activity) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToActivityIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Activity) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToActivityIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Activity) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToActivityIntermediateType{&attributedToActivityIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Activity) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToActivityIntermediateType{&attributedToActivityIntermediateType{IRI: v}}, t.attributedTo...) } @@ -40157,20 +40158,20 @@ func (t *Activity) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Activity) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Activity) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Activity) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceActivityIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Activity) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceActivityIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Activity) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceActivityIntermediateType{&audienceActivityIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Activity) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceActivityIntermediateType{&audienceActivityIntermediateType{IRI: v}}, t.audience...) } @@ -40282,20 +40283,20 @@ func (t *Activity) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Activity) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Activity) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Activity) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentActivityIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Activity) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentActivityIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Activity) PrependContentIRI(v url.URL) { - t.content = append([]*contentActivityIntermediateType{&contentActivityIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Activity) PrependContentIRI(v *url.URL) { + t.content = append([]*contentActivityIntermediateType{&contentActivityIntermediateType{IRI: v}}, t.content...) } @@ -40442,20 +40443,20 @@ func (t *Activity) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Activity) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Activity) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Activity) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextActivityIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Activity) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextActivityIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Activity) PrependContextIRI(v url.URL) { - t.context = append([]*contextActivityIntermediateType{&contextActivityIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Activity) PrependContextIRI(v *url.URL) { + t.context = append([]*contextActivityIntermediateType{&contextActivityIntermediateType{IRI: v}}, t.context...) } @@ -40567,20 +40568,20 @@ func (t *Activity) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Activity) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Activity) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Activity) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameActivityIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Activity) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameActivityIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Activity) PrependNameIRI(v url.URL) { - t.name = append([]*nameActivityIntermediateType{&nameActivityIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Activity) PrependNameIRI(v *url.URL) { + t.name = append([]*nameActivityIntermediateType{&nameActivityIntermediateType{IRI: v}}, t.name...) } @@ -40675,14 +40676,14 @@ func (t *Activity) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Activity) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Activity) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Activity) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeActivityIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Activity) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeActivityIntermediateType{IRI: v} } @@ -40786,20 +40787,20 @@ func (t *Activity) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Activity) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Activity) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Activity) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorActivityIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Activity) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorActivityIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Activity) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorActivityIntermediateType{&generatorActivityIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Activity) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorActivityIntermediateType{&generatorActivityIntermediateType{IRI: v}}, t.generator...) } @@ -40911,20 +40912,20 @@ func (t *Activity) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Activity) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Activity) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Activity) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconActivityIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Activity) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconActivityIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Activity) PrependIconIRI(v url.URL) { - t.icon = append([]*iconActivityIntermediateType{&iconActivityIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Activity) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconActivityIntermediateType{&iconActivityIntermediateType{IRI: v}}, t.icon...) } @@ -40966,14 +40967,14 @@ func (t *Activity) HasId() (ok bool) { } // GetId returns the value for id -func (t *Activity) GetId() (v url.URL) { - return *t.id +func (t *Activity) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Activity) SetId(v url.URL) { - t.id = &v +func (t *Activity) SetId(v *url.URL) { + t.id = v } @@ -41075,20 +41076,20 @@ func (t *Activity) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Activity) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Activity) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Activity) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageActivityIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Activity) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageActivityIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Activity) PrependImageIRI(v url.URL) { - t.image = append([]*imageActivityIntermediateType{&imageActivityIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Activity) PrependImageIRI(v *url.URL) { + t.image = append([]*imageActivityIntermediateType{&imageActivityIntermediateType{IRI: v}}, t.image...) } @@ -41200,20 +41201,20 @@ func (t *Activity) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Activity) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Activity) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Activity) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToActivityIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Activity) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToActivityIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Activity) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToActivityIntermediateType{&inReplyToActivityIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Activity) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToActivityIntermediateType{&inReplyToActivityIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -41325,20 +41326,20 @@ func (t *Activity) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Activity) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Activity) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Activity) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationActivityIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Activity) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationActivityIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Activity) PrependLocationIRI(v url.URL) { - t.location = append([]*locationActivityIntermediateType{&locationActivityIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Activity) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationActivityIntermediateType{&locationActivityIntermediateType{IRI: v}}, t.location...) } @@ -41450,20 +41451,20 @@ func (t *Activity) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Activity) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Activity) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Activity) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewActivityIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Activity) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewActivityIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Activity) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewActivityIntermediateType{&previewActivityIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Activity) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewActivityIntermediateType{&previewActivityIntermediateType{IRI: v}}, t.preview...) } @@ -41523,14 +41524,14 @@ func (t *Activity) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Activity) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Activity) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Activity) SetPublishedIRI(v url.URL) { - t.published = &publishedActivityIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Activity) SetPublishedIRI(v *url.URL) { + t.published = &publishedActivityIntermediateType{IRI: v} } @@ -41582,14 +41583,14 @@ func (t *Activity) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Activity) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Activity) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Activity) SetRepliesIRI(v url.URL) { - t.replies = &repliesActivityIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Activity) SetRepliesIRI(v *url.URL) { + t.replies = &repliesActivityIntermediateType{IRI: v} } @@ -41641,14 +41642,14 @@ func (t *Activity) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Activity) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Activity) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Activity) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeActivityIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Activity) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeActivityIntermediateType{IRI: v} } @@ -41752,20 +41753,20 @@ func (t *Activity) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Activity) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Activity) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Activity) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryActivityIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Activity) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryActivityIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Activity) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryActivityIntermediateType{&summaryActivityIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Activity) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryActivityIntermediateType{&summaryActivityIntermediateType{IRI: v}}, t.summary...) } @@ -41912,20 +41913,20 @@ func (t *Activity) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Activity) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Activity) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Activity) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagActivityIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Activity) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagActivityIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Activity) PrependTagIRI(v url.URL) { - t.tag = append([]*tagActivityIntermediateType{&tagActivityIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Activity) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagActivityIntermediateType{&tagActivityIntermediateType{IRI: v}}, t.tag...) } @@ -42017,14 +42018,14 @@ func (t *Activity) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Activity) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Activity) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Activity) SetUpdatedIRI(v url.URL) { - t.updated = &updatedActivityIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Activity) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedActivityIntermediateType{IRI: v} } @@ -42064,20 +42065,20 @@ func (t *Activity) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Activity) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Activity) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Activity) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlActivityIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Activity) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlActivityIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Activity) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlActivityIntermediateType{&urlActivityIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Activity) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlActivityIntermediateType{&urlActivityIntermediateType{anyURI: v}}, t.url...) } @@ -42221,20 +42222,20 @@ func (t *Activity) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Activity) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Activity) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Activity) AppendToIRI(v url.URL) { - t.to = append(t.to, &toActivityIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Activity) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toActivityIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Activity) PrependToIRI(v url.URL) { - t.to = append([]*toActivityIntermediateType{&toActivityIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Activity) PrependToIRI(v *url.URL) { + t.to = append([]*toActivityIntermediateType{&toActivityIntermediateType{IRI: v}}, t.to...) } @@ -42346,20 +42347,20 @@ func (t *Activity) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Activity) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Activity) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Activity) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoActivityIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Activity) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoActivityIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Activity) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoActivityIntermediateType{&btoActivityIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Activity) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoActivityIntermediateType{&btoActivityIntermediateType{IRI: v}}, t.bto...) } @@ -42471,20 +42472,20 @@ func (t *Activity) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Activity) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Activity) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Activity) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccActivityIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Activity) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccActivityIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Activity) PrependCcIRI(v url.URL) { - t.cc = append([]*ccActivityIntermediateType{&ccActivityIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Activity) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccActivityIntermediateType{&ccActivityIntermediateType{IRI: v}}, t.cc...) } @@ -42596,20 +42597,20 @@ func (t *Activity) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Activity) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Activity) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Activity) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccActivityIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Activity) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccActivityIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Activity) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccActivityIntermediateType{&bccActivityIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Activity) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccActivityIntermediateType{&bccActivityIntermediateType{IRI: v}}, t.bcc...) } @@ -42669,14 +42670,14 @@ func (t *Activity) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Activity) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Activity) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Activity) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeActivityIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Activity) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeActivityIntermediateType{IRI: v} } @@ -42728,14 +42729,14 @@ func (t *Activity) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Activity) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Activity) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Activity) SetDurationIRI(v url.URL) { - t.duration = &durationActivityIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Activity) SetDurationIRI(v *url.URL) { + t.duration = &durationActivityIntermediateType{IRI: v} } @@ -42787,14 +42788,14 @@ func (t *Activity) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Activity) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Activity) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Activity) SetSourceIRI(v url.URL) { - t.source = &sourceActivityIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Activity) SetSourceIRI(v *url.URL) { + t.source = &sourceActivityIntermediateType{IRI: v} } @@ -42846,14 +42847,14 @@ func (t *Activity) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Activity) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Activity) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Activity) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxActivityIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Activity) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxActivityIntermediateType{anyURI: v} } @@ -42905,14 +42906,14 @@ func (t *Activity) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Activity) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Activity) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Activity) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxActivityIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Activity) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxActivityIntermediateType{anyURI: v} } @@ -42982,14 +42983,14 @@ func (t *Activity) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Activity) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Activity) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Activity) SetFollowingAnyURI(v url.URL) { - t.following = &followingActivityIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Activity) SetFollowingAnyURI(v *url.URL) { + t.following = &followingActivityIntermediateType{anyURI: v} } @@ -43059,14 +43060,14 @@ func (t *Activity) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Activity) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Activity) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Activity) SetFollowersAnyURI(v url.URL) { - t.followers = &followersActivityIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Activity) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersActivityIntermediateType{anyURI: v} } @@ -43136,14 +43137,14 @@ func (t *Activity) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Activity) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Activity) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Activity) SetLikedAnyURI(v url.URL) { - t.liked = &likedActivityIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Activity) SetLikedAnyURI(v *url.URL) { + t.liked = &likedActivityIntermediateType{anyURI: v} } @@ -43213,14 +43214,14 @@ func (t *Activity) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Activity) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Activity) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Activity) SetLikesAnyURI(v url.URL) { - t.likes = &likesActivityIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Activity) SetLikesAnyURI(v *url.URL) { + t.likes = &likesActivityIntermediateType{anyURI: v} } @@ -43254,26 +43255,27 @@ func (t *Activity) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Activity) GetStreams(index int) (v url.URL) { +func (t *Activity) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Activity) AppendStreams(v url.URL) { +func (t *Activity) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Activity) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Activity) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Activity) 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] } @@ -43324,14 +43326,14 @@ func (t *Activity) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Activity) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Activity) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Activity) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameActivityIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Activity) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameActivityIntermediateType{IRI: v} } @@ -43418,14 +43420,14 @@ func (t *Activity) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Activity) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Activity) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Activity) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsActivityIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Activity) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsActivityIntermediateType{IRI: v} } @@ -43459,14 +43461,14 @@ func (t *Activity) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Activity) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Activity) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Activity) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Activity) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -43498,14 +43500,14 @@ func (t *Activity) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Activity) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Activity) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Activity) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Activity) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -43537,14 +43539,14 @@ func (t *Activity) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Activity) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Activity) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Activity) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Activity) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -43576,14 +43578,14 @@ func (t *Activity) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Activity) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Activity) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Activity) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Activity) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -43615,14 +43617,14 @@ func (t *Activity) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Activity) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Activity) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Activity) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Activity) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -43654,14 +43656,14 @@ func (t *Activity) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Activity) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Activity) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Activity) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Activity) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -43919,7 +43921,7 @@ func (t *Activity) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -44225,7 +44227,7 @@ func (t *Activity) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -44240,7 +44242,7 @@ func (t *Activity) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -44255,7 +44257,7 @@ func (t *Activity) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -44270,7 +44272,7 @@ func (t *Activity) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -44285,7 +44287,7 @@ func (t *Activity) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -44300,7 +44302,7 @@ func (t *Activity) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -45266,7 +45268,7 @@ func (t *Activity) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -45275,7 +45277,7 @@ func (t *Activity) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -45489,7 +45491,7 @@ func (t *actorActivityIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -45557,7 +45559,7 @@ func (t *objectActivityIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -45640,7 +45642,7 @@ func (t *targetActivityIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -45723,7 +45725,7 @@ func (t *resultActivityIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -45806,7 +45808,7 @@ func (t *originActivityIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -45889,7 +45891,7 @@ func (t *instrumentActivityIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -45943,7 +45945,7 @@ func (t *altitudeActivityIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -46026,7 +46028,7 @@ func (t *attachmentActivityIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -46109,7 +46111,7 @@ func (t *attributedToActivityIntermediateType) Serialize() (i interface{}, err e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -46192,7 +46194,7 @@ func (t *audienceActivityIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -46260,7 +46262,7 @@ func (t *contentActivityIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -46343,7 +46345,7 @@ func (t *contextActivityIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -46411,7 +46413,7 @@ func (t *nameActivityIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -46465,7 +46467,7 @@ func (t *endTimeActivityIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -46548,7 +46550,7 @@ func (t *generatorActivityIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -46631,7 +46633,7 @@ func (t *iconActivityIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -46714,7 +46716,7 @@ func (t *imageActivityIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -46797,7 +46799,7 @@ func (t *inReplyToActivityIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -46880,7 +46882,7 @@ func (t *locationActivityIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -46963,7 +46965,7 @@ func (t *previewActivityIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -47017,7 +47019,7 @@ func (t *publishedActivityIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -47085,7 +47087,7 @@ func (t *repliesActivityIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -47139,7 +47141,7 @@ func (t *startTimeActivityIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -47207,7 +47209,7 @@ func (t *summaryActivityIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -47290,7 +47292,7 @@ func (t *tagActivityIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -47344,7 +47346,7 @@ func (t *updatedActivityIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -47408,7 +47410,7 @@ func (t *urlActivityIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlActivityIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -47495,7 +47497,7 @@ func (t *toActivityIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -47578,7 +47580,7 @@ func (t *btoActivityIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -47661,7 +47663,7 @@ func (t *ccActivityIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -47744,7 +47746,7 @@ func (t *bccActivityIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -47798,7 +47800,7 @@ func (t *mediaTypeActivityIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -47852,7 +47854,7 @@ func (t *durationActivityIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -47920,7 +47922,7 @@ func (t *sourceActivityIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -47988,7 +47990,7 @@ func (t *inboxActivityIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -48056,7 +48058,7 @@ func (t *outboxActivityIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -48139,7 +48141,7 @@ func (t *followingActivityIntermediateType) Serialize() (i interface{}, err erro return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -48222,7 +48224,7 @@ func (t *followersActivityIntermediateType) Serialize() (i interface{}, err erro return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -48305,7 +48307,7 @@ func (t *likedActivityIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -48388,7 +48390,7 @@ func (t *likesActivityIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -48442,7 +48444,7 @@ func (t *preferredUsernameActivityIntermediateType) Serialize() (i interface{}, return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -48510,7 +48512,7 @@ func (t *endpointsActivityIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -48610,7 +48612,7 @@ type IntransitiveActivity struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesIntransitiveActivityIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameIntransitiveActivityIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -48708,20 +48710,20 @@ func (t *IntransitiveActivity) IsActorIRI(index int) (ok bool) { } // GetActorIRI returns the value safely if IsActorIRI returned true for the specified index -func (t *IntransitiveActivity) GetActorIRI(index int) (v url.URL) { - return *t.actor[index].IRI +func (t *IntransitiveActivity) GetActorIRI(index int) (v *url.URL) { + return t.actor[index].IRI } -// AppendActorIRI adds to the back of actor a url.URL type -func (t *IntransitiveActivity) AppendActorIRI(v url.URL) { - t.actor = append(t.actor, &actorIntransitiveActivityIntermediateType{IRI: &v}) +// AppendActorIRI adds to the back of actor a *url.URL type +func (t *IntransitiveActivity) AppendActorIRI(v *url.URL) { + t.actor = append(t.actor, &actorIntransitiveActivityIntermediateType{IRI: v}) } -// PrependActorIRI adds to the front of actor a url.URL type -func (t *IntransitiveActivity) PrependActorIRI(v url.URL) { - t.actor = append([]*actorIntransitiveActivityIntermediateType{&actorIntransitiveActivityIntermediateType{IRI: &v}}, t.actor...) +// PrependActorIRI adds to the front of actor a *url.URL type +func (t *IntransitiveActivity) PrependActorIRI(v *url.URL) { + t.actor = append([]*actorIntransitiveActivityIntermediateType{&actorIntransitiveActivityIntermediateType{IRI: v}}, t.actor...) } @@ -48833,20 +48835,20 @@ func (t *IntransitiveActivity) IsTargetIRI(index int) (ok bool) { } // GetTargetIRI returns the value safely if IsTargetIRI returned true for the specified index -func (t *IntransitiveActivity) GetTargetIRI(index int) (v url.URL) { - return *t.target[index].IRI +func (t *IntransitiveActivity) GetTargetIRI(index int) (v *url.URL) { + return t.target[index].IRI } -// AppendTargetIRI adds to the back of target a url.URL type -func (t *IntransitiveActivity) AppendTargetIRI(v url.URL) { - t.target = append(t.target, &targetIntransitiveActivityIntermediateType{IRI: &v}) +// AppendTargetIRI adds to the back of target a *url.URL type +func (t *IntransitiveActivity) AppendTargetIRI(v *url.URL) { + t.target = append(t.target, &targetIntransitiveActivityIntermediateType{IRI: v}) } -// PrependTargetIRI adds to the front of target a url.URL type -func (t *IntransitiveActivity) PrependTargetIRI(v url.URL) { - t.target = append([]*targetIntransitiveActivityIntermediateType{&targetIntransitiveActivityIntermediateType{IRI: &v}}, t.target...) +// PrependTargetIRI adds to the front of target a *url.URL type +func (t *IntransitiveActivity) PrependTargetIRI(v *url.URL) { + t.target = append([]*targetIntransitiveActivityIntermediateType{&targetIntransitiveActivityIntermediateType{IRI: v}}, t.target...) } @@ -48958,20 +48960,20 @@ func (t *IntransitiveActivity) IsResultIRI(index int) (ok bool) { } // GetResultIRI returns the value safely if IsResultIRI returned true for the specified index -func (t *IntransitiveActivity) GetResultIRI(index int) (v url.URL) { - return *t.result[index].IRI +func (t *IntransitiveActivity) GetResultIRI(index int) (v *url.URL) { + return t.result[index].IRI } -// AppendResultIRI adds to the back of result a url.URL type -func (t *IntransitiveActivity) AppendResultIRI(v url.URL) { - t.result = append(t.result, &resultIntransitiveActivityIntermediateType{IRI: &v}) +// AppendResultIRI adds to the back of result a *url.URL type +func (t *IntransitiveActivity) AppendResultIRI(v *url.URL) { + t.result = append(t.result, &resultIntransitiveActivityIntermediateType{IRI: v}) } -// PrependResultIRI adds to the front of result a url.URL type -func (t *IntransitiveActivity) PrependResultIRI(v url.URL) { - t.result = append([]*resultIntransitiveActivityIntermediateType{&resultIntransitiveActivityIntermediateType{IRI: &v}}, t.result...) +// PrependResultIRI adds to the front of result a *url.URL type +func (t *IntransitiveActivity) PrependResultIRI(v *url.URL) { + t.result = append([]*resultIntransitiveActivityIntermediateType{&resultIntransitiveActivityIntermediateType{IRI: v}}, t.result...) } @@ -49083,20 +49085,20 @@ func (t *IntransitiveActivity) IsOriginIRI(index int) (ok bool) { } // GetOriginIRI returns the value safely if IsOriginIRI returned true for the specified index -func (t *IntransitiveActivity) GetOriginIRI(index int) (v url.URL) { - return *t.origin[index].IRI +func (t *IntransitiveActivity) GetOriginIRI(index int) (v *url.URL) { + return t.origin[index].IRI } -// AppendOriginIRI adds to the back of origin a url.URL type -func (t *IntransitiveActivity) AppendOriginIRI(v url.URL) { - t.origin = append(t.origin, &originIntransitiveActivityIntermediateType{IRI: &v}) +// AppendOriginIRI adds to the back of origin a *url.URL type +func (t *IntransitiveActivity) AppendOriginIRI(v *url.URL) { + t.origin = append(t.origin, &originIntransitiveActivityIntermediateType{IRI: v}) } -// PrependOriginIRI adds to the front of origin a url.URL type -func (t *IntransitiveActivity) PrependOriginIRI(v url.URL) { - t.origin = append([]*originIntransitiveActivityIntermediateType{&originIntransitiveActivityIntermediateType{IRI: &v}}, t.origin...) +// PrependOriginIRI adds to the front of origin a *url.URL type +func (t *IntransitiveActivity) PrependOriginIRI(v *url.URL) { + t.origin = append([]*originIntransitiveActivityIntermediateType{&originIntransitiveActivityIntermediateType{IRI: v}}, t.origin...) } @@ -49208,20 +49210,20 @@ func (t *IntransitiveActivity) IsInstrumentIRI(index int) (ok bool) { } // GetInstrumentIRI returns the value safely if IsInstrumentIRI returned true for the specified index -func (t *IntransitiveActivity) GetInstrumentIRI(index int) (v url.URL) { - return *t.instrument[index].IRI +func (t *IntransitiveActivity) GetInstrumentIRI(index int) (v *url.URL) { + return t.instrument[index].IRI } -// AppendInstrumentIRI adds to the back of instrument a url.URL type -func (t *IntransitiveActivity) AppendInstrumentIRI(v url.URL) { - t.instrument = append(t.instrument, &instrumentIntransitiveActivityIntermediateType{IRI: &v}) +// AppendInstrumentIRI adds to the back of instrument a *url.URL type +func (t *IntransitiveActivity) AppendInstrumentIRI(v *url.URL) { + t.instrument = append(t.instrument, &instrumentIntransitiveActivityIntermediateType{IRI: v}) } -// PrependInstrumentIRI adds to the front of instrument a url.URL type -func (t *IntransitiveActivity) PrependInstrumentIRI(v url.URL) { - t.instrument = append([]*instrumentIntransitiveActivityIntermediateType{&instrumentIntransitiveActivityIntermediateType{IRI: &v}}, t.instrument...) +// PrependInstrumentIRI adds to the front of instrument a *url.URL type +func (t *IntransitiveActivity) PrependInstrumentIRI(v *url.URL) { + t.instrument = append([]*instrumentIntransitiveActivityIntermediateType{&instrumentIntransitiveActivityIntermediateType{IRI: v}}, t.instrument...) } @@ -49281,14 +49283,14 @@ func (t *IntransitiveActivity) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *IntransitiveActivity) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *IntransitiveActivity) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *IntransitiveActivity) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeIntransitiveActivityIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *IntransitiveActivity) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeIntransitiveActivityIntermediateType{IRI: v} } @@ -49392,20 +49394,20 @@ func (t *IntransitiveActivity) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *IntransitiveActivity) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *IntransitiveActivity) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *IntransitiveActivity) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentIntransitiveActivityIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *IntransitiveActivity) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentIntransitiveActivityIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *IntransitiveActivity) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentIntransitiveActivityIntermediateType{&attachmentIntransitiveActivityIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *IntransitiveActivity) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentIntransitiveActivityIntermediateType{&attachmentIntransitiveActivityIntermediateType{IRI: v}}, t.attachment...) } @@ -49517,20 +49519,20 @@ func (t *IntransitiveActivity) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *IntransitiveActivity) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *IntransitiveActivity) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *IntransitiveActivity) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToIntransitiveActivityIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *IntransitiveActivity) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToIntransitiveActivityIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *IntransitiveActivity) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToIntransitiveActivityIntermediateType{&attributedToIntransitiveActivityIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *IntransitiveActivity) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToIntransitiveActivityIntermediateType{&attributedToIntransitiveActivityIntermediateType{IRI: v}}, t.attributedTo...) } @@ -49642,20 +49644,20 @@ func (t *IntransitiveActivity) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *IntransitiveActivity) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *IntransitiveActivity) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *IntransitiveActivity) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceIntransitiveActivityIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *IntransitiveActivity) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceIntransitiveActivityIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *IntransitiveActivity) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceIntransitiveActivityIntermediateType{&audienceIntransitiveActivityIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *IntransitiveActivity) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceIntransitiveActivityIntermediateType{&audienceIntransitiveActivityIntermediateType{IRI: v}}, t.audience...) } @@ -49767,20 +49769,20 @@ func (t *IntransitiveActivity) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *IntransitiveActivity) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *IntransitiveActivity) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *IntransitiveActivity) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentIntransitiveActivityIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *IntransitiveActivity) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentIntransitiveActivityIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *IntransitiveActivity) PrependContentIRI(v url.URL) { - t.content = append([]*contentIntransitiveActivityIntermediateType{&contentIntransitiveActivityIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *IntransitiveActivity) PrependContentIRI(v *url.URL) { + t.content = append([]*contentIntransitiveActivityIntermediateType{&contentIntransitiveActivityIntermediateType{IRI: v}}, t.content...) } @@ -49927,20 +49929,20 @@ func (t *IntransitiveActivity) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *IntransitiveActivity) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *IntransitiveActivity) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *IntransitiveActivity) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextIntransitiveActivityIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *IntransitiveActivity) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextIntransitiveActivityIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *IntransitiveActivity) PrependContextIRI(v url.URL) { - t.context = append([]*contextIntransitiveActivityIntermediateType{&contextIntransitiveActivityIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *IntransitiveActivity) PrependContextIRI(v *url.URL) { + t.context = append([]*contextIntransitiveActivityIntermediateType{&contextIntransitiveActivityIntermediateType{IRI: v}}, t.context...) } @@ -50052,20 +50054,20 @@ func (t *IntransitiveActivity) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *IntransitiveActivity) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *IntransitiveActivity) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *IntransitiveActivity) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameIntransitiveActivityIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *IntransitiveActivity) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameIntransitiveActivityIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *IntransitiveActivity) PrependNameIRI(v url.URL) { - t.name = append([]*nameIntransitiveActivityIntermediateType{&nameIntransitiveActivityIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *IntransitiveActivity) PrependNameIRI(v *url.URL) { + t.name = append([]*nameIntransitiveActivityIntermediateType{&nameIntransitiveActivityIntermediateType{IRI: v}}, t.name...) } @@ -50160,14 +50162,14 @@ func (t *IntransitiveActivity) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *IntransitiveActivity) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *IntransitiveActivity) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *IntransitiveActivity) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeIntransitiveActivityIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *IntransitiveActivity) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeIntransitiveActivityIntermediateType{IRI: v} } @@ -50271,20 +50273,20 @@ func (t *IntransitiveActivity) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *IntransitiveActivity) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *IntransitiveActivity) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *IntransitiveActivity) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorIntransitiveActivityIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *IntransitiveActivity) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorIntransitiveActivityIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *IntransitiveActivity) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorIntransitiveActivityIntermediateType{&generatorIntransitiveActivityIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *IntransitiveActivity) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorIntransitiveActivityIntermediateType{&generatorIntransitiveActivityIntermediateType{IRI: v}}, t.generator...) } @@ -50396,20 +50398,20 @@ func (t *IntransitiveActivity) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *IntransitiveActivity) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *IntransitiveActivity) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *IntransitiveActivity) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconIntransitiveActivityIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *IntransitiveActivity) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconIntransitiveActivityIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *IntransitiveActivity) PrependIconIRI(v url.URL) { - t.icon = append([]*iconIntransitiveActivityIntermediateType{&iconIntransitiveActivityIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *IntransitiveActivity) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconIntransitiveActivityIntermediateType{&iconIntransitiveActivityIntermediateType{IRI: v}}, t.icon...) } @@ -50451,14 +50453,14 @@ func (t *IntransitiveActivity) HasId() (ok bool) { } // GetId returns the value for id -func (t *IntransitiveActivity) GetId() (v url.URL) { - return *t.id +func (t *IntransitiveActivity) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *IntransitiveActivity) SetId(v url.URL) { - t.id = &v +func (t *IntransitiveActivity) SetId(v *url.URL) { + t.id = v } @@ -50560,20 +50562,20 @@ func (t *IntransitiveActivity) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *IntransitiveActivity) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *IntransitiveActivity) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *IntransitiveActivity) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageIntransitiveActivityIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *IntransitiveActivity) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageIntransitiveActivityIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *IntransitiveActivity) PrependImageIRI(v url.URL) { - t.image = append([]*imageIntransitiveActivityIntermediateType{&imageIntransitiveActivityIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *IntransitiveActivity) PrependImageIRI(v *url.URL) { + t.image = append([]*imageIntransitiveActivityIntermediateType{&imageIntransitiveActivityIntermediateType{IRI: v}}, t.image...) } @@ -50685,20 +50687,20 @@ func (t *IntransitiveActivity) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *IntransitiveActivity) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *IntransitiveActivity) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *IntransitiveActivity) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToIntransitiveActivityIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *IntransitiveActivity) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToIntransitiveActivityIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *IntransitiveActivity) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToIntransitiveActivityIntermediateType{&inReplyToIntransitiveActivityIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *IntransitiveActivity) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToIntransitiveActivityIntermediateType{&inReplyToIntransitiveActivityIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -50810,20 +50812,20 @@ func (t *IntransitiveActivity) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *IntransitiveActivity) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *IntransitiveActivity) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *IntransitiveActivity) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationIntransitiveActivityIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *IntransitiveActivity) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationIntransitiveActivityIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *IntransitiveActivity) PrependLocationIRI(v url.URL) { - t.location = append([]*locationIntransitiveActivityIntermediateType{&locationIntransitiveActivityIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *IntransitiveActivity) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationIntransitiveActivityIntermediateType{&locationIntransitiveActivityIntermediateType{IRI: v}}, t.location...) } @@ -50935,20 +50937,20 @@ func (t *IntransitiveActivity) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *IntransitiveActivity) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *IntransitiveActivity) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *IntransitiveActivity) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewIntransitiveActivityIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *IntransitiveActivity) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewIntransitiveActivityIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *IntransitiveActivity) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewIntransitiveActivityIntermediateType{&previewIntransitiveActivityIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *IntransitiveActivity) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewIntransitiveActivityIntermediateType{&previewIntransitiveActivityIntermediateType{IRI: v}}, t.preview...) } @@ -51008,14 +51010,14 @@ func (t *IntransitiveActivity) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *IntransitiveActivity) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *IntransitiveActivity) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *IntransitiveActivity) SetPublishedIRI(v url.URL) { - t.published = &publishedIntransitiveActivityIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *IntransitiveActivity) SetPublishedIRI(v *url.URL) { + t.published = &publishedIntransitiveActivityIntermediateType{IRI: v} } @@ -51067,14 +51069,14 @@ func (t *IntransitiveActivity) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *IntransitiveActivity) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *IntransitiveActivity) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *IntransitiveActivity) SetRepliesIRI(v url.URL) { - t.replies = &repliesIntransitiveActivityIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *IntransitiveActivity) SetRepliesIRI(v *url.URL) { + t.replies = &repliesIntransitiveActivityIntermediateType{IRI: v} } @@ -51126,14 +51128,14 @@ func (t *IntransitiveActivity) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *IntransitiveActivity) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *IntransitiveActivity) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *IntransitiveActivity) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeIntransitiveActivityIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *IntransitiveActivity) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeIntransitiveActivityIntermediateType{IRI: v} } @@ -51237,20 +51239,20 @@ func (t *IntransitiveActivity) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *IntransitiveActivity) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *IntransitiveActivity) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *IntransitiveActivity) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryIntransitiveActivityIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *IntransitiveActivity) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryIntransitiveActivityIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *IntransitiveActivity) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryIntransitiveActivityIntermediateType{&summaryIntransitiveActivityIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *IntransitiveActivity) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryIntransitiveActivityIntermediateType{&summaryIntransitiveActivityIntermediateType{IRI: v}}, t.summary...) } @@ -51397,20 +51399,20 @@ func (t *IntransitiveActivity) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *IntransitiveActivity) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *IntransitiveActivity) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *IntransitiveActivity) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagIntransitiveActivityIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *IntransitiveActivity) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagIntransitiveActivityIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *IntransitiveActivity) PrependTagIRI(v url.URL) { - t.tag = append([]*tagIntransitiveActivityIntermediateType{&tagIntransitiveActivityIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *IntransitiveActivity) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagIntransitiveActivityIntermediateType{&tagIntransitiveActivityIntermediateType{IRI: v}}, t.tag...) } @@ -51502,14 +51504,14 @@ func (t *IntransitiveActivity) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *IntransitiveActivity) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *IntransitiveActivity) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *IntransitiveActivity) SetUpdatedIRI(v url.URL) { - t.updated = &updatedIntransitiveActivityIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *IntransitiveActivity) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedIntransitiveActivityIntermediateType{IRI: v} } @@ -51549,20 +51551,20 @@ func (t *IntransitiveActivity) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *IntransitiveActivity) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *IntransitiveActivity) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *IntransitiveActivity) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlIntransitiveActivityIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *IntransitiveActivity) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlIntransitiveActivityIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *IntransitiveActivity) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlIntransitiveActivityIntermediateType{&urlIntransitiveActivityIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *IntransitiveActivity) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlIntransitiveActivityIntermediateType{&urlIntransitiveActivityIntermediateType{anyURI: v}}, t.url...) } @@ -51706,20 +51708,20 @@ func (t *IntransitiveActivity) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *IntransitiveActivity) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *IntransitiveActivity) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *IntransitiveActivity) AppendToIRI(v url.URL) { - t.to = append(t.to, &toIntransitiveActivityIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *IntransitiveActivity) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toIntransitiveActivityIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *IntransitiveActivity) PrependToIRI(v url.URL) { - t.to = append([]*toIntransitiveActivityIntermediateType{&toIntransitiveActivityIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *IntransitiveActivity) PrependToIRI(v *url.URL) { + t.to = append([]*toIntransitiveActivityIntermediateType{&toIntransitiveActivityIntermediateType{IRI: v}}, t.to...) } @@ -51831,20 +51833,20 @@ func (t *IntransitiveActivity) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *IntransitiveActivity) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *IntransitiveActivity) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *IntransitiveActivity) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoIntransitiveActivityIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *IntransitiveActivity) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoIntransitiveActivityIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *IntransitiveActivity) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoIntransitiveActivityIntermediateType{&btoIntransitiveActivityIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *IntransitiveActivity) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoIntransitiveActivityIntermediateType{&btoIntransitiveActivityIntermediateType{IRI: v}}, t.bto...) } @@ -51956,20 +51958,20 @@ func (t *IntransitiveActivity) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *IntransitiveActivity) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *IntransitiveActivity) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *IntransitiveActivity) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccIntransitiveActivityIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *IntransitiveActivity) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccIntransitiveActivityIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *IntransitiveActivity) PrependCcIRI(v url.URL) { - t.cc = append([]*ccIntransitiveActivityIntermediateType{&ccIntransitiveActivityIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *IntransitiveActivity) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccIntransitiveActivityIntermediateType{&ccIntransitiveActivityIntermediateType{IRI: v}}, t.cc...) } @@ -52081,20 +52083,20 @@ func (t *IntransitiveActivity) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *IntransitiveActivity) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *IntransitiveActivity) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *IntransitiveActivity) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccIntransitiveActivityIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *IntransitiveActivity) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccIntransitiveActivityIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *IntransitiveActivity) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccIntransitiveActivityIntermediateType{&bccIntransitiveActivityIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *IntransitiveActivity) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccIntransitiveActivityIntermediateType{&bccIntransitiveActivityIntermediateType{IRI: v}}, t.bcc...) } @@ -52154,14 +52156,14 @@ func (t *IntransitiveActivity) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *IntransitiveActivity) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *IntransitiveActivity) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *IntransitiveActivity) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeIntransitiveActivityIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *IntransitiveActivity) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeIntransitiveActivityIntermediateType{IRI: v} } @@ -52213,14 +52215,14 @@ func (t *IntransitiveActivity) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *IntransitiveActivity) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *IntransitiveActivity) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *IntransitiveActivity) SetDurationIRI(v url.URL) { - t.duration = &durationIntransitiveActivityIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *IntransitiveActivity) SetDurationIRI(v *url.URL) { + t.duration = &durationIntransitiveActivityIntermediateType{IRI: v} } @@ -52272,14 +52274,14 @@ func (t *IntransitiveActivity) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *IntransitiveActivity) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *IntransitiveActivity) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *IntransitiveActivity) SetSourceIRI(v url.URL) { - t.source = &sourceIntransitiveActivityIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *IntransitiveActivity) SetSourceIRI(v *url.URL) { + t.source = &sourceIntransitiveActivityIntermediateType{IRI: v} } @@ -52331,14 +52333,14 @@ func (t *IntransitiveActivity) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *IntransitiveActivity) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *IntransitiveActivity) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *IntransitiveActivity) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxIntransitiveActivityIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *IntransitiveActivity) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxIntransitiveActivityIntermediateType{anyURI: v} } @@ -52390,14 +52392,14 @@ func (t *IntransitiveActivity) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *IntransitiveActivity) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *IntransitiveActivity) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *IntransitiveActivity) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxIntransitiveActivityIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *IntransitiveActivity) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxIntransitiveActivityIntermediateType{anyURI: v} } @@ -52467,14 +52469,14 @@ func (t *IntransitiveActivity) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *IntransitiveActivity) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *IntransitiveActivity) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *IntransitiveActivity) SetFollowingAnyURI(v url.URL) { - t.following = &followingIntransitiveActivityIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *IntransitiveActivity) SetFollowingAnyURI(v *url.URL) { + t.following = &followingIntransitiveActivityIntermediateType{anyURI: v} } @@ -52544,14 +52546,14 @@ func (t *IntransitiveActivity) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *IntransitiveActivity) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *IntransitiveActivity) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *IntransitiveActivity) SetFollowersAnyURI(v url.URL) { - t.followers = &followersIntransitiveActivityIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *IntransitiveActivity) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersIntransitiveActivityIntermediateType{anyURI: v} } @@ -52621,14 +52623,14 @@ func (t *IntransitiveActivity) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *IntransitiveActivity) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *IntransitiveActivity) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *IntransitiveActivity) SetLikedAnyURI(v url.URL) { - t.liked = &likedIntransitiveActivityIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *IntransitiveActivity) SetLikedAnyURI(v *url.URL) { + t.liked = &likedIntransitiveActivityIntermediateType{anyURI: v} } @@ -52698,14 +52700,14 @@ func (t *IntransitiveActivity) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *IntransitiveActivity) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *IntransitiveActivity) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *IntransitiveActivity) SetLikesAnyURI(v url.URL) { - t.likes = &likesIntransitiveActivityIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *IntransitiveActivity) SetLikesAnyURI(v *url.URL) { + t.likes = &likesIntransitiveActivityIntermediateType{anyURI: v} } @@ -52739,26 +52741,27 @@ func (t *IntransitiveActivity) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *IntransitiveActivity) GetStreams(index int) (v url.URL) { +func (t *IntransitiveActivity) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *IntransitiveActivity) AppendStreams(v url.URL) { +func (t *IntransitiveActivity) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *IntransitiveActivity) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *IntransitiveActivity) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *IntransitiveActivity) 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] } @@ -52809,14 +52812,14 @@ func (t *IntransitiveActivity) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *IntransitiveActivity) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *IntransitiveActivity) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *IntransitiveActivity) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameIntransitiveActivityIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *IntransitiveActivity) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameIntransitiveActivityIntermediateType{IRI: v} } @@ -52903,14 +52906,14 @@ func (t *IntransitiveActivity) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *IntransitiveActivity) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *IntransitiveActivity) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *IntransitiveActivity) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsIntransitiveActivityIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *IntransitiveActivity) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsIntransitiveActivityIntermediateType{IRI: v} } @@ -52944,14 +52947,14 @@ func (t *IntransitiveActivity) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *IntransitiveActivity) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *IntransitiveActivity) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *IntransitiveActivity) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *IntransitiveActivity) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -52983,14 +52986,14 @@ func (t *IntransitiveActivity) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *IntransitiveActivity) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *IntransitiveActivity) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *IntransitiveActivity) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *IntransitiveActivity) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -53022,14 +53025,14 @@ func (t *IntransitiveActivity) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *IntransitiveActivity) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *IntransitiveActivity) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *IntransitiveActivity) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *IntransitiveActivity) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -53061,14 +53064,14 @@ func (t *IntransitiveActivity) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *IntransitiveActivity) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *IntransitiveActivity) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *IntransitiveActivity) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *IntransitiveActivity) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -53100,14 +53103,14 @@ func (t *IntransitiveActivity) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *IntransitiveActivity) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *IntransitiveActivity) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *IntransitiveActivity) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *IntransitiveActivity) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -53139,14 +53142,14 @@ func (t *IntransitiveActivity) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *IntransitiveActivity) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *IntransitiveActivity) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *IntransitiveActivity) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *IntransitiveActivity) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -53211,18 +53214,18 @@ func (t *IntransitiveActivity) IsObjectIRI(index int) (ok bool) { } // GetObjectIRI is NOT a valid property for this type; calling its associated methods will always yield an empty-equivalent value such as false, nil, or empty string. This includes instances where it should return itself. This ugliness is a symptom of the fundamental design of the ActivityStream vocabulary as instead of 'W-is-a-X' relationships it contains the notion of 'W-is-a-X-except-for-Y'. -func (t *IntransitiveActivity) GetObjectIRI(index int) (v url.URL) { - return url.URL{} +func (t *IntransitiveActivity) GetObjectIRI(index int) (v *url.URL) { + return nil } // AppendObjectIRI is NOT a valid property for this type; calling its associated methods will always yield an empty-equivalent value such as false, nil, or empty string. This includes instances where it should return itself. This ugliness is a symptom of the fundamental design of the ActivityStream vocabulary as instead of 'W-is-a-X' relationships it contains the notion of 'W-is-a-X-except-for-Y'. -func (t *IntransitiveActivity) AppendObjectIRI(v url.URL) { +func (t *IntransitiveActivity) AppendObjectIRI(v *url.URL) { } // PrependObjectIRI is NOT a valid property for this type; calling its associated methods will always yield an empty-equivalent value such as false, nil, or empty string. This includes instances where it should return itself. This ugliness is a symptom of the fundamental design of the ActivityStream vocabulary as instead of 'W-is-a-X' relationships it contains the notion of 'W-is-a-X-except-for-Y'. -func (t *IntransitiveActivity) PrependObjectIRI(v url.URL) { +func (t *IntransitiveActivity) PrependObjectIRI(v *url.URL) { } @@ -53470,7 +53473,7 @@ func (t *IntransitiveActivity) Serialize() (m map[string]interface{}, err error) if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -53776,7 +53779,7 @@ func (t *IntransitiveActivity) Serialize() (m map[string]interface{}, err error) if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -53791,7 +53794,7 @@ func (t *IntransitiveActivity) Serialize() (m map[string]interface{}, err error) if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -53806,7 +53809,7 @@ func (t *IntransitiveActivity) Serialize() (m map[string]interface{}, err error) if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -53821,7 +53824,7 @@ func (t *IntransitiveActivity) Serialize() (m map[string]interface{}, err error) if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -53836,7 +53839,7 @@ func (t *IntransitiveActivity) Serialize() (m map[string]interface{}, err error) if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -53851,7 +53854,7 @@ func (t *IntransitiveActivity) Serialize() (m map[string]interface{}, err error) if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -54789,7 +54792,7 @@ func (t *IntransitiveActivity) Deserialize(m map[string]interface{}) (err error) if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -54798,7 +54801,7 @@ func (t *IntransitiveActivity) Deserialize(m map[string]interface{}) (err error) if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -55012,7 +55015,7 @@ func (t *actorIntransitiveActivityIntermediateType) Serialize() (i interface{}, return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -55095,7 +55098,7 @@ func (t *targetIntransitiveActivityIntermediateType) Serialize() (i interface{}, return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -55178,7 +55181,7 @@ func (t *resultIntransitiveActivityIntermediateType) Serialize() (i interface{}, return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -55261,7 +55264,7 @@ func (t *originIntransitiveActivityIntermediateType) Serialize() (i interface{}, return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -55344,7 +55347,7 @@ func (t *instrumentIntransitiveActivityIntermediateType) Serialize() (i interfac return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -55398,7 +55401,7 @@ func (t *altitudeIntransitiveActivityIntermediateType) Serialize() (i interface{ return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -55481,7 +55484,7 @@ func (t *attachmentIntransitiveActivityIntermediateType) Serialize() (i interfac return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -55564,7 +55567,7 @@ func (t *attributedToIntransitiveActivityIntermediateType) Serialize() (i interf return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -55647,7 +55650,7 @@ func (t *audienceIntransitiveActivityIntermediateType) Serialize() (i interface{ return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -55715,7 +55718,7 @@ func (t *contentIntransitiveActivityIntermediateType) Serialize() (i interface{} return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -55798,7 +55801,7 @@ func (t *contextIntransitiveActivityIntermediateType) Serialize() (i interface{} return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -55866,7 +55869,7 @@ func (t *nameIntransitiveActivityIntermediateType) Serialize() (i interface{}, e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -55920,7 +55923,7 @@ func (t *endTimeIntransitiveActivityIntermediateType) Serialize() (i interface{} return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -56003,7 +56006,7 @@ func (t *generatorIntransitiveActivityIntermediateType) Serialize() (i interface return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -56086,7 +56089,7 @@ func (t *iconIntransitiveActivityIntermediateType) Serialize() (i interface{}, e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -56169,7 +56172,7 @@ func (t *imageIntransitiveActivityIntermediateType) Serialize() (i interface{}, return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -56252,7 +56255,7 @@ func (t *inReplyToIntransitiveActivityIntermediateType) Serialize() (i interface return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -56335,7 +56338,7 @@ func (t *locationIntransitiveActivityIntermediateType) Serialize() (i interface{ return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -56418,7 +56421,7 @@ func (t *previewIntransitiveActivityIntermediateType) Serialize() (i interface{} return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -56472,7 +56475,7 @@ func (t *publishedIntransitiveActivityIntermediateType) Serialize() (i interface return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -56540,7 +56543,7 @@ func (t *repliesIntransitiveActivityIntermediateType) Serialize() (i interface{} return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -56594,7 +56597,7 @@ func (t *startTimeIntransitiveActivityIntermediateType) Serialize() (i interface return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -56662,7 +56665,7 @@ func (t *summaryIntransitiveActivityIntermediateType) Serialize() (i interface{} return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -56745,7 +56748,7 @@ func (t *tagIntransitiveActivityIntermediateType) Serialize() (i interface{}, er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -56799,7 +56802,7 @@ func (t *updatedIntransitiveActivityIntermediateType) Serialize() (i interface{} return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -56863,7 +56866,7 @@ func (t *urlIntransitiveActivityIntermediateType) Deserialize(i interface{}) (er // Serialize turns this object into an interface{}. func (t *urlIntransitiveActivityIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -56950,7 +56953,7 @@ func (t *toIntransitiveActivityIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -57033,7 +57036,7 @@ func (t *btoIntransitiveActivityIntermediateType) Serialize() (i interface{}, er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -57116,7 +57119,7 @@ func (t *ccIntransitiveActivityIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -57199,7 +57202,7 @@ func (t *bccIntransitiveActivityIntermediateType) Serialize() (i interface{}, er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -57253,7 +57256,7 @@ func (t *mediaTypeIntransitiveActivityIntermediateType) Serialize() (i interface return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -57307,7 +57310,7 @@ func (t *durationIntransitiveActivityIntermediateType) Serialize() (i interface{ return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -57375,7 +57378,7 @@ func (t *sourceIntransitiveActivityIntermediateType) Serialize() (i interface{}, return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -57443,7 +57446,7 @@ func (t *inboxIntransitiveActivityIntermediateType) Serialize() (i interface{}, return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -57511,7 +57514,7 @@ func (t *outboxIntransitiveActivityIntermediateType) Serialize() (i interface{}, return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -57594,7 +57597,7 @@ func (t *followingIntransitiveActivityIntermediateType) Serialize() (i interface return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -57677,7 +57680,7 @@ func (t *followersIntransitiveActivityIntermediateType) Serialize() (i interface return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -57760,7 +57763,7 @@ func (t *likedIntransitiveActivityIntermediateType) Serialize() (i interface{}, return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -57843,7 +57846,7 @@ func (t *likesIntransitiveActivityIntermediateType) Serialize() (i interface{}, return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -57897,7 +57900,7 @@ func (t *preferredUsernameIntransitiveActivityIntermediateType) Serialize() (i i return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -57965,7 +57968,7 @@ func (t *endpointsIntransitiveActivityIntermediateType) Serialize() (i interface return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -58065,7 +58068,7 @@ type Collection struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesCollectionIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameCollectionIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -58111,14 +58114,14 @@ func (t *Collection) IsTotalItemsIRI() (ok bool) { } // GetTotalItemsIRI returns the value safely if IsTotalItemsIRI returned true -func (t *Collection) GetTotalItemsIRI() (v url.URL) { - return *t.totalItems.IRI +func (t *Collection) GetTotalItemsIRI() (v *url.URL) { + return t.totalItems.IRI } -// SetTotalItemsIRI sets the value of totalItems to be of url.URL type -func (t *Collection) SetTotalItemsIRI(v url.URL) { - t.totalItems = &totalItemsCollectionIntermediateType{IRI: &v} +// SetTotalItemsIRI sets the value of totalItems to be of *url.URL type +func (t *Collection) SetTotalItemsIRI(v *url.URL) { + t.totalItems = &totalItemsCollectionIntermediateType{IRI: v} } @@ -58188,14 +58191,14 @@ func (t *Collection) IsCurrentIRI() (ok bool) { } // GetCurrentIRI returns the value safely if IsCurrentIRI returned true -func (t *Collection) GetCurrentIRI() (v url.URL) { - return *t.current.IRI +func (t *Collection) GetCurrentIRI() (v *url.URL) { + return t.current.IRI } -// SetCurrentIRI sets the value of current to be of url.URL type -func (t *Collection) SetCurrentIRI(v url.URL) { - t.current = ¤tCollectionIntermediateType{IRI: &v} +// SetCurrentIRI sets the value of current to be of *url.URL type +func (t *Collection) SetCurrentIRI(v *url.URL) { + t.current = ¤tCollectionIntermediateType{IRI: v} } @@ -58265,14 +58268,14 @@ func (t *Collection) IsFirstIRI() (ok bool) { } // GetFirstIRI returns the value safely if IsFirstIRI returned true -func (t *Collection) GetFirstIRI() (v url.URL) { - return *t.first.IRI +func (t *Collection) GetFirstIRI() (v *url.URL) { + return t.first.IRI } -// SetFirstIRI sets the value of first to be of url.URL type -func (t *Collection) SetFirstIRI(v url.URL) { - t.first = &firstCollectionIntermediateType{IRI: &v} +// SetFirstIRI sets the value of first to be of *url.URL type +func (t *Collection) SetFirstIRI(v *url.URL) { + t.first = &firstCollectionIntermediateType{IRI: v} } @@ -58342,14 +58345,14 @@ func (t *Collection) IsLastIRI() (ok bool) { } // GetLastIRI returns the value safely if IsLastIRI returned true -func (t *Collection) GetLastIRI() (v url.URL) { - return *t.last.IRI +func (t *Collection) GetLastIRI() (v *url.URL) { + return t.last.IRI } -// SetLastIRI sets the value of last to be of url.URL type -func (t *Collection) SetLastIRI(v url.URL) { - t.last = &lastCollectionIntermediateType{IRI: &v} +// SetLastIRI sets the value of last to be of *url.URL type +func (t *Collection) SetLastIRI(v *url.URL) { + t.last = &lastCollectionIntermediateType{IRI: v} } @@ -58453,20 +58456,20 @@ func (t *Collection) IsItemsIRI(index int) (ok bool) { } // GetItemsIRI returns the value safely if IsItemsIRI returned true for the specified index -func (t *Collection) GetItemsIRI(index int) (v url.URL) { - return *t.items[index].IRI +func (t *Collection) GetItemsIRI(index int) (v *url.URL) { + return t.items[index].IRI } -// AppendItemsIRI adds to the back of items a url.URL type -func (t *Collection) AppendItemsIRI(v url.URL) { - t.items = append(t.items, &itemsCollectionIntermediateType{IRI: &v}) +// AppendItemsIRI adds to the back of items a *url.URL type +func (t *Collection) AppendItemsIRI(v *url.URL) { + t.items = append(t.items, &itemsCollectionIntermediateType{IRI: v}) } -// PrependItemsIRI adds to the front of items a url.URL type -func (t *Collection) PrependItemsIRI(v url.URL) { - t.items = append([]*itemsCollectionIntermediateType{&itemsCollectionIntermediateType{IRI: &v}}, t.items...) +// PrependItemsIRI adds to the front of items a *url.URL type +func (t *Collection) PrependItemsIRI(v *url.URL) { + t.items = append([]*itemsCollectionIntermediateType{&itemsCollectionIntermediateType{IRI: v}}, t.items...) } @@ -58526,14 +58529,14 @@ func (t *Collection) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Collection) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Collection) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Collection) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeCollectionIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Collection) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeCollectionIntermediateType{IRI: v} } @@ -58637,20 +58640,20 @@ func (t *Collection) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Collection) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Collection) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Collection) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentCollectionIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Collection) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentCollectionIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Collection) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentCollectionIntermediateType{&attachmentCollectionIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Collection) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentCollectionIntermediateType{&attachmentCollectionIntermediateType{IRI: v}}, t.attachment...) } @@ -58762,20 +58765,20 @@ func (t *Collection) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Collection) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Collection) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Collection) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToCollectionIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Collection) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToCollectionIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Collection) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToCollectionIntermediateType{&attributedToCollectionIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Collection) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToCollectionIntermediateType{&attributedToCollectionIntermediateType{IRI: v}}, t.attributedTo...) } @@ -58887,20 +58890,20 @@ func (t *Collection) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Collection) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Collection) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Collection) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceCollectionIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Collection) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceCollectionIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Collection) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceCollectionIntermediateType{&audienceCollectionIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Collection) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceCollectionIntermediateType{&audienceCollectionIntermediateType{IRI: v}}, t.audience...) } @@ -59012,20 +59015,20 @@ func (t *Collection) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Collection) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Collection) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Collection) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentCollectionIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Collection) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentCollectionIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Collection) PrependContentIRI(v url.URL) { - t.content = append([]*contentCollectionIntermediateType{&contentCollectionIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Collection) PrependContentIRI(v *url.URL) { + t.content = append([]*contentCollectionIntermediateType{&contentCollectionIntermediateType{IRI: v}}, t.content...) } @@ -59172,20 +59175,20 @@ func (t *Collection) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Collection) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Collection) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Collection) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextCollectionIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Collection) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextCollectionIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Collection) PrependContextIRI(v url.URL) { - t.context = append([]*contextCollectionIntermediateType{&contextCollectionIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Collection) PrependContextIRI(v *url.URL) { + t.context = append([]*contextCollectionIntermediateType{&contextCollectionIntermediateType{IRI: v}}, t.context...) } @@ -59297,20 +59300,20 @@ func (t *Collection) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Collection) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Collection) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Collection) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameCollectionIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Collection) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameCollectionIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Collection) PrependNameIRI(v url.URL) { - t.name = append([]*nameCollectionIntermediateType{&nameCollectionIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Collection) PrependNameIRI(v *url.URL) { + t.name = append([]*nameCollectionIntermediateType{&nameCollectionIntermediateType{IRI: v}}, t.name...) } @@ -59405,14 +59408,14 @@ func (t *Collection) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Collection) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Collection) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Collection) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeCollectionIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Collection) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeCollectionIntermediateType{IRI: v} } @@ -59516,20 +59519,20 @@ func (t *Collection) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Collection) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Collection) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Collection) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorCollectionIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Collection) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorCollectionIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Collection) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorCollectionIntermediateType{&generatorCollectionIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Collection) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorCollectionIntermediateType{&generatorCollectionIntermediateType{IRI: v}}, t.generator...) } @@ -59641,20 +59644,20 @@ func (t *Collection) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Collection) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Collection) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Collection) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconCollectionIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Collection) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconCollectionIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Collection) PrependIconIRI(v url.URL) { - t.icon = append([]*iconCollectionIntermediateType{&iconCollectionIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Collection) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconCollectionIntermediateType{&iconCollectionIntermediateType{IRI: v}}, t.icon...) } @@ -59696,14 +59699,14 @@ func (t *Collection) HasId() (ok bool) { } // GetId returns the value for id -func (t *Collection) GetId() (v url.URL) { - return *t.id +func (t *Collection) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Collection) SetId(v url.URL) { - t.id = &v +func (t *Collection) SetId(v *url.URL) { + t.id = v } @@ -59805,20 +59808,20 @@ func (t *Collection) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Collection) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Collection) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Collection) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageCollectionIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Collection) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageCollectionIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Collection) PrependImageIRI(v url.URL) { - t.image = append([]*imageCollectionIntermediateType{&imageCollectionIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Collection) PrependImageIRI(v *url.URL) { + t.image = append([]*imageCollectionIntermediateType{&imageCollectionIntermediateType{IRI: v}}, t.image...) } @@ -59930,20 +59933,20 @@ func (t *Collection) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Collection) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Collection) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Collection) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToCollectionIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Collection) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToCollectionIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Collection) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToCollectionIntermediateType{&inReplyToCollectionIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Collection) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToCollectionIntermediateType{&inReplyToCollectionIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -60055,20 +60058,20 @@ func (t *Collection) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Collection) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Collection) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Collection) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationCollectionIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Collection) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationCollectionIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Collection) PrependLocationIRI(v url.URL) { - t.location = append([]*locationCollectionIntermediateType{&locationCollectionIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Collection) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationCollectionIntermediateType{&locationCollectionIntermediateType{IRI: v}}, t.location...) } @@ -60180,20 +60183,20 @@ func (t *Collection) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Collection) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Collection) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Collection) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewCollectionIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Collection) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewCollectionIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Collection) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewCollectionIntermediateType{&previewCollectionIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Collection) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewCollectionIntermediateType{&previewCollectionIntermediateType{IRI: v}}, t.preview...) } @@ -60253,14 +60256,14 @@ func (t *Collection) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Collection) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Collection) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Collection) SetPublishedIRI(v url.URL) { - t.published = &publishedCollectionIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Collection) SetPublishedIRI(v *url.URL) { + t.published = &publishedCollectionIntermediateType{IRI: v} } @@ -60312,14 +60315,14 @@ func (t *Collection) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Collection) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Collection) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Collection) SetRepliesIRI(v url.URL) { - t.replies = &repliesCollectionIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Collection) SetRepliesIRI(v *url.URL) { + t.replies = &repliesCollectionIntermediateType{IRI: v} } @@ -60371,14 +60374,14 @@ func (t *Collection) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Collection) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Collection) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Collection) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeCollectionIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Collection) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeCollectionIntermediateType{IRI: v} } @@ -60482,20 +60485,20 @@ func (t *Collection) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Collection) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Collection) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Collection) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryCollectionIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Collection) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryCollectionIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Collection) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryCollectionIntermediateType{&summaryCollectionIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Collection) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryCollectionIntermediateType{&summaryCollectionIntermediateType{IRI: v}}, t.summary...) } @@ -60642,20 +60645,20 @@ func (t *Collection) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Collection) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Collection) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Collection) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagCollectionIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Collection) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagCollectionIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Collection) PrependTagIRI(v url.URL) { - t.tag = append([]*tagCollectionIntermediateType{&tagCollectionIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Collection) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagCollectionIntermediateType{&tagCollectionIntermediateType{IRI: v}}, t.tag...) } @@ -60747,14 +60750,14 @@ func (t *Collection) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Collection) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Collection) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Collection) SetUpdatedIRI(v url.URL) { - t.updated = &updatedCollectionIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Collection) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedCollectionIntermediateType{IRI: v} } @@ -60794,20 +60797,20 @@ func (t *Collection) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Collection) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Collection) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Collection) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlCollectionIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Collection) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlCollectionIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Collection) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlCollectionIntermediateType{&urlCollectionIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Collection) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlCollectionIntermediateType{&urlCollectionIntermediateType{anyURI: v}}, t.url...) } @@ -60951,20 +60954,20 @@ func (t *Collection) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Collection) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Collection) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Collection) AppendToIRI(v url.URL) { - t.to = append(t.to, &toCollectionIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Collection) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toCollectionIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Collection) PrependToIRI(v url.URL) { - t.to = append([]*toCollectionIntermediateType{&toCollectionIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Collection) PrependToIRI(v *url.URL) { + t.to = append([]*toCollectionIntermediateType{&toCollectionIntermediateType{IRI: v}}, t.to...) } @@ -61076,20 +61079,20 @@ func (t *Collection) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Collection) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Collection) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Collection) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoCollectionIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Collection) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoCollectionIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Collection) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoCollectionIntermediateType{&btoCollectionIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Collection) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoCollectionIntermediateType{&btoCollectionIntermediateType{IRI: v}}, t.bto...) } @@ -61201,20 +61204,20 @@ func (t *Collection) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Collection) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Collection) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Collection) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccCollectionIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Collection) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccCollectionIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Collection) PrependCcIRI(v url.URL) { - t.cc = append([]*ccCollectionIntermediateType{&ccCollectionIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Collection) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccCollectionIntermediateType{&ccCollectionIntermediateType{IRI: v}}, t.cc...) } @@ -61326,20 +61329,20 @@ func (t *Collection) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Collection) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Collection) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Collection) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccCollectionIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Collection) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccCollectionIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Collection) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccCollectionIntermediateType{&bccCollectionIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Collection) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccCollectionIntermediateType{&bccCollectionIntermediateType{IRI: v}}, t.bcc...) } @@ -61399,14 +61402,14 @@ func (t *Collection) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Collection) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Collection) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Collection) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeCollectionIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Collection) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeCollectionIntermediateType{IRI: v} } @@ -61458,14 +61461,14 @@ func (t *Collection) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Collection) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Collection) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Collection) SetDurationIRI(v url.URL) { - t.duration = &durationCollectionIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Collection) SetDurationIRI(v *url.URL) { + t.duration = &durationCollectionIntermediateType{IRI: v} } @@ -61517,14 +61520,14 @@ func (t *Collection) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Collection) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Collection) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Collection) SetSourceIRI(v url.URL) { - t.source = &sourceCollectionIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Collection) SetSourceIRI(v *url.URL) { + t.source = &sourceCollectionIntermediateType{IRI: v} } @@ -61576,14 +61579,14 @@ func (t *Collection) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Collection) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Collection) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Collection) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxCollectionIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Collection) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxCollectionIntermediateType{anyURI: v} } @@ -61635,14 +61638,14 @@ func (t *Collection) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Collection) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Collection) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Collection) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxCollectionIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Collection) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxCollectionIntermediateType{anyURI: v} } @@ -61712,14 +61715,14 @@ func (t *Collection) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Collection) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Collection) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Collection) SetFollowingAnyURI(v url.URL) { - t.following = &followingCollectionIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Collection) SetFollowingAnyURI(v *url.URL) { + t.following = &followingCollectionIntermediateType{anyURI: v} } @@ -61789,14 +61792,14 @@ func (t *Collection) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Collection) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Collection) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Collection) SetFollowersAnyURI(v url.URL) { - t.followers = &followersCollectionIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Collection) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersCollectionIntermediateType{anyURI: v} } @@ -61866,14 +61869,14 @@ func (t *Collection) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Collection) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Collection) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Collection) SetLikedAnyURI(v url.URL) { - t.liked = &likedCollectionIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Collection) SetLikedAnyURI(v *url.URL) { + t.liked = &likedCollectionIntermediateType{anyURI: v} } @@ -61943,14 +61946,14 @@ func (t *Collection) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Collection) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Collection) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Collection) SetLikesAnyURI(v url.URL) { - t.likes = &likesCollectionIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Collection) SetLikesAnyURI(v *url.URL) { + t.likes = &likesCollectionIntermediateType{anyURI: v} } @@ -61984,26 +61987,27 @@ func (t *Collection) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Collection) GetStreams(index int) (v url.URL) { +func (t *Collection) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Collection) AppendStreams(v url.URL) { +func (t *Collection) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Collection) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Collection) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Collection) 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] } @@ -62054,14 +62058,14 @@ func (t *Collection) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Collection) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Collection) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Collection) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameCollectionIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Collection) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameCollectionIntermediateType{IRI: v} } @@ -62148,14 +62152,14 @@ func (t *Collection) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Collection) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Collection) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Collection) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsCollectionIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Collection) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsCollectionIntermediateType{IRI: v} } @@ -62189,14 +62193,14 @@ func (t *Collection) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Collection) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Collection) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Collection) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Collection) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -62228,14 +62232,14 @@ func (t *Collection) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Collection) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Collection) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Collection) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Collection) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -62267,14 +62271,14 @@ func (t *Collection) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Collection) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Collection) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Collection) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Collection) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -62306,14 +62310,14 @@ func (t *Collection) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Collection) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Collection) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Collection) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Collection) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -62345,14 +62349,14 @@ func (t *Collection) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Collection) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Collection) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Collection) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Collection) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -62384,14 +62388,14 @@ func (t *Collection) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Collection) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Collection) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Collection) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Collection) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -62630,7 +62634,7 @@ func (t *Collection) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -62936,7 +62940,7 @@ func (t *Collection) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -62951,7 +62955,7 @@ func (t *Collection) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -62966,7 +62970,7 @@ func (t *Collection) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -62981,7 +62985,7 @@ func (t *Collection) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -62996,7 +63000,7 @@ func (t *Collection) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -63011,7 +63015,7 @@ func (t *Collection) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -63881,7 +63885,7 @@ func (t *Collection) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -63890,7 +63894,7 @@ func (t *Collection) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -64075,7 +64079,7 @@ func (t *totalItemsCollectionIntermediateType) Serialize() (i interface{}, err e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -64158,7 +64162,7 @@ func (t *currentCollectionIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -64241,7 +64245,7 @@ func (t *firstCollectionIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -64324,7 +64328,7 @@ func (t *lastCollectionIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -64407,7 +64411,7 @@ func (t *itemsCollectionIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -64461,7 +64465,7 @@ func (t *altitudeCollectionIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -64544,7 +64548,7 @@ func (t *attachmentCollectionIntermediateType) Serialize() (i interface{}, err e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -64627,7 +64631,7 @@ func (t *attributedToCollectionIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -64710,7 +64714,7 @@ func (t *audienceCollectionIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -64778,7 +64782,7 @@ func (t *contentCollectionIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -64861,7 +64865,7 @@ func (t *contextCollectionIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -64929,7 +64933,7 @@ func (t *nameCollectionIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -64983,7 +64987,7 @@ func (t *endTimeCollectionIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -65066,7 +65070,7 @@ func (t *generatorCollectionIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -65149,7 +65153,7 @@ func (t *iconCollectionIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -65232,7 +65236,7 @@ func (t *imageCollectionIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -65315,7 +65319,7 @@ func (t *inReplyToCollectionIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -65398,7 +65402,7 @@ func (t *locationCollectionIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -65481,7 +65485,7 @@ func (t *previewCollectionIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -65535,7 +65539,7 @@ func (t *publishedCollectionIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -65603,7 +65607,7 @@ func (t *repliesCollectionIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -65657,7 +65661,7 @@ func (t *startTimeCollectionIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -65725,7 +65729,7 @@ func (t *summaryCollectionIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -65808,7 +65812,7 @@ func (t *tagCollectionIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -65862,7 +65866,7 @@ func (t *updatedCollectionIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -65926,7 +65930,7 @@ func (t *urlCollectionIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlCollectionIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -66013,7 +66017,7 @@ func (t *toCollectionIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -66096,7 +66100,7 @@ func (t *btoCollectionIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -66179,7 +66183,7 @@ func (t *ccCollectionIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -66262,7 +66266,7 @@ func (t *bccCollectionIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -66316,7 +66320,7 @@ func (t *mediaTypeCollectionIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -66370,7 +66374,7 @@ func (t *durationCollectionIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -66438,7 +66442,7 @@ func (t *sourceCollectionIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -66506,7 +66510,7 @@ func (t *inboxCollectionIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -66574,7 +66578,7 @@ func (t *outboxCollectionIntermediateType) Serialize() (i interface{}, err error return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -66657,7 +66661,7 @@ func (t *followingCollectionIntermediateType) Serialize() (i interface{}, err er return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -66740,7 +66744,7 @@ func (t *followersCollectionIntermediateType) Serialize() (i interface{}, err er return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -66823,7 +66827,7 @@ func (t *likedCollectionIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -66906,7 +66910,7 @@ func (t *likesCollectionIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -66960,7 +66964,7 @@ func (t *preferredUsernameCollectionIntermediateType) Serialize() (i interface{} return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -67028,7 +67032,7 @@ func (t *endpointsCollectionIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -67128,7 +67132,7 @@ type OrderedCollection struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesOrderedCollectionIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameOrderedCollectionIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -67226,20 +67230,20 @@ func (t *OrderedCollection) IsOrderedItemsIRI(index int) (ok bool) { } // GetOrderedItemsIRI returns the value safely if IsOrderedItemsIRI returned true for the specified index -func (t *OrderedCollection) GetOrderedItemsIRI(index int) (v url.URL) { - return *t.orderedItems[index].IRI +func (t *OrderedCollection) GetOrderedItemsIRI(index int) (v *url.URL) { + return t.orderedItems[index].IRI } -// AppendOrderedItemsIRI adds to the back of orderedItems a url.URL type -func (t *OrderedCollection) AppendOrderedItemsIRI(v url.URL) { - t.orderedItems = append(t.orderedItems, &orderedItemsOrderedCollectionIntermediateType{IRI: &v}) +// AppendOrderedItemsIRI adds to the back of orderedItems a *url.URL type +func (t *OrderedCollection) AppendOrderedItemsIRI(v *url.URL) { + t.orderedItems = append(t.orderedItems, &orderedItemsOrderedCollectionIntermediateType{IRI: v}) } -// PrependOrderedItemsIRI adds to the front of orderedItems a url.URL type -func (t *OrderedCollection) PrependOrderedItemsIRI(v url.URL) { - t.orderedItems = append([]*orderedItemsOrderedCollectionIntermediateType{&orderedItemsOrderedCollectionIntermediateType{IRI: &v}}, t.orderedItems...) +// PrependOrderedItemsIRI adds to the front of orderedItems a *url.URL type +func (t *OrderedCollection) PrependOrderedItemsIRI(v *url.URL) { + t.orderedItems = append([]*orderedItemsOrderedCollectionIntermediateType{&orderedItemsOrderedCollectionIntermediateType{IRI: v}}, t.orderedItems...) } @@ -67317,14 +67321,14 @@ func (t *OrderedCollection) IsCurrentIRI() (ok bool) { } // GetCurrentIRI returns the value safely if IsCurrentIRI returned true -func (t *OrderedCollection) GetCurrentIRI() (v url.URL) { - return *t.current.IRI +func (t *OrderedCollection) GetCurrentIRI() (v *url.URL) { + return t.current.IRI } -// SetCurrentIRI sets the value of current to be of url.URL type -func (t *OrderedCollection) SetCurrentIRI(v url.URL) { - t.current = ¤tOrderedCollectionIntermediateType{IRI: &v} +// SetCurrentIRI sets the value of current to be of *url.URL type +func (t *OrderedCollection) SetCurrentIRI(v *url.URL) { + t.current = ¤tOrderedCollectionIntermediateType{IRI: v} } @@ -67394,14 +67398,14 @@ func (t *OrderedCollection) IsFirstIRI() (ok bool) { } // GetFirstIRI returns the value safely if IsFirstIRI returned true -func (t *OrderedCollection) GetFirstIRI() (v url.URL) { - return *t.first.IRI +func (t *OrderedCollection) GetFirstIRI() (v *url.URL) { + return t.first.IRI } -// SetFirstIRI sets the value of first to be of url.URL type -func (t *OrderedCollection) SetFirstIRI(v url.URL) { - t.first = &firstOrderedCollectionIntermediateType{IRI: &v} +// SetFirstIRI sets the value of first to be of *url.URL type +func (t *OrderedCollection) SetFirstIRI(v *url.URL) { + t.first = &firstOrderedCollectionIntermediateType{IRI: v} } @@ -67471,14 +67475,14 @@ func (t *OrderedCollection) IsLastIRI() (ok bool) { } // GetLastIRI returns the value safely if IsLastIRI returned true -func (t *OrderedCollection) GetLastIRI() (v url.URL) { - return *t.last.IRI +func (t *OrderedCollection) GetLastIRI() (v *url.URL) { + return t.last.IRI } -// SetLastIRI sets the value of last to be of url.URL type -func (t *OrderedCollection) SetLastIRI(v url.URL) { - t.last = &lastOrderedCollectionIntermediateType{IRI: &v} +// SetLastIRI sets the value of last to be of *url.URL type +func (t *OrderedCollection) SetLastIRI(v *url.URL) { + t.last = &lastOrderedCollectionIntermediateType{IRI: v} } @@ -67530,14 +67534,14 @@ func (t *OrderedCollection) IsTotalItemsIRI() (ok bool) { } // GetTotalItemsIRI returns the value safely if IsTotalItemsIRI returned true -func (t *OrderedCollection) GetTotalItemsIRI() (v url.URL) { - return *t.totalItems.IRI +func (t *OrderedCollection) GetTotalItemsIRI() (v *url.URL) { + return t.totalItems.IRI } -// SetTotalItemsIRI sets the value of totalItems to be of url.URL type -func (t *OrderedCollection) SetTotalItemsIRI(v url.URL) { - t.totalItems = &totalItemsOrderedCollectionIntermediateType{IRI: &v} +// SetTotalItemsIRI sets the value of totalItems to be of *url.URL type +func (t *OrderedCollection) SetTotalItemsIRI(v *url.URL) { + t.totalItems = &totalItemsOrderedCollectionIntermediateType{IRI: v} } @@ -67589,14 +67593,14 @@ func (t *OrderedCollection) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *OrderedCollection) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *OrderedCollection) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *OrderedCollection) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeOrderedCollectionIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *OrderedCollection) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeOrderedCollectionIntermediateType{IRI: v} } @@ -67700,20 +67704,20 @@ func (t *OrderedCollection) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *OrderedCollection) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *OrderedCollection) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *OrderedCollection) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentOrderedCollectionIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *OrderedCollection) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentOrderedCollectionIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *OrderedCollection) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentOrderedCollectionIntermediateType{&attachmentOrderedCollectionIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *OrderedCollection) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentOrderedCollectionIntermediateType{&attachmentOrderedCollectionIntermediateType{IRI: v}}, t.attachment...) } @@ -67825,20 +67829,20 @@ func (t *OrderedCollection) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *OrderedCollection) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *OrderedCollection) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *OrderedCollection) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToOrderedCollectionIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *OrderedCollection) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToOrderedCollectionIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *OrderedCollection) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToOrderedCollectionIntermediateType{&attributedToOrderedCollectionIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *OrderedCollection) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToOrderedCollectionIntermediateType{&attributedToOrderedCollectionIntermediateType{IRI: v}}, t.attributedTo...) } @@ -67950,20 +67954,20 @@ func (t *OrderedCollection) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *OrderedCollection) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *OrderedCollection) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *OrderedCollection) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceOrderedCollectionIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *OrderedCollection) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceOrderedCollectionIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *OrderedCollection) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceOrderedCollectionIntermediateType{&audienceOrderedCollectionIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *OrderedCollection) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceOrderedCollectionIntermediateType{&audienceOrderedCollectionIntermediateType{IRI: v}}, t.audience...) } @@ -68075,20 +68079,20 @@ func (t *OrderedCollection) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *OrderedCollection) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *OrderedCollection) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *OrderedCollection) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentOrderedCollectionIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *OrderedCollection) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentOrderedCollectionIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *OrderedCollection) PrependContentIRI(v url.URL) { - t.content = append([]*contentOrderedCollectionIntermediateType{&contentOrderedCollectionIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *OrderedCollection) PrependContentIRI(v *url.URL) { + t.content = append([]*contentOrderedCollectionIntermediateType{&contentOrderedCollectionIntermediateType{IRI: v}}, t.content...) } @@ -68235,20 +68239,20 @@ func (t *OrderedCollection) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *OrderedCollection) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *OrderedCollection) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *OrderedCollection) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextOrderedCollectionIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *OrderedCollection) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextOrderedCollectionIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *OrderedCollection) PrependContextIRI(v url.URL) { - t.context = append([]*contextOrderedCollectionIntermediateType{&contextOrderedCollectionIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *OrderedCollection) PrependContextIRI(v *url.URL) { + t.context = append([]*contextOrderedCollectionIntermediateType{&contextOrderedCollectionIntermediateType{IRI: v}}, t.context...) } @@ -68360,20 +68364,20 @@ func (t *OrderedCollection) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *OrderedCollection) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *OrderedCollection) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *OrderedCollection) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameOrderedCollectionIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *OrderedCollection) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameOrderedCollectionIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *OrderedCollection) PrependNameIRI(v url.URL) { - t.name = append([]*nameOrderedCollectionIntermediateType{&nameOrderedCollectionIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *OrderedCollection) PrependNameIRI(v *url.URL) { + t.name = append([]*nameOrderedCollectionIntermediateType{&nameOrderedCollectionIntermediateType{IRI: v}}, t.name...) } @@ -68468,14 +68472,14 @@ func (t *OrderedCollection) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *OrderedCollection) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *OrderedCollection) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *OrderedCollection) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeOrderedCollectionIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *OrderedCollection) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeOrderedCollectionIntermediateType{IRI: v} } @@ -68579,20 +68583,20 @@ func (t *OrderedCollection) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *OrderedCollection) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *OrderedCollection) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *OrderedCollection) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorOrderedCollectionIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *OrderedCollection) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorOrderedCollectionIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *OrderedCollection) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorOrderedCollectionIntermediateType{&generatorOrderedCollectionIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *OrderedCollection) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorOrderedCollectionIntermediateType{&generatorOrderedCollectionIntermediateType{IRI: v}}, t.generator...) } @@ -68704,20 +68708,20 @@ func (t *OrderedCollection) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *OrderedCollection) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *OrderedCollection) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *OrderedCollection) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconOrderedCollectionIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *OrderedCollection) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconOrderedCollectionIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *OrderedCollection) PrependIconIRI(v url.URL) { - t.icon = append([]*iconOrderedCollectionIntermediateType{&iconOrderedCollectionIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *OrderedCollection) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconOrderedCollectionIntermediateType{&iconOrderedCollectionIntermediateType{IRI: v}}, t.icon...) } @@ -68759,14 +68763,14 @@ func (t *OrderedCollection) HasId() (ok bool) { } // GetId returns the value for id -func (t *OrderedCollection) GetId() (v url.URL) { - return *t.id +func (t *OrderedCollection) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *OrderedCollection) SetId(v url.URL) { - t.id = &v +func (t *OrderedCollection) SetId(v *url.URL) { + t.id = v } @@ -68868,20 +68872,20 @@ func (t *OrderedCollection) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *OrderedCollection) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *OrderedCollection) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *OrderedCollection) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageOrderedCollectionIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *OrderedCollection) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageOrderedCollectionIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *OrderedCollection) PrependImageIRI(v url.URL) { - t.image = append([]*imageOrderedCollectionIntermediateType{&imageOrderedCollectionIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *OrderedCollection) PrependImageIRI(v *url.URL) { + t.image = append([]*imageOrderedCollectionIntermediateType{&imageOrderedCollectionIntermediateType{IRI: v}}, t.image...) } @@ -68993,20 +68997,20 @@ func (t *OrderedCollection) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *OrderedCollection) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *OrderedCollection) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *OrderedCollection) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToOrderedCollectionIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *OrderedCollection) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToOrderedCollectionIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *OrderedCollection) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToOrderedCollectionIntermediateType{&inReplyToOrderedCollectionIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *OrderedCollection) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToOrderedCollectionIntermediateType{&inReplyToOrderedCollectionIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -69118,20 +69122,20 @@ func (t *OrderedCollection) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *OrderedCollection) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *OrderedCollection) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *OrderedCollection) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationOrderedCollectionIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *OrderedCollection) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationOrderedCollectionIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *OrderedCollection) PrependLocationIRI(v url.URL) { - t.location = append([]*locationOrderedCollectionIntermediateType{&locationOrderedCollectionIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *OrderedCollection) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationOrderedCollectionIntermediateType{&locationOrderedCollectionIntermediateType{IRI: v}}, t.location...) } @@ -69243,20 +69247,20 @@ func (t *OrderedCollection) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *OrderedCollection) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *OrderedCollection) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *OrderedCollection) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewOrderedCollectionIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *OrderedCollection) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewOrderedCollectionIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *OrderedCollection) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewOrderedCollectionIntermediateType{&previewOrderedCollectionIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *OrderedCollection) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewOrderedCollectionIntermediateType{&previewOrderedCollectionIntermediateType{IRI: v}}, t.preview...) } @@ -69316,14 +69320,14 @@ func (t *OrderedCollection) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *OrderedCollection) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *OrderedCollection) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *OrderedCollection) SetPublishedIRI(v url.URL) { - t.published = &publishedOrderedCollectionIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *OrderedCollection) SetPublishedIRI(v *url.URL) { + t.published = &publishedOrderedCollectionIntermediateType{IRI: v} } @@ -69375,14 +69379,14 @@ func (t *OrderedCollection) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *OrderedCollection) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *OrderedCollection) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *OrderedCollection) SetRepliesIRI(v url.URL) { - t.replies = &repliesOrderedCollectionIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *OrderedCollection) SetRepliesIRI(v *url.URL) { + t.replies = &repliesOrderedCollectionIntermediateType{IRI: v} } @@ -69434,14 +69438,14 @@ func (t *OrderedCollection) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *OrderedCollection) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *OrderedCollection) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *OrderedCollection) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeOrderedCollectionIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *OrderedCollection) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeOrderedCollectionIntermediateType{IRI: v} } @@ -69545,20 +69549,20 @@ func (t *OrderedCollection) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *OrderedCollection) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *OrderedCollection) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *OrderedCollection) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryOrderedCollectionIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *OrderedCollection) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryOrderedCollectionIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *OrderedCollection) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryOrderedCollectionIntermediateType{&summaryOrderedCollectionIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *OrderedCollection) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryOrderedCollectionIntermediateType{&summaryOrderedCollectionIntermediateType{IRI: v}}, t.summary...) } @@ -69705,20 +69709,20 @@ func (t *OrderedCollection) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *OrderedCollection) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *OrderedCollection) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *OrderedCollection) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagOrderedCollectionIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *OrderedCollection) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagOrderedCollectionIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *OrderedCollection) PrependTagIRI(v url.URL) { - t.tag = append([]*tagOrderedCollectionIntermediateType{&tagOrderedCollectionIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *OrderedCollection) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagOrderedCollectionIntermediateType{&tagOrderedCollectionIntermediateType{IRI: v}}, t.tag...) } @@ -69810,14 +69814,14 @@ func (t *OrderedCollection) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *OrderedCollection) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *OrderedCollection) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *OrderedCollection) SetUpdatedIRI(v url.URL) { - t.updated = &updatedOrderedCollectionIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *OrderedCollection) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedOrderedCollectionIntermediateType{IRI: v} } @@ -69857,20 +69861,20 @@ func (t *OrderedCollection) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *OrderedCollection) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *OrderedCollection) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *OrderedCollection) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlOrderedCollectionIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *OrderedCollection) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlOrderedCollectionIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *OrderedCollection) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlOrderedCollectionIntermediateType{&urlOrderedCollectionIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *OrderedCollection) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlOrderedCollectionIntermediateType{&urlOrderedCollectionIntermediateType{anyURI: v}}, t.url...) } @@ -70014,20 +70018,20 @@ func (t *OrderedCollection) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *OrderedCollection) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *OrderedCollection) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *OrderedCollection) AppendToIRI(v url.URL) { - t.to = append(t.to, &toOrderedCollectionIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *OrderedCollection) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toOrderedCollectionIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *OrderedCollection) PrependToIRI(v url.URL) { - t.to = append([]*toOrderedCollectionIntermediateType{&toOrderedCollectionIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *OrderedCollection) PrependToIRI(v *url.URL) { + t.to = append([]*toOrderedCollectionIntermediateType{&toOrderedCollectionIntermediateType{IRI: v}}, t.to...) } @@ -70139,20 +70143,20 @@ func (t *OrderedCollection) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *OrderedCollection) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *OrderedCollection) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *OrderedCollection) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoOrderedCollectionIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *OrderedCollection) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoOrderedCollectionIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *OrderedCollection) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoOrderedCollectionIntermediateType{&btoOrderedCollectionIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *OrderedCollection) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoOrderedCollectionIntermediateType{&btoOrderedCollectionIntermediateType{IRI: v}}, t.bto...) } @@ -70264,20 +70268,20 @@ func (t *OrderedCollection) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *OrderedCollection) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *OrderedCollection) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *OrderedCollection) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccOrderedCollectionIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *OrderedCollection) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccOrderedCollectionIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *OrderedCollection) PrependCcIRI(v url.URL) { - t.cc = append([]*ccOrderedCollectionIntermediateType{&ccOrderedCollectionIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *OrderedCollection) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccOrderedCollectionIntermediateType{&ccOrderedCollectionIntermediateType{IRI: v}}, t.cc...) } @@ -70389,20 +70393,20 @@ func (t *OrderedCollection) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *OrderedCollection) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *OrderedCollection) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *OrderedCollection) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccOrderedCollectionIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *OrderedCollection) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccOrderedCollectionIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *OrderedCollection) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccOrderedCollectionIntermediateType{&bccOrderedCollectionIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *OrderedCollection) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccOrderedCollectionIntermediateType{&bccOrderedCollectionIntermediateType{IRI: v}}, t.bcc...) } @@ -70462,14 +70466,14 @@ func (t *OrderedCollection) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *OrderedCollection) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *OrderedCollection) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *OrderedCollection) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeOrderedCollectionIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *OrderedCollection) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeOrderedCollectionIntermediateType{IRI: v} } @@ -70521,14 +70525,14 @@ func (t *OrderedCollection) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *OrderedCollection) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *OrderedCollection) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *OrderedCollection) SetDurationIRI(v url.URL) { - t.duration = &durationOrderedCollectionIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *OrderedCollection) SetDurationIRI(v *url.URL) { + t.duration = &durationOrderedCollectionIntermediateType{IRI: v} } @@ -70580,14 +70584,14 @@ func (t *OrderedCollection) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *OrderedCollection) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *OrderedCollection) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *OrderedCollection) SetSourceIRI(v url.URL) { - t.source = &sourceOrderedCollectionIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *OrderedCollection) SetSourceIRI(v *url.URL) { + t.source = &sourceOrderedCollectionIntermediateType{IRI: v} } @@ -70639,14 +70643,14 @@ func (t *OrderedCollection) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *OrderedCollection) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *OrderedCollection) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *OrderedCollection) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxOrderedCollectionIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *OrderedCollection) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxOrderedCollectionIntermediateType{anyURI: v} } @@ -70698,14 +70702,14 @@ func (t *OrderedCollection) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *OrderedCollection) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *OrderedCollection) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *OrderedCollection) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxOrderedCollectionIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *OrderedCollection) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxOrderedCollectionIntermediateType{anyURI: v} } @@ -70775,14 +70779,14 @@ func (t *OrderedCollection) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *OrderedCollection) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *OrderedCollection) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *OrderedCollection) SetFollowingAnyURI(v url.URL) { - t.following = &followingOrderedCollectionIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *OrderedCollection) SetFollowingAnyURI(v *url.URL) { + t.following = &followingOrderedCollectionIntermediateType{anyURI: v} } @@ -70852,14 +70856,14 @@ func (t *OrderedCollection) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *OrderedCollection) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *OrderedCollection) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *OrderedCollection) SetFollowersAnyURI(v url.URL) { - t.followers = &followersOrderedCollectionIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *OrderedCollection) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersOrderedCollectionIntermediateType{anyURI: v} } @@ -70929,14 +70933,14 @@ func (t *OrderedCollection) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *OrderedCollection) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *OrderedCollection) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *OrderedCollection) SetLikedAnyURI(v url.URL) { - t.liked = &likedOrderedCollectionIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *OrderedCollection) SetLikedAnyURI(v *url.URL) { + t.liked = &likedOrderedCollectionIntermediateType{anyURI: v} } @@ -71006,14 +71010,14 @@ func (t *OrderedCollection) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *OrderedCollection) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *OrderedCollection) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *OrderedCollection) SetLikesAnyURI(v url.URL) { - t.likes = &likesOrderedCollectionIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *OrderedCollection) SetLikesAnyURI(v *url.URL) { + t.likes = &likesOrderedCollectionIntermediateType{anyURI: v} } @@ -71047,26 +71051,27 @@ func (t *OrderedCollection) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *OrderedCollection) GetStreams(index int) (v url.URL) { +func (t *OrderedCollection) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *OrderedCollection) AppendStreams(v url.URL) { +func (t *OrderedCollection) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *OrderedCollection) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *OrderedCollection) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *OrderedCollection) 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] } @@ -71117,14 +71122,14 @@ func (t *OrderedCollection) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *OrderedCollection) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *OrderedCollection) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *OrderedCollection) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameOrderedCollectionIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *OrderedCollection) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameOrderedCollectionIntermediateType{IRI: v} } @@ -71211,14 +71216,14 @@ func (t *OrderedCollection) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *OrderedCollection) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *OrderedCollection) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *OrderedCollection) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsOrderedCollectionIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *OrderedCollection) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsOrderedCollectionIntermediateType{IRI: v} } @@ -71252,14 +71257,14 @@ func (t *OrderedCollection) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *OrderedCollection) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *OrderedCollection) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *OrderedCollection) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *OrderedCollection) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -71291,14 +71296,14 @@ func (t *OrderedCollection) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *OrderedCollection) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *OrderedCollection) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *OrderedCollection) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *OrderedCollection) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -71330,14 +71335,14 @@ func (t *OrderedCollection) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *OrderedCollection) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *OrderedCollection) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *OrderedCollection) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *OrderedCollection) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -71369,14 +71374,14 @@ func (t *OrderedCollection) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *OrderedCollection) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *OrderedCollection) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *OrderedCollection) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *OrderedCollection) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -71408,14 +71413,14 @@ func (t *OrderedCollection) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *OrderedCollection) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *OrderedCollection) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *OrderedCollection) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *OrderedCollection) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -71447,14 +71452,14 @@ func (t *OrderedCollection) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *OrderedCollection) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *OrderedCollection) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *OrderedCollection) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *OrderedCollection) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -71546,18 +71551,18 @@ func (t *OrderedCollection) IsItemsIRI(index int) (ok bool) { } // GetItemsIRI is NOT a valid property for this type; calling its associated methods will always yield an empty-equivalent value such as false, nil, or empty string. This includes instances where it should return itself. This ugliness is a symptom of the fundamental design of the ActivityStream vocabulary as instead of 'W-is-a-X' relationships it contains the notion of 'W-is-a-X-except-for-Y'. -func (t *OrderedCollection) GetItemsIRI(index int) (v url.URL) { - return url.URL{} +func (t *OrderedCollection) GetItemsIRI(index int) (v *url.URL) { + return nil } // AppendItemsIRI is NOT a valid property for this type; calling its associated methods will always yield an empty-equivalent value such as false, nil, or empty string. This includes instances where it should return itself. This ugliness is a symptom of the fundamental design of the ActivityStream vocabulary as instead of 'W-is-a-X' relationships it contains the notion of 'W-is-a-X-except-for-Y'. -func (t *OrderedCollection) AppendItemsIRI(v url.URL) { +func (t *OrderedCollection) AppendItemsIRI(v *url.URL) { } // PrependItemsIRI is NOT a valid property for this type; calling its associated methods will always yield an empty-equivalent value such as false, nil, or empty string. This includes instances where it should return itself. This ugliness is a symptom of the fundamental design of the ActivityStream vocabulary as instead of 'W-is-a-X' relationships it contains the notion of 'W-is-a-X-except-for-Y'. -func (t *OrderedCollection) PrependItemsIRI(v url.URL) { +func (t *OrderedCollection) PrependItemsIRI(v *url.URL) { } @@ -71797,7 +71802,7 @@ func (t *OrderedCollection) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -72103,7 +72108,7 @@ func (t *OrderedCollection) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -72118,7 +72123,7 @@ func (t *OrderedCollection) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -72133,7 +72138,7 @@ func (t *OrderedCollection) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -72148,7 +72153,7 @@ func (t *OrderedCollection) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -72163,7 +72168,7 @@ func (t *OrderedCollection) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -72178,7 +72183,7 @@ func (t *OrderedCollection) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -73048,7 +73053,7 @@ func (t *OrderedCollection) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -73057,7 +73062,7 @@ func (t *OrderedCollection) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -73271,7 +73276,7 @@ func (t *orderedItemsOrderedCollectionIntermediateType) Serialize() (i interface return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -73354,7 +73359,7 @@ func (t *currentOrderedCollectionIntermediateType) Serialize() (i interface{}, e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -73437,7 +73442,7 @@ func (t *firstOrderedCollectionIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -73520,7 +73525,7 @@ func (t *lastOrderedCollectionIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -73574,7 +73579,7 @@ func (t *totalItemsOrderedCollectionIntermediateType) Serialize() (i interface{} return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -73628,7 +73633,7 @@ func (t *altitudeOrderedCollectionIntermediateType) Serialize() (i interface{}, return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -73711,7 +73716,7 @@ func (t *attachmentOrderedCollectionIntermediateType) Serialize() (i interface{} return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -73794,7 +73799,7 @@ func (t *attributedToOrderedCollectionIntermediateType) Serialize() (i interface return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -73877,7 +73882,7 @@ func (t *audienceOrderedCollectionIntermediateType) Serialize() (i interface{}, return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -73945,7 +73950,7 @@ func (t *contentOrderedCollectionIntermediateType) Serialize() (i interface{}, e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -74028,7 +74033,7 @@ func (t *contextOrderedCollectionIntermediateType) Serialize() (i interface{}, e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -74096,7 +74101,7 @@ func (t *nameOrderedCollectionIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -74150,7 +74155,7 @@ func (t *endTimeOrderedCollectionIntermediateType) Serialize() (i interface{}, e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -74233,7 +74238,7 @@ func (t *generatorOrderedCollectionIntermediateType) Serialize() (i interface{}, return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -74316,7 +74321,7 @@ func (t *iconOrderedCollectionIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -74399,7 +74404,7 @@ func (t *imageOrderedCollectionIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -74482,7 +74487,7 @@ func (t *inReplyToOrderedCollectionIntermediateType) Serialize() (i interface{}, return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -74565,7 +74570,7 @@ func (t *locationOrderedCollectionIntermediateType) Serialize() (i interface{}, return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -74648,7 +74653,7 @@ func (t *previewOrderedCollectionIntermediateType) Serialize() (i interface{}, e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -74702,7 +74707,7 @@ func (t *publishedOrderedCollectionIntermediateType) Serialize() (i interface{}, return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -74770,7 +74775,7 @@ func (t *repliesOrderedCollectionIntermediateType) Serialize() (i interface{}, e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -74824,7 +74829,7 @@ func (t *startTimeOrderedCollectionIntermediateType) Serialize() (i interface{}, return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -74892,7 +74897,7 @@ func (t *summaryOrderedCollectionIntermediateType) Serialize() (i interface{}, e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -74975,7 +74980,7 @@ func (t *tagOrderedCollectionIntermediateType) Serialize() (i interface{}, err e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -75029,7 +75034,7 @@ func (t *updatedOrderedCollectionIntermediateType) Serialize() (i interface{}, e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -75093,7 +75098,7 @@ func (t *urlOrderedCollectionIntermediateType) Deserialize(i interface{}) (err e // Serialize turns this object into an interface{}. func (t *urlOrderedCollectionIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -75180,7 +75185,7 @@ func (t *toOrderedCollectionIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -75263,7 +75268,7 @@ func (t *btoOrderedCollectionIntermediateType) Serialize() (i interface{}, err e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -75346,7 +75351,7 @@ func (t *ccOrderedCollectionIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -75429,7 +75434,7 @@ func (t *bccOrderedCollectionIntermediateType) Serialize() (i interface{}, err e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -75483,7 +75488,7 @@ func (t *mediaTypeOrderedCollectionIntermediateType) Serialize() (i interface{}, return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -75537,7 +75542,7 @@ func (t *durationOrderedCollectionIntermediateType) Serialize() (i interface{}, return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -75605,7 +75610,7 @@ func (t *sourceOrderedCollectionIntermediateType) Serialize() (i interface{}, er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -75673,7 +75678,7 @@ func (t *inboxOrderedCollectionIntermediateType) Serialize() (i interface{}, err return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -75741,7 +75746,7 @@ func (t *outboxOrderedCollectionIntermediateType) Serialize() (i interface{}, er return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -75824,7 +75829,7 @@ func (t *followingOrderedCollectionIntermediateType) Serialize() (i interface{}, return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -75907,7 +75912,7 @@ func (t *followersOrderedCollectionIntermediateType) Serialize() (i interface{}, return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -75990,7 +75995,7 @@ func (t *likedOrderedCollectionIntermediateType) Serialize() (i interface{}, err return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -76073,7 +76078,7 @@ func (t *likesOrderedCollectionIntermediateType) Serialize() (i interface{}, err return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -76127,7 +76132,7 @@ func (t *preferredUsernameOrderedCollectionIntermediateType) Serialize() (i inte return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -76195,7 +76200,7 @@ func (t *endpointsOrderedCollectionIntermediateType) Serialize() (i interface{}, return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -76301,7 +76306,7 @@ type CollectionPage struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesCollectionPageIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameCollectionPageIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -76365,14 +76370,14 @@ func (t *CollectionPage) IsPartOfIRI() (ok bool) { } // GetPartOfIRI returns the value safely if IsPartOfIRI returned true -func (t *CollectionPage) GetPartOfIRI() (v url.URL) { - return *t.partOf.IRI +func (t *CollectionPage) GetPartOfIRI() (v *url.URL) { + return t.partOf.IRI } -// SetPartOfIRI sets the value of partOf to be of url.URL type -func (t *CollectionPage) SetPartOfIRI(v url.URL) { - t.partOf = &partOfCollectionPageIntermediateType{IRI: &v} +// SetPartOfIRI sets the value of partOf to be of *url.URL type +func (t *CollectionPage) SetPartOfIRI(v *url.URL) { + t.partOf = &partOfCollectionPageIntermediateType{IRI: v} } @@ -76442,14 +76447,14 @@ func (t *CollectionPage) IsNextIRI() (ok bool) { } // GetNextIRI returns the value safely if IsNextIRI returned true -func (t *CollectionPage) GetNextIRI() (v url.URL) { - return *t.next.IRI +func (t *CollectionPage) GetNextIRI() (v *url.URL) { + return t.next.IRI } -// SetNextIRI sets the value of next to be of url.URL type -func (t *CollectionPage) SetNextIRI(v url.URL) { - t.next = &nextCollectionPageIntermediateType{IRI: &v} +// SetNextIRI sets the value of next to be of *url.URL type +func (t *CollectionPage) SetNextIRI(v *url.URL) { + t.next = &nextCollectionPageIntermediateType{IRI: v} } @@ -76519,14 +76524,14 @@ func (t *CollectionPage) IsPrevIRI() (ok bool) { } // GetPrevIRI returns the value safely if IsPrevIRI returned true -func (t *CollectionPage) GetPrevIRI() (v url.URL) { - return *t.prev.IRI +func (t *CollectionPage) GetPrevIRI() (v *url.URL) { + return t.prev.IRI } -// SetPrevIRI sets the value of prev to be of url.URL type -func (t *CollectionPage) SetPrevIRI(v url.URL) { - t.prev = &prevCollectionPageIntermediateType{IRI: &v} +// SetPrevIRI sets the value of prev to be of *url.URL type +func (t *CollectionPage) SetPrevIRI(v *url.URL) { + t.prev = &prevCollectionPageIntermediateType{IRI: v} } @@ -76578,14 +76583,14 @@ func (t *CollectionPage) IsTotalItemsIRI() (ok bool) { } // GetTotalItemsIRI returns the value safely if IsTotalItemsIRI returned true -func (t *CollectionPage) GetTotalItemsIRI() (v url.URL) { - return *t.totalItems.IRI +func (t *CollectionPage) GetTotalItemsIRI() (v *url.URL) { + return t.totalItems.IRI } -// SetTotalItemsIRI sets the value of totalItems to be of url.URL type -func (t *CollectionPage) SetTotalItemsIRI(v url.URL) { - t.totalItems = &totalItemsCollectionPageIntermediateType{IRI: &v} +// SetTotalItemsIRI sets the value of totalItems to be of *url.URL type +func (t *CollectionPage) SetTotalItemsIRI(v *url.URL) { + t.totalItems = &totalItemsCollectionPageIntermediateType{IRI: v} } @@ -76655,14 +76660,14 @@ func (t *CollectionPage) IsCurrentIRI() (ok bool) { } // GetCurrentIRI returns the value safely if IsCurrentIRI returned true -func (t *CollectionPage) GetCurrentIRI() (v url.URL) { - return *t.current.IRI +func (t *CollectionPage) GetCurrentIRI() (v *url.URL) { + return t.current.IRI } -// SetCurrentIRI sets the value of current to be of url.URL type -func (t *CollectionPage) SetCurrentIRI(v url.URL) { - t.current = ¤tCollectionPageIntermediateType{IRI: &v} +// SetCurrentIRI sets the value of current to be of *url.URL type +func (t *CollectionPage) SetCurrentIRI(v *url.URL) { + t.current = ¤tCollectionPageIntermediateType{IRI: v} } @@ -76732,14 +76737,14 @@ func (t *CollectionPage) IsFirstIRI() (ok bool) { } // GetFirstIRI returns the value safely if IsFirstIRI returned true -func (t *CollectionPage) GetFirstIRI() (v url.URL) { - return *t.first.IRI +func (t *CollectionPage) GetFirstIRI() (v *url.URL) { + return t.first.IRI } -// SetFirstIRI sets the value of first to be of url.URL type -func (t *CollectionPage) SetFirstIRI(v url.URL) { - t.first = &firstCollectionPageIntermediateType{IRI: &v} +// SetFirstIRI sets the value of first to be of *url.URL type +func (t *CollectionPage) SetFirstIRI(v *url.URL) { + t.first = &firstCollectionPageIntermediateType{IRI: v} } @@ -76809,14 +76814,14 @@ func (t *CollectionPage) IsLastIRI() (ok bool) { } // GetLastIRI returns the value safely if IsLastIRI returned true -func (t *CollectionPage) GetLastIRI() (v url.URL) { - return *t.last.IRI +func (t *CollectionPage) GetLastIRI() (v *url.URL) { + return t.last.IRI } -// SetLastIRI sets the value of last to be of url.URL type -func (t *CollectionPage) SetLastIRI(v url.URL) { - t.last = &lastCollectionPageIntermediateType{IRI: &v} +// SetLastIRI sets the value of last to be of *url.URL type +func (t *CollectionPage) SetLastIRI(v *url.URL) { + t.last = &lastCollectionPageIntermediateType{IRI: v} } @@ -76920,20 +76925,20 @@ func (t *CollectionPage) IsItemsIRI(index int) (ok bool) { } // GetItemsIRI returns the value safely if IsItemsIRI returned true for the specified index -func (t *CollectionPage) GetItemsIRI(index int) (v url.URL) { - return *t.items[index].IRI +func (t *CollectionPage) GetItemsIRI(index int) (v *url.URL) { + return t.items[index].IRI } -// AppendItemsIRI adds to the back of items a url.URL type -func (t *CollectionPage) AppendItemsIRI(v url.URL) { - t.items = append(t.items, &itemsCollectionPageIntermediateType{IRI: &v}) +// AppendItemsIRI adds to the back of items a *url.URL type +func (t *CollectionPage) AppendItemsIRI(v *url.URL) { + t.items = append(t.items, &itemsCollectionPageIntermediateType{IRI: v}) } -// PrependItemsIRI adds to the front of items a url.URL type -func (t *CollectionPage) PrependItemsIRI(v url.URL) { - t.items = append([]*itemsCollectionPageIntermediateType{&itemsCollectionPageIntermediateType{IRI: &v}}, t.items...) +// PrependItemsIRI adds to the front of items a *url.URL type +func (t *CollectionPage) PrependItemsIRI(v *url.URL) { + t.items = append([]*itemsCollectionPageIntermediateType{&itemsCollectionPageIntermediateType{IRI: v}}, t.items...) } @@ -76993,14 +76998,14 @@ func (t *CollectionPage) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *CollectionPage) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *CollectionPage) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *CollectionPage) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeCollectionPageIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *CollectionPage) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeCollectionPageIntermediateType{IRI: v} } @@ -77104,20 +77109,20 @@ func (t *CollectionPage) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *CollectionPage) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *CollectionPage) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *CollectionPage) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentCollectionPageIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *CollectionPage) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentCollectionPageIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *CollectionPage) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentCollectionPageIntermediateType{&attachmentCollectionPageIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *CollectionPage) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentCollectionPageIntermediateType{&attachmentCollectionPageIntermediateType{IRI: v}}, t.attachment...) } @@ -77229,20 +77234,20 @@ func (t *CollectionPage) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *CollectionPage) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *CollectionPage) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *CollectionPage) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToCollectionPageIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *CollectionPage) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToCollectionPageIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *CollectionPage) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToCollectionPageIntermediateType{&attributedToCollectionPageIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *CollectionPage) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToCollectionPageIntermediateType{&attributedToCollectionPageIntermediateType{IRI: v}}, t.attributedTo...) } @@ -77354,20 +77359,20 @@ func (t *CollectionPage) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *CollectionPage) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *CollectionPage) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *CollectionPage) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceCollectionPageIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *CollectionPage) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceCollectionPageIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *CollectionPage) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceCollectionPageIntermediateType{&audienceCollectionPageIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *CollectionPage) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceCollectionPageIntermediateType{&audienceCollectionPageIntermediateType{IRI: v}}, t.audience...) } @@ -77479,20 +77484,20 @@ func (t *CollectionPage) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *CollectionPage) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *CollectionPage) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *CollectionPage) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentCollectionPageIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *CollectionPage) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentCollectionPageIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *CollectionPage) PrependContentIRI(v url.URL) { - t.content = append([]*contentCollectionPageIntermediateType{&contentCollectionPageIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *CollectionPage) PrependContentIRI(v *url.URL) { + t.content = append([]*contentCollectionPageIntermediateType{&contentCollectionPageIntermediateType{IRI: v}}, t.content...) } @@ -77639,20 +77644,20 @@ func (t *CollectionPage) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *CollectionPage) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *CollectionPage) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *CollectionPage) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextCollectionPageIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *CollectionPage) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextCollectionPageIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *CollectionPage) PrependContextIRI(v url.URL) { - t.context = append([]*contextCollectionPageIntermediateType{&contextCollectionPageIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *CollectionPage) PrependContextIRI(v *url.URL) { + t.context = append([]*contextCollectionPageIntermediateType{&contextCollectionPageIntermediateType{IRI: v}}, t.context...) } @@ -77764,20 +77769,20 @@ func (t *CollectionPage) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *CollectionPage) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *CollectionPage) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *CollectionPage) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameCollectionPageIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *CollectionPage) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameCollectionPageIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *CollectionPage) PrependNameIRI(v url.URL) { - t.name = append([]*nameCollectionPageIntermediateType{&nameCollectionPageIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *CollectionPage) PrependNameIRI(v *url.URL) { + t.name = append([]*nameCollectionPageIntermediateType{&nameCollectionPageIntermediateType{IRI: v}}, t.name...) } @@ -77872,14 +77877,14 @@ func (t *CollectionPage) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *CollectionPage) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *CollectionPage) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *CollectionPage) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeCollectionPageIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *CollectionPage) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeCollectionPageIntermediateType{IRI: v} } @@ -77983,20 +77988,20 @@ func (t *CollectionPage) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *CollectionPage) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *CollectionPage) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *CollectionPage) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorCollectionPageIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *CollectionPage) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorCollectionPageIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *CollectionPage) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorCollectionPageIntermediateType{&generatorCollectionPageIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *CollectionPage) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorCollectionPageIntermediateType{&generatorCollectionPageIntermediateType{IRI: v}}, t.generator...) } @@ -78108,20 +78113,20 @@ func (t *CollectionPage) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *CollectionPage) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *CollectionPage) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *CollectionPage) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconCollectionPageIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *CollectionPage) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconCollectionPageIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *CollectionPage) PrependIconIRI(v url.URL) { - t.icon = append([]*iconCollectionPageIntermediateType{&iconCollectionPageIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *CollectionPage) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconCollectionPageIntermediateType{&iconCollectionPageIntermediateType{IRI: v}}, t.icon...) } @@ -78163,14 +78168,14 @@ func (t *CollectionPage) HasId() (ok bool) { } // GetId returns the value for id -func (t *CollectionPage) GetId() (v url.URL) { - return *t.id +func (t *CollectionPage) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *CollectionPage) SetId(v url.URL) { - t.id = &v +func (t *CollectionPage) SetId(v *url.URL) { + t.id = v } @@ -78272,20 +78277,20 @@ func (t *CollectionPage) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *CollectionPage) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *CollectionPage) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *CollectionPage) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageCollectionPageIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *CollectionPage) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageCollectionPageIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *CollectionPage) PrependImageIRI(v url.URL) { - t.image = append([]*imageCollectionPageIntermediateType{&imageCollectionPageIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *CollectionPage) PrependImageIRI(v *url.URL) { + t.image = append([]*imageCollectionPageIntermediateType{&imageCollectionPageIntermediateType{IRI: v}}, t.image...) } @@ -78397,20 +78402,20 @@ func (t *CollectionPage) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *CollectionPage) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *CollectionPage) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *CollectionPage) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToCollectionPageIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *CollectionPage) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToCollectionPageIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *CollectionPage) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToCollectionPageIntermediateType{&inReplyToCollectionPageIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *CollectionPage) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToCollectionPageIntermediateType{&inReplyToCollectionPageIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -78522,20 +78527,20 @@ func (t *CollectionPage) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *CollectionPage) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *CollectionPage) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *CollectionPage) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationCollectionPageIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *CollectionPage) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationCollectionPageIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *CollectionPage) PrependLocationIRI(v url.URL) { - t.location = append([]*locationCollectionPageIntermediateType{&locationCollectionPageIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *CollectionPage) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationCollectionPageIntermediateType{&locationCollectionPageIntermediateType{IRI: v}}, t.location...) } @@ -78647,20 +78652,20 @@ func (t *CollectionPage) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *CollectionPage) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *CollectionPage) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *CollectionPage) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewCollectionPageIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *CollectionPage) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewCollectionPageIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *CollectionPage) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewCollectionPageIntermediateType{&previewCollectionPageIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *CollectionPage) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewCollectionPageIntermediateType{&previewCollectionPageIntermediateType{IRI: v}}, t.preview...) } @@ -78720,14 +78725,14 @@ func (t *CollectionPage) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *CollectionPage) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *CollectionPage) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *CollectionPage) SetPublishedIRI(v url.URL) { - t.published = &publishedCollectionPageIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *CollectionPage) SetPublishedIRI(v *url.URL) { + t.published = &publishedCollectionPageIntermediateType{IRI: v} } @@ -78779,14 +78784,14 @@ func (t *CollectionPage) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *CollectionPage) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *CollectionPage) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *CollectionPage) SetRepliesIRI(v url.URL) { - t.replies = &repliesCollectionPageIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *CollectionPage) SetRepliesIRI(v *url.URL) { + t.replies = &repliesCollectionPageIntermediateType{IRI: v} } @@ -78838,14 +78843,14 @@ func (t *CollectionPage) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *CollectionPage) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *CollectionPage) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *CollectionPage) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeCollectionPageIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *CollectionPage) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeCollectionPageIntermediateType{IRI: v} } @@ -78949,20 +78954,20 @@ func (t *CollectionPage) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *CollectionPage) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *CollectionPage) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *CollectionPage) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryCollectionPageIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *CollectionPage) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryCollectionPageIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *CollectionPage) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryCollectionPageIntermediateType{&summaryCollectionPageIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *CollectionPage) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryCollectionPageIntermediateType{&summaryCollectionPageIntermediateType{IRI: v}}, t.summary...) } @@ -79109,20 +79114,20 @@ func (t *CollectionPage) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *CollectionPage) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *CollectionPage) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *CollectionPage) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagCollectionPageIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *CollectionPage) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagCollectionPageIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *CollectionPage) PrependTagIRI(v url.URL) { - t.tag = append([]*tagCollectionPageIntermediateType{&tagCollectionPageIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *CollectionPage) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagCollectionPageIntermediateType{&tagCollectionPageIntermediateType{IRI: v}}, t.tag...) } @@ -79214,14 +79219,14 @@ func (t *CollectionPage) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *CollectionPage) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *CollectionPage) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *CollectionPage) SetUpdatedIRI(v url.URL) { - t.updated = &updatedCollectionPageIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *CollectionPage) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedCollectionPageIntermediateType{IRI: v} } @@ -79261,20 +79266,20 @@ func (t *CollectionPage) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *CollectionPage) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *CollectionPage) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *CollectionPage) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlCollectionPageIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *CollectionPage) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlCollectionPageIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *CollectionPage) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlCollectionPageIntermediateType{&urlCollectionPageIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *CollectionPage) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlCollectionPageIntermediateType{&urlCollectionPageIntermediateType{anyURI: v}}, t.url...) } @@ -79418,20 +79423,20 @@ func (t *CollectionPage) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *CollectionPage) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *CollectionPage) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *CollectionPage) AppendToIRI(v url.URL) { - t.to = append(t.to, &toCollectionPageIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *CollectionPage) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toCollectionPageIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *CollectionPage) PrependToIRI(v url.URL) { - t.to = append([]*toCollectionPageIntermediateType{&toCollectionPageIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *CollectionPage) PrependToIRI(v *url.URL) { + t.to = append([]*toCollectionPageIntermediateType{&toCollectionPageIntermediateType{IRI: v}}, t.to...) } @@ -79543,20 +79548,20 @@ func (t *CollectionPage) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *CollectionPage) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *CollectionPage) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *CollectionPage) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoCollectionPageIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *CollectionPage) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoCollectionPageIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *CollectionPage) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoCollectionPageIntermediateType{&btoCollectionPageIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *CollectionPage) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoCollectionPageIntermediateType{&btoCollectionPageIntermediateType{IRI: v}}, t.bto...) } @@ -79668,20 +79673,20 @@ func (t *CollectionPage) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *CollectionPage) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *CollectionPage) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *CollectionPage) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccCollectionPageIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *CollectionPage) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccCollectionPageIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *CollectionPage) PrependCcIRI(v url.URL) { - t.cc = append([]*ccCollectionPageIntermediateType{&ccCollectionPageIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *CollectionPage) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccCollectionPageIntermediateType{&ccCollectionPageIntermediateType{IRI: v}}, t.cc...) } @@ -79793,20 +79798,20 @@ func (t *CollectionPage) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *CollectionPage) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *CollectionPage) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *CollectionPage) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccCollectionPageIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *CollectionPage) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccCollectionPageIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *CollectionPage) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccCollectionPageIntermediateType{&bccCollectionPageIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *CollectionPage) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccCollectionPageIntermediateType{&bccCollectionPageIntermediateType{IRI: v}}, t.bcc...) } @@ -79866,14 +79871,14 @@ func (t *CollectionPage) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *CollectionPage) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *CollectionPage) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *CollectionPage) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeCollectionPageIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *CollectionPage) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeCollectionPageIntermediateType{IRI: v} } @@ -79925,14 +79930,14 @@ func (t *CollectionPage) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *CollectionPage) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *CollectionPage) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *CollectionPage) SetDurationIRI(v url.URL) { - t.duration = &durationCollectionPageIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *CollectionPage) SetDurationIRI(v *url.URL) { + t.duration = &durationCollectionPageIntermediateType{IRI: v} } @@ -79984,14 +79989,14 @@ func (t *CollectionPage) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *CollectionPage) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *CollectionPage) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *CollectionPage) SetSourceIRI(v url.URL) { - t.source = &sourceCollectionPageIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *CollectionPage) SetSourceIRI(v *url.URL) { + t.source = &sourceCollectionPageIntermediateType{IRI: v} } @@ -80043,14 +80048,14 @@ func (t *CollectionPage) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *CollectionPage) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *CollectionPage) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *CollectionPage) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxCollectionPageIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *CollectionPage) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxCollectionPageIntermediateType{anyURI: v} } @@ -80102,14 +80107,14 @@ func (t *CollectionPage) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *CollectionPage) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *CollectionPage) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *CollectionPage) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxCollectionPageIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *CollectionPage) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxCollectionPageIntermediateType{anyURI: v} } @@ -80179,14 +80184,14 @@ func (t *CollectionPage) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *CollectionPage) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *CollectionPage) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *CollectionPage) SetFollowingAnyURI(v url.URL) { - t.following = &followingCollectionPageIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *CollectionPage) SetFollowingAnyURI(v *url.URL) { + t.following = &followingCollectionPageIntermediateType{anyURI: v} } @@ -80256,14 +80261,14 @@ func (t *CollectionPage) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *CollectionPage) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *CollectionPage) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *CollectionPage) SetFollowersAnyURI(v url.URL) { - t.followers = &followersCollectionPageIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *CollectionPage) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersCollectionPageIntermediateType{anyURI: v} } @@ -80333,14 +80338,14 @@ func (t *CollectionPage) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *CollectionPage) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *CollectionPage) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *CollectionPage) SetLikedAnyURI(v url.URL) { - t.liked = &likedCollectionPageIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *CollectionPage) SetLikedAnyURI(v *url.URL) { + t.liked = &likedCollectionPageIntermediateType{anyURI: v} } @@ -80410,14 +80415,14 @@ func (t *CollectionPage) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *CollectionPage) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *CollectionPage) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *CollectionPage) SetLikesAnyURI(v url.URL) { - t.likes = &likesCollectionPageIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *CollectionPage) SetLikesAnyURI(v *url.URL) { + t.likes = &likesCollectionPageIntermediateType{anyURI: v} } @@ -80451,26 +80456,27 @@ func (t *CollectionPage) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *CollectionPage) GetStreams(index int) (v url.URL) { +func (t *CollectionPage) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *CollectionPage) AppendStreams(v url.URL) { +func (t *CollectionPage) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *CollectionPage) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *CollectionPage) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *CollectionPage) 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] } @@ -80521,14 +80527,14 @@ func (t *CollectionPage) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *CollectionPage) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *CollectionPage) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *CollectionPage) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameCollectionPageIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *CollectionPage) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameCollectionPageIntermediateType{IRI: v} } @@ -80615,14 +80621,14 @@ func (t *CollectionPage) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *CollectionPage) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *CollectionPage) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *CollectionPage) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsCollectionPageIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *CollectionPage) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsCollectionPageIntermediateType{IRI: v} } @@ -80656,14 +80662,14 @@ func (t *CollectionPage) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *CollectionPage) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *CollectionPage) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *CollectionPage) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *CollectionPage) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -80695,14 +80701,14 @@ func (t *CollectionPage) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *CollectionPage) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *CollectionPage) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *CollectionPage) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *CollectionPage) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -80734,14 +80740,14 @@ func (t *CollectionPage) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *CollectionPage) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *CollectionPage) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *CollectionPage) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *CollectionPage) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -80773,14 +80779,14 @@ func (t *CollectionPage) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *CollectionPage) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *CollectionPage) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *CollectionPage) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *CollectionPage) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -80812,14 +80818,14 @@ func (t *CollectionPage) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *CollectionPage) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *CollectionPage) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *CollectionPage) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *CollectionPage) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -80851,14 +80857,14 @@ func (t *CollectionPage) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *CollectionPage) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *CollectionPage) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *CollectionPage) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *CollectionPage) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -81124,7 +81130,7 @@ func (t *CollectionPage) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -81430,7 +81436,7 @@ func (t *CollectionPage) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -81445,7 +81451,7 @@ func (t *CollectionPage) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -81460,7 +81466,7 @@ func (t *CollectionPage) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -81475,7 +81481,7 @@ func (t *CollectionPage) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -81490,7 +81496,7 @@ func (t *CollectionPage) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -81505,7 +81511,7 @@ func (t *CollectionPage) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -82408,7 +82414,7 @@ func (t *CollectionPage) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -82417,7 +82423,7 @@ func (t *CollectionPage) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -82631,7 +82637,7 @@ func (t *partOfCollectionPageIntermediateType) Serialize() (i interface{}, err e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -82714,7 +82720,7 @@ func (t *nextCollectionPageIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -82797,7 +82803,7 @@ func (t *prevCollectionPageIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -82851,7 +82857,7 @@ func (t *totalItemsCollectionPageIntermediateType) Serialize() (i interface{}, e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -82934,7 +82940,7 @@ func (t *currentCollectionPageIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -83017,7 +83023,7 @@ func (t *firstCollectionPageIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -83100,7 +83106,7 @@ func (t *lastCollectionPageIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -83183,7 +83189,7 @@ func (t *itemsCollectionPageIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -83237,7 +83243,7 @@ func (t *altitudeCollectionPageIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -83320,7 +83326,7 @@ func (t *attachmentCollectionPageIntermediateType) Serialize() (i interface{}, e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -83403,7 +83409,7 @@ func (t *attributedToCollectionPageIntermediateType) Serialize() (i interface{}, return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -83486,7 +83492,7 @@ func (t *audienceCollectionPageIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -83554,7 +83560,7 @@ func (t *contentCollectionPageIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -83637,7 +83643,7 @@ func (t *contextCollectionPageIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -83705,7 +83711,7 @@ func (t *nameCollectionPageIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -83759,7 +83765,7 @@ func (t *endTimeCollectionPageIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -83842,7 +83848,7 @@ func (t *generatorCollectionPageIntermediateType) Serialize() (i interface{}, er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -83925,7 +83931,7 @@ func (t *iconCollectionPageIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -84008,7 +84014,7 @@ func (t *imageCollectionPageIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -84091,7 +84097,7 @@ func (t *inReplyToCollectionPageIntermediateType) Serialize() (i interface{}, er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -84174,7 +84180,7 @@ func (t *locationCollectionPageIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -84257,7 +84263,7 @@ func (t *previewCollectionPageIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -84311,7 +84317,7 @@ func (t *publishedCollectionPageIntermediateType) Serialize() (i interface{}, er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -84379,7 +84385,7 @@ func (t *repliesCollectionPageIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -84433,7 +84439,7 @@ func (t *startTimeCollectionPageIntermediateType) Serialize() (i interface{}, er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -84501,7 +84507,7 @@ func (t *summaryCollectionPageIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -84584,7 +84590,7 @@ func (t *tagCollectionPageIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -84638,7 +84644,7 @@ func (t *updatedCollectionPageIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -84702,7 +84708,7 @@ func (t *urlCollectionPageIntermediateType) Deserialize(i interface{}) (err erro // Serialize turns this object into an interface{}. func (t *urlCollectionPageIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -84789,7 +84795,7 @@ func (t *toCollectionPageIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -84872,7 +84878,7 @@ func (t *btoCollectionPageIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -84955,7 +84961,7 @@ func (t *ccCollectionPageIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -85038,7 +85044,7 @@ func (t *bccCollectionPageIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -85092,7 +85098,7 @@ func (t *mediaTypeCollectionPageIntermediateType) Serialize() (i interface{}, er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -85146,7 +85152,7 @@ func (t *durationCollectionPageIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -85214,7 +85220,7 @@ func (t *sourceCollectionPageIntermediateType) Serialize() (i interface{}, err e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -85282,7 +85288,7 @@ func (t *inboxCollectionPageIntermediateType) Serialize() (i interface{}, err er return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -85350,7 +85356,7 @@ func (t *outboxCollectionPageIntermediateType) Serialize() (i interface{}, err e return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -85433,7 +85439,7 @@ func (t *followingCollectionPageIntermediateType) Serialize() (i interface{}, er return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -85516,7 +85522,7 @@ func (t *followersCollectionPageIntermediateType) Serialize() (i interface{}, er return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -85599,7 +85605,7 @@ func (t *likedCollectionPageIntermediateType) Serialize() (i interface{}, err er return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -85682,7 +85688,7 @@ func (t *likesCollectionPageIntermediateType) Serialize() (i interface{}, err er return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -85736,7 +85742,7 @@ func (t *preferredUsernameCollectionPageIntermediateType) Serialize() (i interfa return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -85804,7 +85810,7 @@ func (t *endpointsCollectionPageIntermediateType) Serialize() (i interface{}, er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -85910,7 +85916,7 @@ type OrderedCollectionPage struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesOrderedCollectionPageIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameOrderedCollectionPageIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -85958,14 +85964,14 @@ func (t *OrderedCollectionPage) IsStartIndexIRI() (ok bool) { } // GetStartIndexIRI returns the value safely if IsStartIndexIRI returned true -func (t *OrderedCollectionPage) GetStartIndexIRI() (v url.URL) { - return *t.startIndex.IRI +func (t *OrderedCollectionPage) GetStartIndexIRI() (v *url.URL) { + return t.startIndex.IRI } -// SetStartIndexIRI sets the value of startIndex to be of url.URL type -func (t *OrderedCollectionPage) SetStartIndexIRI(v url.URL) { - t.startIndex = &startIndexOrderedCollectionPageIntermediateType{IRI: &v} +// SetStartIndexIRI sets the value of startIndex to be of *url.URL type +func (t *OrderedCollectionPage) SetStartIndexIRI(v *url.URL) { + t.startIndex = &startIndexOrderedCollectionPageIntermediateType{IRI: v} } @@ -86035,14 +86041,14 @@ func (t *OrderedCollectionPage) IsNextIRI() (ok bool) { } // GetNextIRI returns the value safely if IsNextIRI returned true -func (t *OrderedCollectionPage) GetNextIRI() (v url.URL) { - return *t.next.IRI +func (t *OrderedCollectionPage) GetNextIRI() (v *url.URL) { + return t.next.IRI } -// SetNextIRI sets the value of next to be of url.URL type -func (t *OrderedCollectionPage) SetNextIRI(v url.URL) { - t.next = &nextOrderedCollectionPageIntermediateType{IRI: &v} +// SetNextIRI sets the value of next to be of *url.URL type +func (t *OrderedCollectionPage) SetNextIRI(v *url.URL) { + t.next = &nextOrderedCollectionPageIntermediateType{IRI: v} } @@ -86112,14 +86118,14 @@ func (t *OrderedCollectionPage) IsPrevIRI() (ok bool) { } // GetPrevIRI returns the value safely if IsPrevIRI returned true -func (t *OrderedCollectionPage) GetPrevIRI() (v url.URL) { - return *t.prev.IRI +func (t *OrderedCollectionPage) GetPrevIRI() (v *url.URL) { + return t.prev.IRI } -// SetPrevIRI sets the value of prev to be of url.URL type -func (t *OrderedCollectionPage) SetPrevIRI(v url.URL) { - t.prev = &prevOrderedCollectionPageIntermediateType{IRI: &v} +// SetPrevIRI sets the value of prev to be of *url.URL type +func (t *OrderedCollectionPage) SetPrevIRI(v *url.URL) { + t.prev = &prevOrderedCollectionPageIntermediateType{IRI: v} } @@ -86223,20 +86229,20 @@ func (t *OrderedCollectionPage) IsOrderedItemsIRI(index int) (ok bool) { } // GetOrderedItemsIRI returns the value safely if IsOrderedItemsIRI returned true for the specified index -func (t *OrderedCollectionPage) GetOrderedItemsIRI(index int) (v url.URL) { - return *t.orderedItems[index].IRI +func (t *OrderedCollectionPage) GetOrderedItemsIRI(index int) (v *url.URL) { + return t.orderedItems[index].IRI } -// AppendOrderedItemsIRI adds to the back of orderedItems a url.URL type -func (t *OrderedCollectionPage) AppendOrderedItemsIRI(v url.URL) { - t.orderedItems = append(t.orderedItems, &orderedItemsOrderedCollectionPageIntermediateType{IRI: &v}) +// AppendOrderedItemsIRI adds to the back of orderedItems a *url.URL type +func (t *OrderedCollectionPage) AppendOrderedItemsIRI(v *url.URL) { + t.orderedItems = append(t.orderedItems, &orderedItemsOrderedCollectionPageIntermediateType{IRI: v}) } -// PrependOrderedItemsIRI adds to the front of orderedItems a url.URL type -func (t *OrderedCollectionPage) PrependOrderedItemsIRI(v url.URL) { - t.orderedItems = append([]*orderedItemsOrderedCollectionPageIntermediateType{&orderedItemsOrderedCollectionPageIntermediateType{IRI: &v}}, t.orderedItems...) +// PrependOrderedItemsIRI adds to the front of orderedItems a *url.URL type +func (t *OrderedCollectionPage) PrependOrderedItemsIRI(v *url.URL) { + t.orderedItems = append([]*orderedItemsOrderedCollectionPageIntermediateType{&orderedItemsOrderedCollectionPageIntermediateType{IRI: v}}, t.orderedItems...) } @@ -86314,14 +86320,14 @@ func (t *OrderedCollectionPage) IsCurrentIRI() (ok bool) { } // GetCurrentIRI returns the value safely if IsCurrentIRI returned true -func (t *OrderedCollectionPage) GetCurrentIRI() (v url.URL) { - return *t.current.IRI +func (t *OrderedCollectionPage) GetCurrentIRI() (v *url.URL) { + return t.current.IRI } -// SetCurrentIRI sets the value of current to be of url.URL type -func (t *OrderedCollectionPage) SetCurrentIRI(v url.URL) { - t.current = ¤tOrderedCollectionPageIntermediateType{IRI: &v} +// SetCurrentIRI sets the value of current to be of *url.URL type +func (t *OrderedCollectionPage) SetCurrentIRI(v *url.URL) { + t.current = ¤tOrderedCollectionPageIntermediateType{IRI: v} } @@ -86391,14 +86397,14 @@ func (t *OrderedCollectionPage) IsFirstIRI() (ok bool) { } // GetFirstIRI returns the value safely if IsFirstIRI returned true -func (t *OrderedCollectionPage) GetFirstIRI() (v url.URL) { - return *t.first.IRI +func (t *OrderedCollectionPage) GetFirstIRI() (v *url.URL) { + return t.first.IRI } -// SetFirstIRI sets the value of first to be of url.URL type -func (t *OrderedCollectionPage) SetFirstIRI(v url.URL) { - t.first = &firstOrderedCollectionPageIntermediateType{IRI: &v} +// SetFirstIRI sets the value of first to be of *url.URL type +func (t *OrderedCollectionPage) SetFirstIRI(v *url.URL) { + t.first = &firstOrderedCollectionPageIntermediateType{IRI: v} } @@ -86468,14 +86474,14 @@ func (t *OrderedCollectionPage) IsLastIRI() (ok bool) { } // GetLastIRI returns the value safely if IsLastIRI returned true -func (t *OrderedCollectionPage) GetLastIRI() (v url.URL) { - return *t.last.IRI +func (t *OrderedCollectionPage) GetLastIRI() (v *url.URL) { + return t.last.IRI } -// SetLastIRI sets the value of last to be of url.URL type -func (t *OrderedCollectionPage) SetLastIRI(v url.URL) { - t.last = &lastOrderedCollectionPageIntermediateType{IRI: &v} +// SetLastIRI sets the value of last to be of *url.URL type +func (t *OrderedCollectionPage) SetLastIRI(v *url.URL) { + t.last = &lastOrderedCollectionPageIntermediateType{IRI: v} } @@ -86527,14 +86533,14 @@ func (t *OrderedCollectionPage) IsTotalItemsIRI() (ok bool) { } // GetTotalItemsIRI returns the value safely if IsTotalItemsIRI returned true -func (t *OrderedCollectionPage) GetTotalItemsIRI() (v url.URL) { - return *t.totalItems.IRI +func (t *OrderedCollectionPage) GetTotalItemsIRI() (v *url.URL) { + return t.totalItems.IRI } -// SetTotalItemsIRI sets the value of totalItems to be of url.URL type -func (t *OrderedCollectionPage) SetTotalItemsIRI(v url.URL) { - t.totalItems = &totalItemsOrderedCollectionPageIntermediateType{IRI: &v} +// SetTotalItemsIRI sets the value of totalItems to be of *url.URL type +func (t *OrderedCollectionPage) SetTotalItemsIRI(v *url.URL) { + t.totalItems = &totalItemsOrderedCollectionPageIntermediateType{IRI: v} } @@ -86586,14 +86592,14 @@ func (t *OrderedCollectionPage) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *OrderedCollectionPage) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *OrderedCollectionPage) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *OrderedCollectionPage) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeOrderedCollectionPageIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *OrderedCollectionPage) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeOrderedCollectionPageIntermediateType{IRI: v} } @@ -86697,20 +86703,20 @@ func (t *OrderedCollectionPage) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *OrderedCollectionPage) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *OrderedCollectionPage) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *OrderedCollectionPage) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentOrderedCollectionPageIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *OrderedCollectionPage) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentOrderedCollectionPageIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *OrderedCollectionPage) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentOrderedCollectionPageIntermediateType{&attachmentOrderedCollectionPageIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *OrderedCollectionPage) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentOrderedCollectionPageIntermediateType{&attachmentOrderedCollectionPageIntermediateType{IRI: v}}, t.attachment...) } @@ -86822,20 +86828,20 @@ func (t *OrderedCollectionPage) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *OrderedCollectionPage) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *OrderedCollectionPage) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *OrderedCollectionPage) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToOrderedCollectionPageIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *OrderedCollectionPage) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToOrderedCollectionPageIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *OrderedCollectionPage) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToOrderedCollectionPageIntermediateType{&attributedToOrderedCollectionPageIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *OrderedCollectionPage) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToOrderedCollectionPageIntermediateType{&attributedToOrderedCollectionPageIntermediateType{IRI: v}}, t.attributedTo...) } @@ -86947,20 +86953,20 @@ func (t *OrderedCollectionPage) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *OrderedCollectionPage) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *OrderedCollectionPage) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *OrderedCollectionPage) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceOrderedCollectionPageIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *OrderedCollectionPage) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceOrderedCollectionPageIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *OrderedCollectionPage) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceOrderedCollectionPageIntermediateType{&audienceOrderedCollectionPageIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *OrderedCollectionPage) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceOrderedCollectionPageIntermediateType{&audienceOrderedCollectionPageIntermediateType{IRI: v}}, t.audience...) } @@ -87072,20 +87078,20 @@ func (t *OrderedCollectionPage) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *OrderedCollectionPage) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *OrderedCollectionPage) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *OrderedCollectionPage) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentOrderedCollectionPageIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *OrderedCollectionPage) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentOrderedCollectionPageIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *OrderedCollectionPage) PrependContentIRI(v url.URL) { - t.content = append([]*contentOrderedCollectionPageIntermediateType{&contentOrderedCollectionPageIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *OrderedCollectionPage) PrependContentIRI(v *url.URL) { + t.content = append([]*contentOrderedCollectionPageIntermediateType{&contentOrderedCollectionPageIntermediateType{IRI: v}}, t.content...) } @@ -87232,20 +87238,20 @@ func (t *OrderedCollectionPage) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *OrderedCollectionPage) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *OrderedCollectionPage) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *OrderedCollectionPage) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextOrderedCollectionPageIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *OrderedCollectionPage) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextOrderedCollectionPageIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *OrderedCollectionPage) PrependContextIRI(v url.URL) { - t.context = append([]*contextOrderedCollectionPageIntermediateType{&contextOrderedCollectionPageIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *OrderedCollectionPage) PrependContextIRI(v *url.URL) { + t.context = append([]*contextOrderedCollectionPageIntermediateType{&contextOrderedCollectionPageIntermediateType{IRI: v}}, t.context...) } @@ -87357,20 +87363,20 @@ func (t *OrderedCollectionPage) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *OrderedCollectionPage) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *OrderedCollectionPage) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *OrderedCollectionPage) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameOrderedCollectionPageIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *OrderedCollectionPage) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameOrderedCollectionPageIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *OrderedCollectionPage) PrependNameIRI(v url.URL) { - t.name = append([]*nameOrderedCollectionPageIntermediateType{&nameOrderedCollectionPageIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *OrderedCollectionPage) PrependNameIRI(v *url.URL) { + t.name = append([]*nameOrderedCollectionPageIntermediateType{&nameOrderedCollectionPageIntermediateType{IRI: v}}, t.name...) } @@ -87465,14 +87471,14 @@ func (t *OrderedCollectionPage) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *OrderedCollectionPage) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *OrderedCollectionPage) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *OrderedCollectionPage) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeOrderedCollectionPageIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *OrderedCollectionPage) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeOrderedCollectionPageIntermediateType{IRI: v} } @@ -87576,20 +87582,20 @@ func (t *OrderedCollectionPage) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *OrderedCollectionPage) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *OrderedCollectionPage) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *OrderedCollectionPage) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorOrderedCollectionPageIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *OrderedCollectionPage) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorOrderedCollectionPageIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *OrderedCollectionPage) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorOrderedCollectionPageIntermediateType{&generatorOrderedCollectionPageIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *OrderedCollectionPage) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorOrderedCollectionPageIntermediateType{&generatorOrderedCollectionPageIntermediateType{IRI: v}}, t.generator...) } @@ -87701,20 +87707,20 @@ func (t *OrderedCollectionPage) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *OrderedCollectionPage) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *OrderedCollectionPage) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *OrderedCollectionPage) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconOrderedCollectionPageIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *OrderedCollectionPage) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconOrderedCollectionPageIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *OrderedCollectionPage) PrependIconIRI(v url.URL) { - t.icon = append([]*iconOrderedCollectionPageIntermediateType{&iconOrderedCollectionPageIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *OrderedCollectionPage) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconOrderedCollectionPageIntermediateType{&iconOrderedCollectionPageIntermediateType{IRI: v}}, t.icon...) } @@ -87756,14 +87762,14 @@ func (t *OrderedCollectionPage) HasId() (ok bool) { } // GetId returns the value for id -func (t *OrderedCollectionPage) GetId() (v url.URL) { - return *t.id +func (t *OrderedCollectionPage) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *OrderedCollectionPage) SetId(v url.URL) { - t.id = &v +func (t *OrderedCollectionPage) SetId(v *url.URL) { + t.id = v } @@ -87865,20 +87871,20 @@ func (t *OrderedCollectionPage) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *OrderedCollectionPage) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *OrderedCollectionPage) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *OrderedCollectionPage) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageOrderedCollectionPageIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *OrderedCollectionPage) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageOrderedCollectionPageIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *OrderedCollectionPage) PrependImageIRI(v url.URL) { - t.image = append([]*imageOrderedCollectionPageIntermediateType{&imageOrderedCollectionPageIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *OrderedCollectionPage) PrependImageIRI(v *url.URL) { + t.image = append([]*imageOrderedCollectionPageIntermediateType{&imageOrderedCollectionPageIntermediateType{IRI: v}}, t.image...) } @@ -87990,20 +87996,20 @@ func (t *OrderedCollectionPage) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *OrderedCollectionPage) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *OrderedCollectionPage) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *OrderedCollectionPage) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToOrderedCollectionPageIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *OrderedCollectionPage) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToOrderedCollectionPageIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *OrderedCollectionPage) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToOrderedCollectionPageIntermediateType{&inReplyToOrderedCollectionPageIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *OrderedCollectionPage) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToOrderedCollectionPageIntermediateType{&inReplyToOrderedCollectionPageIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -88115,20 +88121,20 @@ func (t *OrderedCollectionPage) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *OrderedCollectionPage) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *OrderedCollectionPage) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *OrderedCollectionPage) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationOrderedCollectionPageIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *OrderedCollectionPage) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationOrderedCollectionPageIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *OrderedCollectionPage) PrependLocationIRI(v url.URL) { - t.location = append([]*locationOrderedCollectionPageIntermediateType{&locationOrderedCollectionPageIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *OrderedCollectionPage) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationOrderedCollectionPageIntermediateType{&locationOrderedCollectionPageIntermediateType{IRI: v}}, t.location...) } @@ -88240,20 +88246,20 @@ func (t *OrderedCollectionPage) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *OrderedCollectionPage) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *OrderedCollectionPage) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *OrderedCollectionPage) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewOrderedCollectionPageIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *OrderedCollectionPage) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewOrderedCollectionPageIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *OrderedCollectionPage) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewOrderedCollectionPageIntermediateType{&previewOrderedCollectionPageIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *OrderedCollectionPage) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewOrderedCollectionPageIntermediateType{&previewOrderedCollectionPageIntermediateType{IRI: v}}, t.preview...) } @@ -88313,14 +88319,14 @@ func (t *OrderedCollectionPage) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *OrderedCollectionPage) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *OrderedCollectionPage) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *OrderedCollectionPage) SetPublishedIRI(v url.URL) { - t.published = &publishedOrderedCollectionPageIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *OrderedCollectionPage) SetPublishedIRI(v *url.URL) { + t.published = &publishedOrderedCollectionPageIntermediateType{IRI: v} } @@ -88372,14 +88378,14 @@ func (t *OrderedCollectionPage) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *OrderedCollectionPage) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *OrderedCollectionPage) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *OrderedCollectionPage) SetRepliesIRI(v url.URL) { - t.replies = &repliesOrderedCollectionPageIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *OrderedCollectionPage) SetRepliesIRI(v *url.URL) { + t.replies = &repliesOrderedCollectionPageIntermediateType{IRI: v} } @@ -88431,14 +88437,14 @@ func (t *OrderedCollectionPage) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *OrderedCollectionPage) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *OrderedCollectionPage) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *OrderedCollectionPage) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeOrderedCollectionPageIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *OrderedCollectionPage) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeOrderedCollectionPageIntermediateType{IRI: v} } @@ -88542,20 +88548,20 @@ func (t *OrderedCollectionPage) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *OrderedCollectionPage) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *OrderedCollectionPage) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *OrderedCollectionPage) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryOrderedCollectionPageIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *OrderedCollectionPage) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryOrderedCollectionPageIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *OrderedCollectionPage) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryOrderedCollectionPageIntermediateType{&summaryOrderedCollectionPageIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *OrderedCollectionPage) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryOrderedCollectionPageIntermediateType{&summaryOrderedCollectionPageIntermediateType{IRI: v}}, t.summary...) } @@ -88702,20 +88708,20 @@ func (t *OrderedCollectionPage) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *OrderedCollectionPage) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *OrderedCollectionPage) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *OrderedCollectionPage) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagOrderedCollectionPageIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *OrderedCollectionPage) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagOrderedCollectionPageIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *OrderedCollectionPage) PrependTagIRI(v url.URL) { - t.tag = append([]*tagOrderedCollectionPageIntermediateType{&tagOrderedCollectionPageIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *OrderedCollectionPage) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagOrderedCollectionPageIntermediateType{&tagOrderedCollectionPageIntermediateType{IRI: v}}, t.tag...) } @@ -88807,14 +88813,14 @@ func (t *OrderedCollectionPage) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *OrderedCollectionPage) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *OrderedCollectionPage) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *OrderedCollectionPage) SetUpdatedIRI(v url.URL) { - t.updated = &updatedOrderedCollectionPageIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *OrderedCollectionPage) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedOrderedCollectionPageIntermediateType{IRI: v} } @@ -88854,20 +88860,20 @@ func (t *OrderedCollectionPage) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *OrderedCollectionPage) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *OrderedCollectionPage) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *OrderedCollectionPage) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlOrderedCollectionPageIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *OrderedCollectionPage) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlOrderedCollectionPageIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *OrderedCollectionPage) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlOrderedCollectionPageIntermediateType{&urlOrderedCollectionPageIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *OrderedCollectionPage) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlOrderedCollectionPageIntermediateType{&urlOrderedCollectionPageIntermediateType{anyURI: v}}, t.url...) } @@ -89011,20 +89017,20 @@ func (t *OrderedCollectionPage) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *OrderedCollectionPage) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *OrderedCollectionPage) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *OrderedCollectionPage) AppendToIRI(v url.URL) { - t.to = append(t.to, &toOrderedCollectionPageIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *OrderedCollectionPage) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toOrderedCollectionPageIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *OrderedCollectionPage) PrependToIRI(v url.URL) { - t.to = append([]*toOrderedCollectionPageIntermediateType{&toOrderedCollectionPageIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *OrderedCollectionPage) PrependToIRI(v *url.URL) { + t.to = append([]*toOrderedCollectionPageIntermediateType{&toOrderedCollectionPageIntermediateType{IRI: v}}, t.to...) } @@ -89136,20 +89142,20 @@ func (t *OrderedCollectionPage) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *OrderedCollectionPage) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *OrderedCollectionPage) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *OrderedCollectionPage) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoOrderedCollectionPageIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *OrderedCollectionPage) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoOrderedCollectionPageIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *OrderedCollectionPage) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoOrderedCollectionPageIntermediateType{&btoOrderedCollectionPageIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *OrderedCollectionPage) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoOrderedCollectionPageIntermediateType{&btoOrderedCollectionPageIntermediateType{IRI: v}}, t.bto...) } @@ -89261,20 +89267,20 @@ func (t *OrderedCollectionPage) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *OrderedCollectionPage) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *OrderedCollectionPage) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *OrderedCollectionPage) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccOrderedCollectionPageIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *OrderedCollectionPage) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccOrderedCollectionPageIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *OrderedCollectionPage) PrependCcIRI(v url.URL) { - t.cc = append([]*ccOrderedCollectionPageIntermediateType{&ccOrderedCollectionPageIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *OrderedCollectionPage) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccOrderedCollectionPageIntermediateType{&ccOrderedCollectionPageIntermediateType{IRI: v}}, t.cc...) } @@ -89386,20 +89392,20 @@ func (t *OrderedCollectionPage) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *OrderedCollectionPage) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *OrderedCollectionPage) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *OrderedCollectionPage) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccOrderedCollectionPageIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *OrderedCollectionPage) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccOrderedCollectionPageIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *OrderedCollectionPage) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccOrderedCollectionPageIntermediateType{&bccOrderedCollectionPageIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *OrderedCollectionPage) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccOrderedCollectionPageIntermediateType{&bccOrderedCollectionPageIntermediateType{IRI: v}}, t.bcc...) } @@ -89459,14 +89465,14 @@ func (t *OrderedCollectionPage) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *OrderedCollectionPage) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *OrderedCollectionPage) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *OrderedCollectionPage) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeOrderedCollectionPageIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *OrderedCollectionPage) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeOrderedCollectionPageIntermediateType{IRI: v} } @@ -89518,14 +89524,14 @@ func (t *OrderedCollectionPage) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *OrderedCollectionPage) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *OrderedCollectionPage) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *OrderedCollectionPage) SetDurationIRI(v url.URL) { - t.duration = &durationOrderedCollectionPageIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *OrderedCollectionPage) SetDurationIRI(v *url.URL) { + t.duration = &durationOrderedCollectionPageIntermediateType{IRI: v} } @@ -89577,14 +89583,14 @@ func (t *OrderedCollectionPage) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *OrderedCollectionPage) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *OrderedCollectionPage) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *OrderedCollectionPage) SetSourceIRI(v url.URL) { - t.source = &sourceOrderedCollectionPageIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *OrderedCollectionPage) SetSourceIRI(v *url.URL) { + t.source = &sourceOrderedCollectionPageIntermediateType{IRI: v} } @@ -89636,14 +89642,14 @@ func (t *OrderedCollectionPage) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *OrderedCollectionPage) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *OrderedCollectionPage) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *OrderedCollectionPage) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxOrderedCollectionPageIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *OrderedCollectionPage) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxOrderedCollectionPageIntermediateType{anyURI: v} } @@ -89695,14 +89701,14 @@ func (t *OrderedCollectionPage) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *OrderedCollectionPage) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *OrderedCollectionPage) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *OrderedCollectionPage) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxOrderedCollectionPageIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *OrderedCollectionPage) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxOrderedCollectionPageIntermediateType{anyURI: v} } @@ -89772,14 +89778,14 @@ func (t *OrderedCollectionPage) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *OrderedCollectionPage) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *OrderedCollectionPage) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *OrderedCollectionPage) SetFollowingAnyURI(v url.URL) { - t.following = &followingOrderedCollectionPageIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *OrderedCollectionPage) SetFollowingAnyURI(v *url.URL) { + t.following = &followingOrderedCollectionPageIntermediateType{anyURI: v} } @@ -89849,14 +89855,14 @@ func (t *OrderedCollectionPage) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *OrderedCollectionPage) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *OrderedCollectionPage) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *OrderedCollectionPage) SetFollowersAnyURI(v url.URL) { - t.followers = &followersOrderedCollectionPageIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *OrderedCollectionPage) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersOrderedCollectionPageIntermediateType{anyURI: v} } @@ -89926,14 +89932,14 @@ func (t *OrderedCollectionPage) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *OrderedCollectionPage) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *OrderedCollectionPage) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *OrderedCollectionPage) SetLikedAnyURI(v url.URL) { - t.liked = &likedOrderedCollectionPageIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *OrderedCollectionPage) SetLikedAnyURI(v *url.URL) { + t.liked = &likedOrderedCollectionPageIntermediateType{anyURI: v} } @@ -90003,14 +90009,14 @@ func (t *OrderedCollectionPage) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *OrderedCollectionPage) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *OrderedCollectionPage) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *OrderedCollectionPage) SetLikesAnyURI(v url.URL) { - t.likes = &likesOrderedCollectionPageIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *OrderedCollectionPage) SetLikesAnyURI(v *url.URL) { + t.likes = &likesOrderedCollectionPageIntermediateType{anyURI: v} } @@ -90044,26 +90050,27 @@ func (t *OrderedCollectionPage) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *OrderedCollectionPage) GetStreams(index int) (v url.URL) { +func (t *OrderedCollectionPage) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *OrderedCollectionPage) AppendStreams(v url.URL) { +func (t *OrderedCollectionPage) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *OrderedCollectionPage) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *OrderedCollectionPage) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *OrderedCollectionPage) 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] } @@ -90114,14 +90121,14 @@ func (t *OrderedCollectionPage) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *OrderedCollectionPage) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *OrderedCollectionPage) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *OrderedCollectionPage) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameOrderedCollectionPageIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *OrderedCollectionPage) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameOrderedCollectionPageIntermediateType{IRI: v} } @@ -90208,14 +90215,14 @@ func (t *OrderedCollectionPage) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *OrderedCollectionPage) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *OrderedCollectionPage) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *OrderedCollectionPage) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsOrderedCollectionPageIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *OrderedCollectionPage) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsOrderedCollectionPageIntermediateType{IRI: v} } @@ -90249,14 +90256,14 @@ func (t *OrderedCollectionPage) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *OrderedCollectionPage) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *OrderedCollectionPage) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *OrderedCollectionPage) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *OrderedCollectionPage) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -90288,14 +90295,14 @@ func (t *OrderedCollectionPage) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *OrderedCollectionPage) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *OrderedCollectionPage) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *OrderedCollectionPage) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *OrderedCollectionPage) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -90327,14 +90334,14 @@ func (t *OrderedCollectionPage) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *OrderedCollectionPage) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *OrderedCollectionPage) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *OrderedCollectionPage) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *OrderedCollectionPage) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -90366,14 +90373,14 @@ func (t *OrderedCollectionPage) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *OrderedCollectionPage) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *OrderedCollectionPage) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *OrderedCollectionPage) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *OrderedCollectionPage) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -90405,14 +90412,14 @@ func (t *OrderedCollectionPage) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *OrderedCollectionPage) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *OrderedCollectionPage) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *OrderedCollectionPage) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *OrderedCollectionPage) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -90444,14 +90451,14 @@ func (t *OrderedCollectionPage) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *OrderedCollectionPage) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *OrderedCollectionPage) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *OrderedCollectionPage) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *OrderedCollectionPage) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -90519,14 +90526,14 @@ func (t *OrderedCollectionPage) IsPartOfIRI() (ok bool) { } // GetPartOfIRI returns the value safely if IsPartOfIRI returned true -func (t *OrderedCollectionPage) GetPartOfIRI() (v url.URL) { - return *t.partOf.IRI +func (t *OrderedCollectionPage) GetPartOfIRI() (v *url.URL) { + return t.partOf.IRI } -// SetPartOfIRI sets the value of partOf to be of url.URL type -func (t *OrderedCollectionPage) SetPartOfIRI(v url.URL) { - t.partOf = &partOfOrderedCollectionPageIntermediateType{IRI: &v} +// SetPartOfIRI sets the value of partOf to be of *url.URL type +func (t *OrderedCollectionPage) SetPartOfIRI(v *url.URL) { + t.partOf = &partOfOrderedCollectionPageIntermediateType{IRI: v} } @@ -90620,18 +90627,18 @@ func (t *OrderedCollectionPage) IsItemsIRI(index int) (ok bool) { } // GetItemsIRI is NOT a valid property for this type; calling its associated methods will always yield an empty-equivalent value such as false, nil, or empty string. This includes instances where it should return itself. This ugliness is a symptom of the fundamental design of the ActivityStream vocabulary as instead of 'W-is-a-X' relationships it contains the notion of 'W-is-a-X-except-for-Y'. -func (t *OrderedCollectionPage) GetItemsIRI(index int) (v url.URL) { - return url.URL{} +func (t *OrderedCollectionPage) GetItemsIRI(index int) (v *url.URL) { + return nil } // AppendItemsIRI is NOT a valid property for this type; calling its associated methods will always yield an empty-equivalent value such as false, nil, or empty string. This includes instances where it should return itself. This ugliness is a symptom of the fundamental design of the ActivityStream vocabulary as instead of 'W-is-a-X' relationships it contains the notion of 'W-is-a-X-except-for-Y'. -func (t *OrderedCollectionPage) AppendItemsIRI(v url.URL) { +func (t *OrderedCollectionPage) AppendItemsIRI(v *url.URL) { } // PrependItemsIRI is NOT a valid property for this type; calling its associated methods will always yield an empty-equivalent value such as false, nil, or empty string. This includes instances where it should return itself. This ugliness is a symptom of the fundamental design of the ActivityStream vocabulary as instead of 'W-is-a-X' relationships it contains the notion of 'W-is-a-X-except-for-Y'. -func (t *OrderedCollectionPage) PrependItemsIRI(v url.URL) { +func (t *OrderedCollectionPage) PrependItemsIRI(v *url.URL) { } @@ -90898,7 +90905,7 @@ func (t *OrderedCollectionPage) Serialize() (m map[string]interface{}, err error if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -91204,7 +91211,7 @@ func (t *OrderedCollectionPage) Serialize() (m map[string]interface{}, err error if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -91219,7 +91226,7 @@ func (t *OrderedCollectionPage) Serialize() (m map[string]interface{}, err error if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -91234,7 +91241,7 @@ func (t *OrderedCollectionPage) Serialize() (m map[string]interface{}, err error if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -91249,7 +91256,7 @@ func (t *OrderedCollectionPage) Serialize() (m map[string]interface{}, err error if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -91264,7 +91271,7 @@ func (t *OrderedCollectionPage) Serialize() (m map[string]interface{}, err error if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -91279,7 +91286,7 @@ func (t *OrderedCollectionPage) Serialize() (m map[string]interface{}, err error if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -92191,7 +92198,7 @@ func (t *OrderedCollectionPage) Deserialize(m map[string]interface{}) (err error if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -92200,7 +92207,7 @@ func (t *OrderedCollectionPage) Deserialize(m map[string]interface{}) (err error if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -92396,7 +92403,7 @@ func (t *startIndexOrderedCollectionPageIntermediateType) Serialize() (i interfa return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -92479,7 +92486,7 @@ func (t *nextOrderedCollectionPageIntermediateType) Serialize() (i interface{}, return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -92562,7 +92569,7 @@ func (t *prevOrderedCollectionPageIntermediateType) Serialize() (i interface{}, return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -92645,7 +92652,7 @@ func (t *orderedItemsOrderedCollectionPageIntermediateType) Serialize() (i inter return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -92728,7 +92735,7 @@ func (t *currentOrderedCollectionPageIntermediateType) Serialize() (i interface{ return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -92811,7 +92818,7 @@ func (t *firstOrderedCollectionPageIntermediateType) Serialize() (i interface{}, return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -92894,7 +92901,7 @@ func (t *lastOrderedCollectionPageIntermediateType) Serialize() (i interface{}, return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -92948,7 +92955,7 @@ func (t *totalItemsOrderedCollectionPageIntermediateType) Serialize() (i interfa return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -93002,7 +93009,7 @@ func (t *altitudeOrderedCollectionPageIntermediateType) Serialize() (i interface return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -93085,7 +93092,7 @@ func (t *attachmentOrderedCollectionPageIntermediateType) Serialize() (i interfa return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -93168,7 +93175,7 @@ func (t *attributedToOrderedCollectionPageIntermediateType) Serialize() (i inter return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -93251,7 +93258,7 @@ func (t *audienceOrderedCollectionPageIntermediateType) Serialize() (i interface return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -93319,7 +93326,7 @@ func (t *contentOrderedCollectionPageIntermediateType) Serialize() (i interface{ return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -93402,7 +93409,7 @@ func (t *contextOrderedCollectionPageIntermediateType) Serialize() (i interface{ return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -93470,7 +93477,7 @@ func (t *nameOrderedCollectionPageIntermediateType) Serialize() (i interface{}, return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -93524,7 +93531,7 @@ func (t *endTimeOrderedCollectionPageIntermediateType) Serialize() (i interface{ return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -93607,7 +93614,7 @@ func (t *generatorOrderedCollectionPageIntermediateType) Serialize() (i interfac return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -93690,7 +93697,7 @@ func (t *iconOrderedCollectionPageIntermediateType) Serialize() (i interface{}, return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -93773,7 +93780,7 @@ func (t *imageOrderedCollectionPageIntermediateType) Serialize() (i interface{}, return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -93856,7 +93863,7 @@ func (t *inReplyToOrderedCollectionPageIntermediateType) Serialize() (i interfac return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -93939,7 +93946,7 @@ func (t *locationOrderedCollectionPageIntermediateType) Serialize() (i interface return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -94022,7 +94029,7 @@ func (t *previewOrderedCollectionPageIntermediateType) Serialize() (i interface{ return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -94076,7 +94083,7 @@ func (t *publishedOrderedCollectionPageIntermediateType) Serialize() (i interfac return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -94144,7 +94151,7 @@ func (t *repliesOrderedCollectionPageIntermediateType) Serialize() (i interface{ return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -94198,7 +94205,7 @@ func (t *startTimeOrderedCollectionPageIntermediateType) Serialize() (i interfac return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -94266,7 +94273,7 @@ func (t *summaryOrderedCollectionPageIntermediateType) Serialize() (i interface{ return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -94349,7 +94356,7 @@ func (t *tagOrderedCollectionPageIntermediateType) Serialize() (i interface{}, e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -94403,7 +94410,7 @@ func (t *updatedOrderedCollectionPageIntermediateType) Serialize() (i interface{ return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -94467,7 +94474,7 @@ func (t *urlOrderedCollectionPageIntermediateType) Deserialize(i interface{}) (e // Serialize turns this object into an interface{}. func (t *urlOrderedCollectionPageIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -94554,7 +94561,7 @@ func (t *toOrderedCollectionPageIntermediateType) Serialize() (i interface{}, er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -94637,7 +94644,7 @@ func (t *btoOrderedCollectionPageIntermediateType) Serialize() (i interface{}, e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -94720,7 +94727,7 @@ func (t *ccOrderedCollectionPageIntermediateType) Serialize() (i interface{}, er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -94803,7 +94810,7 @@ func (t *bccOrderedCollectionPageIntermediateType) Serialize() (i interface{}, e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -94857,7 +94864,7 @@ func (t *mediaTypeOrderedCollectionPageIntermediateType) Serialize() (i interfac return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -94911,7 +94918,7 @@ func (t *durationOrderedCollectionPageIntermediateType) Serialize() (i interface return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -94979,7 +94986,7 @@ func (t *sourceOrderedCollectionPageIntermediateType) Serialize() (i interface{} return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -95047,7 +95054,7 @@ func (t *inboxOrderedCollectionPageIntermediateType) Serialize() (i interface{}, return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -95115,7 +95122,7 @@ func (t *outboxOrderedCollectionPageIntermediateType) Serialize() (i interface{} return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -95198,7 +95205,7 @@ func (t *followingOrderedCollectionPageIntermediateType) Serialize() (i interfac return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -95281,7 +95288,7 @@ func (t *followersOrderedCollectionPageIntermediateType) Serialize() (i interfac return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -95364,7 +95371,7 @@ func (t *likedOrderedCollectionPageIntermediateType) Serialize() (i interface{}, return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -95447,7 +95454,7 @@ func (t *likesOrderedCollectionPageIntermediateType) Serialize() (i interface{}, return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -95501,7 +95508,7 @@ func (t *preferredUsernameOrderedCollectionPageIntermediateType) Serialize() (i return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -95569,7 +95576,7 @@ func (t *endpointsOrderedCollectionPageIntermediateType) Serialize() (i interfac return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -95652,7 +95659,7 @@ func (t *partOfOrderedCollectionPageIntermediateType) Serialize() (i interface{} return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -95754,7 +95761,7 @@ type Accept struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesAcceptIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameAcceptIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -95852,20 +95859,20 @@ func (t *Accept) IsActorIRI(index int) (ok bool) { } // GetActorIRI returns the value safely if IsActorIRI returned true for the specified index -func (t *Accept) GetActorIRI(index int) (v url.URL) { - return *t.actor[index].IRI +func (t *Accept) GetActorIRI(index int) (v *url.URL) { + return t.actor[index].IRI } -// AppendActorIRI adds to the back of actor a url.URL type -func (t *Accept) AppendActorIRI(v url.URL) { - t.actor = append(t.actor, &actorAcceptIntermediateType{IRI: &v}) +// AppendActorIRI adds to the back of actor a *url.URL type +func (t *Accept) AppendActorIRI(v *url.URL) { + t.actor = append(t.actor, &actorAcceptIntermediateType{IRI: v}) } -// PrependActorIRI adds to the front of actor a url.URL type -func (t *Accept) PrependActorIRI(v url.URL) { - t.actor = append([]*actorAcceptIntermediateType{&actorAcceptIntermediateType{IRI: &v}}, t.actor...) +// PrependActorIRI adds to the front of actor a *url.URL type +func (t *Accept) PrependActorIRI(v *url.URL) { + t.actor = append([]*actorAcceptIntermediateType{&actorAcceptIntermediateType{IRI: v}}, t.actor...) } @@ -95945,20 +95952,20 @@ func (t *Accept) IsObjectIRI(index int) (ok bool) { } // GetObjectIRI returns the value safely if IsObjectIRI returned true for the specified index -func (t *Accept) GetObjectIRI(index int) (v url.URL) { - return *t.object[index].IRI +func (t *Accept) GetObjectIRI(index int) (v *url.URL) { + return t.object[index].IRI } -// AppendObjectIRI adds to the back of object a url.URL type -func (t *Accept) AppendObjectIRI(v url.URL) { - t.object = append(t.object, &objectAcceptIntermediateType{IRI: &v}) +// AppendObjectIRI adds to the back of object a *url.URL type +func (t *Accept) AppendObjectIRI(v *url.URL) { + t.object = append(t.object, &objectAcceptIntermediateType{IRI: v}) } -// PrependObjectIRI adds to the front of object a url.URL type -func (t *Accept) PrependObjectIRI(v url.URL) { - t.object = append([]*objectAcceptIntermediateType{&objectAcceptIntermediateType{IRI: &v}}, t.object...) +// PrependObjectIRI adds to the front of object a *url.URL type +func (t *Accept) PrependObjectIRI(v *url.URL) { + t.object = append([]*objectAcceptIntermediateType{&objectAcceptIntermediateType{IRI: v}}, t.object...) } @@ -96070,20 +96077,20 @@ func (t *Accept) IsTargetIRI(index int) (ok bool) { } // GetTargetIRI returns the value safely if IsTargetIRI returned true for the specified index -func (t *Accept) GetTargetIRI(index int) (v url.URL) { - return *t.target[index].IRI +func (t *Accept) GetTargetIRI(index int) (v *url.URL) { + return t.target[index].IRI } -// AppendTargetIRI adds to the back of target a url.URL type -func (t *Accept) AppendTargetIRI(v url.URL) { - t.target = append(t.target, &targetAcceptIntermediateType{IRI: &v}) +// AppendTargetIRI adds to the back of target a *url.URL type +func (t *Accept) AppendTargetIRI(v *url.URL) { + t.target = append(t.target, &targetAcceptIntermediateType{IRI: v}) } -// PrependTargetIRI adds to the front of target a url.URL type -func (t *Accept) PrependTargetIRI(v url.URL) { - t.target = append([]*targetAcceptIntermediateType{&targetAcceptIntermediateType{IRI: &v}}, t.target...) +// PrependTargetIRI adds to the front of target a *url.URL type +func (t *Accept) PrependTargetIRI(v *url.URL) { + t.target = append([]*targetAcceptIntermediateType{&targetAcceptIntermediateType{IRI: v}}, t.target...) } @@ -96195,20 +96202,20 @@ func (t *Accept) IsResultIRI(index int) (ok bool) { } // GetResultIRI returns the value safely if IsResultIRI returned true for the specified index -func (t *Accept) GetResultIRI(index int) (v url.URL) { - return *t.result[index].IRI +func (t *Accept) GetResultIRI(index int) (v *url.URL) { + return t.result[index].IRI } -// AppendResultIRI adds to the back of result a url.URL type -func (t *Accept) AppendResultIRI(v url.URL) { - t.result = append(t.result, &resultAcceptIntermediateType{IRI: &v}) +// AppendResultIRI adds to the back of result a *url.URL type +func (t *Accept) AppendResultIRI(v *url.URL) { + t.result = append(t.result, &resultAcceptIntermediateType{IRI: v}) } -// PrependResultIRI adds to the front of result a url.URL type -func (t *Accept) PrependResultIRI(v url.URL) { - t.result = append([]*resultAcceptIntermediateType{&resultAcceptIntermediateType{IRI: &v}}, t.result...) +// PrependResultIRI adds to the front of result a *url.URL type +func (t *Accept) PrependResultIRI(v *url.URL) { + t.result = append([]*resultAcceptIntermediateType{&resultAcceptIntermediateType{IRI: v}}, t.result...) } @@ -96320,20 +96327,20 @@ func (t *Accept) IsOriginIRI(index int) (ok bool) { } // GetOriginIRI returns the value safely if IsOriginIRI returned true for the specified index -func (t *Accept) GetOriginIRI(index int) (v url.URL) { - return *t.origin[index].IRI +func (t *Accept) GetOriginIRI(index int) (v *url.URL) { + return t.origin[index].IRI } -// AppendOriginIRI adds to the back of origin a url.URL type -func (t *Accept) AppendOriginIRI(v url.URL) { - t.origin = append(t.origin, &originAcceptIntermediateType{IRI: &v}) +// AppendOriginIRI adds to the back of origin a *url.URL type +func (t *Accept) AppendOriginIRI(v *url.URL) { + t.origin = append(t.origin, &originAcceptIntermediateType{IRI: v}) } -// PrependOriginIRI adds to the front of origin a url.URL type -func (t *Accept) PrependOriginIRI(v url.URL) { - t.origin = append([]*originAcceptIntermediateType{&originAcceptIntermediateType{IRI: &v}}, t.origin...) +// PrependOriginIRI adds to the front of origin a *url.URL type +func (t *Accept) PrependOriginIRI(v *url.URL) { + t.origin = append([]*originAcceptIntermediateType{&originAcceptIntermediateType{IRI: v}}, t.origin...) } @@ -96445,20 +96452,20 @@ func (t *Accept) IsInstrumentIRI(index int) (ok bool) { } // GetInstrumentIRI returns the value safely if IsInstrumentIRI returned true for the specified index -func (t *Accept) GetInstrumentIRI(index int) (v url.URL) { - return *t.instrument[index].IRI +func (t *Accept) GetInstrumentIRI(index int) (v *url.URL) { + return t.instrument[index].IRI } -// AppendInstrumentIRI adds to the back of instrument a url.URL type -func (t *Accept) AppendInstrumentIRI(v url.URL) { - t.instrument = append(t.instrument, &instrumentAcceptIntermediateType{IRI: &v}) +// AppendInstrumentIRI adds to the back of instrument a *url.URL type +func (t *Accept) AppendInstrumentIRI(v *url.URL) { + t.instrument = append(t.instrument, &instrumentAcceptIntermediateType{IRI: v}) } -// PrependInstrumentIRI adds to the front of instrument a url.URL type -func (t *Accept) PrependInstrumentIRI(v url.URL) { - t.instrument = append([]*instrumentAcceptIntermediateType{&instrumentAcceptIntermediateType{IRI: &v}}, t.instrument...) +// PrependInstrumentIRI adds to the front of instrument a *url.URL type +func (t *Accept) PrependInstrumentIRI(v *url.URL) { + t.instrument = append([]*instrumentAcceptIntermediateType{&instrumentAcceptIntermediateType{IRI: v}}, t.instrument...) } @@ -96518,14 +96525,14 @@ func (t *Accept) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Accept) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Accept) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Accept) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeAcceptIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Accept) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeAcceptIntermediateType{IRI: v} } @@ -96629,20 +96636,20 @@ func (t *Accept) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Accept) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Accept) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Accept) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentAcceptIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Accept) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentAcceptIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Accept) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentAcceptIntermediateType{&attachmentAcceptIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Accept) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentAcceptIntermediateType{&attachmentAcceptIntermediateType{IRI: v}}, t.attachment...) } @@ -96754,20 +96761,20 @@ func (t *Accept) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Accept) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Accept) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Accept) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToAcceptIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Accept) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToAcceptIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Accept) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToAcceptIntermediateType{&attributedToAcceptIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Accept) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToAcceptIntermediateType{&attributedToAcceptIntermediateType{IRI: v}}, t.attributedTo...) } @@ -96879,20 +96886,20 @@ func (t *Accept) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Accept) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Accept) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Accept) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceAcceptIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Accept) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceAcceptIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Accept) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceAcceptIntermediateType{&audienceAcceptIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Accept) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceAcceptIntermediateType{&audienceAcceptIntermediateType{IRI: v}}, t.audience...) } @@ -97004,20 +97011,20 @@ func (t *Accept) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Accept) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Accept) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Accept) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentAcceptIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Accept) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentAcceptIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Accept) PrependContentIRI(v url.URL) { - t.content = append([]*contentAcceptIntermediateType{&contentAcceptIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Accept) PrependContentIRI(v *url.URL) { + t.content = append([]*contentAcceptIntermediateType{&contentAcceptIntermediateType{IRI: v}}, t.content...) } @@ -97164,20 +97171,20 @@ func (t *Accept) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Accept) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Accept) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Accept) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextAcceptIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Accept) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextAcceptIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Accept) PrependContextIRI(v url.URL) { - t.context = append([]*contextAcceptIntermediateType{&contextAcceptIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Accept) PrependContextIRI(v *url.URL) { + t.context = append([]*contextAcceptIntermediateType{&contextAcceptIntermediateType{IRI: v}}, t.context...) } @@ -97289,20 +97296,20 @@ func (t *Accept) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Accept) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Accept) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Accept) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameAcceptIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Accept) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameAcceptIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Accept) PrependNameIRI(v url.URL) { - t.name = append([]*nameAcceptIntermediateType{&nameAcceptIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Accept) PrependNameIRI(v *url.URL) { + t.name = append([]*nameAcceptIntermediateType{&nameAcceptIntermediateType{IRI: v}}, t.name...) } @@ -97397,14 +97404,14 @@ func (t *Accept) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Accept) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Accept) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Accept) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeAcceptIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Accept) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeAcceptIntermediateType{IRI: v} } @@ -97508,20 +97515,20 @@ func (t *Accept) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Accept) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Accept) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Accept) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorAcceptIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Accept) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorAcceptIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Accept) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorAcceptIntermediateType{&generatorAcceptIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Accept) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorAcceptIntermediateType{&generatorAcceptIntermediateType{IRI: v}}, t.generator...) } @@ -97633,20 +97640,20 @@ func (t *Accept) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Accept) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Accept) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Accept) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconAcceptIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Accept) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconAcceptIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Accept) PrependIconIRI(v url.URL) { - t.icon = append([]*iconAcceptIntermediateType{&iconAcceptIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Accept) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconAcceptIntermediateType{&iconAcceptIntermediateType{IRI: v}}, t.icon...) } @@ -97688,14 +97695,14 @@ func (t *Accept) HasId() (ok bool) { } // GetId returns the value for id -func (t *Accept) GetId() (v url.URL) { - return *t.id +func (t *Accept) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Accept) SetId(v url.URL) { - t.id = &v +func (t *Accept) SetId(v *url.URL) { + t.id = v } @@ -97797,20 +97804,20 @@ func (t *Accept) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Accept) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Accept) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Accept) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageAcceptIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Accept) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageAcceptIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Accept) PrependImageIRI(v url.URL) { - t.image = append([]*imageAcceptIntermediateType{&imageAcceptIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Accept) PrependImageIRI(v *url.URL) { + t.image = append([]*imageAcceptIntermediateType{&imageAcceptIntermediateType{IRI: v}}, t.image...) } @@ -97922,20 +97929,20 @@ func (t *Accept) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Accept) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Accept) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Accept) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToAcceptIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Accept) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToAcceptIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Accept) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToAcceptIntermediateType{&inReplyToAcceptIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Accept) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToAcceptIntermediateType{&inReplyToAcceptIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -98047,20 +98054,20 @@ func (t *Accept) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Accept) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Accept) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Accept) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationAcceptIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Accept) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationAcceptIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Accept) PrependLocationIRI(v url.URL) { - t.location = append([]*locationAcceptIntermediateType{&locationAcceptIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Accept) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationAcceptIntermediateType{&locationAcceptIntermediateType{IRI: v}}, t.location...) } @@ -98172,20 +98179,20 @@ func (t *Accept) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Accept) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Accept) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Accept) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewAcceptIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Accept) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewAcceptIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Accept) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewAcceptIntermediateType{&previewAcceptIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Accept) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewAcceptIntermediateType{&previewAcceptIntermediateType{IRI: v}}, t.preview...) } @@ -98245,14 +98252,14 @@ func (t *Accept) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Accept) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Accept) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Accept) SetPublishedIRI(v url.URL) { - t.published = &publishedAcceptIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Accept) SetPublishedIRI(v *url.URL) { + t.published = &publishedAcceptIntermediateType{IRI: v} } @@ -98304,14 +98311,14 @@ func (t *Accept) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Accept) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Accept) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Accept) SetRepliesIRI(v url.URL) { - t.replies = &repliesAcceptIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Accept) SetRepliesIRI(v *url.URL) { + t.replies = &repliesAcceptIntermediateType{IRI: v} } @@ -98363,14 +98370,14 @@ func (t *Accept) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Accept) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Accept) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Accept) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeAcceptIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Accept) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeAcceptIntermediateType{IRI: v} } @@ -98474,20 +98481,20 @@ func (t *Accept) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Accept) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Accept) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Accept) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryAcceptIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Accept) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryAcceptIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Accept) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryAcceptIntermediateType{&summaryAcceptIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Accept) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryAcceptIntermediateType{&summaryAcceptIntermediateType{IRI: v}}, t.summary...) } @@ -98634,20 +98641,20 @@ func (t *Accept) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Accept) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Accept) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Accept) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagAcceptIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Accept) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagAcceptIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Accept) PrependTagIRI(v url.URL) { - t.tag = append([]*tagAcceptIntermediateType{&tagAcceptIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Accept) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagAcceptIntermediateType{&tagAcceptIntermediateType{IRI: v}}, t.tag...) } @@ -98739,14 +98746,14 @@ func (t *Accept) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Accept) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Accept) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Accept) SetUpdatedIRI(v url.URL) { - t.updated = &updatedAcceptIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Accept) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedAcceptIntermediateType{IRI: v} } @@ -98786,20 +98793,20 @@ func (t *Accept) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Accept) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Accept) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Accept) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlAcceptIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Accept) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlAcceptIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Accept) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlAcceptIntermediateType{&urlAcceptIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Accept) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlAcceptIntermediateType{&urlAcceptIntermediateType{anyURI: v}}, t.url...) } @@ -98943,20 +98950,20 @@ func (t *Accept) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Accept) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Accept) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Accept) AppendToIRI(v url.URL) { - t.to = append(t.to, &toAcceptIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Accept) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toAcceptIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Accept) PrependToIRI(v url.URL) { - t.to = append([]*toAcceptIntermediateType{&toAcceptIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Accept) PrependToIRI(v *url.URL) { + t.to = append([]*toAcceptIntermediateType{&toAcceptIntermediateType{IRI: v}}, t.to...) } @@ -99068,20 +99075,20 @@ func (t *Accept) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Accept) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Accept) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Accept) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoAcceptIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Accept) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoAcceptIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Accept) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoAcceptIntermediateType{&btoAcceptIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Accept) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoAcceptIntermediateType{&btoAcceptIntermediateType{IRI: v}}, t.bto...) } @@ -99193,20 +99200,20 @@ func (t *Accept) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Accept) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Accept) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Accept) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccAcceptIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Accept) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccAcceptIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Accept) PrependCcIRI(v url.URL) { - t.cc = append([]*ccAcceptIntermediateType{&ccAcceptIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Accept) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccAcceptIntermediateType{&ccAcceptIntermediateType{IRI: v}}, t.cc...) } @@ -99318,20 +99325,20 @@ func (t *Accept) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Accept) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Accept) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Accept) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccAcceptIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Accept) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccAcceptIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Accept) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccAcceptIntermediateType{&bccAcceptIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Accept) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccAcceptIntermediateType{&bccAcceptIntermediateType{IRI: v}}, t.bcc...) } @@ -99391,14 +99398,14 @@ func (t *Accept) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Accept) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Accept) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Accept) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeAcceptIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Accept) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeAcceptIntermediateType{IRI: v} } @@ -99450,14 +99457,14 @@ func (t *Accept) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Accept) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Accept) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Accept) SetDurationIRI(v url.URL) { - t.duration = &durationAcceptIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Accept) SetDurationIRI(v *url.URL) { + t.duration = &durationAcceptIntermediateType{IRI: v} } @@ -99509,14 +99516,14 @@ func (t *Accept) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Accept) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Accept) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Accept) SetSourceIRI(v url.URL) { - t.source = &sourceAcceptIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Accept) SetSourceIRI(v *url.URL) { + t.source = &sourceAcceptIntermediateType{IRI: v} } @@ -99568,14 +99575,14 @@ func (t *Accept) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Accept) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Accept) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Accept) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxAcceptIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Accept) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxAcceptIntermediateType{anyURI: v} } @@ -99627,14 +99634,14 @@ func (t *Accept) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Accept) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Accept) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Accept) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxAcceptIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Accept) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxAcceptIntermediateType{anyURI: v} } @@ -99704,14 +99711,14 @@ func (t *Accept) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Accept) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Accept) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Accept) SetFollowingAnyURI(v url.URL) { - t.following = &followingAcceptIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Accept) SetFollowingAnyURI(v *url.URL) { + t.following = &followingAcceptIntermediateType{anyURI: v} } @@ -99781,14 +99788,14 @@ func (t *Accept) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Accept) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Accept) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Accept) SetFollowersAnyURI(v url.URL) { - t.followers = &followersAcceptIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Accept) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersAcceptIntermediateType{anyURI: v} } @@ -99858,14 +99865,14 @@ func (t *Accept) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Accept) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Accept) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Accept) SetLikedAnyURI(v url.URL) { - t.liked = &likedAcceptIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Accept) SetLikedAnyURI(v *url.URL) { + t.liked = &likedAcceptIntermediateType{anyURI: v} } @@ -99935,14 +99942,14 @@ func (t *Accept) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Accept) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Accept) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Accept) SetLikesAnyURI(v url.URL) { - t.likes = &likesAcceptIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Accept) SetLikesAnyURI(v *url.URL) { + t.likes = &likesAcceptIntermediateType{anyURI: v} } @@ -99976,26 +99983,27 @@ func (t *Accept) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Accept) GetStreams(index int) (v url.URL) { +func (t *Accept) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Accept) AppendStreams(v url.URL) { +func (t *Accept) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Accept) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Accept) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Accept) 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] } @@ -100046,14 +100054,14 @@ func (t *Accept) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Accept) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Accept) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Accept) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameAcceptIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Accept) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameAcceptIntermediateType{IRI: v} } @@ -100140,14 +100148,14 @@ func (t *Accept) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Accept) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Accept) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Accept) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsAcceptIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Accept) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsAcceptIntermediateType{IRI: v} } @@ -100181,14 +100189,14 @@ func (t *Accept) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Accept) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Accept) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Accept) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Accept) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -100220,14 +100228,14 @@ func (t *Accept) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Accept) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Accept) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Accept) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Accept) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -100259,14 +100267,14 @@ func (t *Accept) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Accept) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Accept) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Accept) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Accept) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -100298,14 +100306,14 @@ func (t *Accept) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Accept) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Accept) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Accept) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Accept) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -100337,14 +100345,14 @@ func (t *Accept) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Accept) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Accept) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Accept) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Accept) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -100376,14 +100384,14 @@ func (t *Accept) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Accept) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Accept) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Accept) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Accept) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -100641,7 +100649,7 @@ func (t *Accept) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -100947,7 +100955,7 @@ func (t *Accept) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -100962,7 +100970,7 @@ func (t *Accept) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -100977,7 +100985,7 @@ func (t *Accept) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -100992,7 +101000,7 @@ func (t *Accept) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -101007,7 +101015,7 @@ func (t *Accept) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -101022,7 +101030,7 @@ func (t *Accept) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -101988,7 +101996,7 @@ func (t *Accept) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -101997,7 +102005,7 @@ func (t *Accept) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -102211,7 +102219,7 @@ func (t *actorAcceptIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -102279,7 +102287,7 @@ func (t *objectAcceptIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -102362,7 +102370,7 @@ func (t *targetAcceptIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -102445,7 +102453,7 @@ func (t *resultAcceptIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -102528,7 +102536,7 @@ func (t *originAcceptIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -102611,7 +102619,7 @@ func (t *instrumentAcceptIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -102665,7 +102673,7 @@ func (t *altitudeAcceptIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -102748,7 +102756,7 @@ func (t *attachmentAcceptIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -102831,7 +102839,7 @@ func (t *attributedToAcceptIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -102914,7 +102922,7 @@ func (t *audienceAcceptIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -102982,7 +102990,7 @@ func (t *contentAcceptIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -103065,7 +103073,7 @@ func (t *contextAcceptIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -103133,7 +103141,7 @@ func (t *nameAcceptIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -103187,7 +103195,7 @@ func (t *endTimeAcceptIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -103270,7 +103278,7 @@ func (t *generatorAcceptIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -103353,7 +103361,7 @@ func (t *iconAcceptIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -103436,7 +103444,7 @@ func (t *imageAcceptIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -103519,7 +103527,7 @@ func (t *inReplyToAcceptIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -103602,7 +103610,7 @@ func (t *locationAcceptIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -103685,7 +103693,7 @@ func (t *previewAcceptIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -103739,7 +103747,7 @@ func (t *publishedAcceptIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -103807,7 +103815,7 @@ func (t *repliesAcceptIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -103861,7 +103869,7 @@ func (t *startTimeAcceptIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -103929,7 +103937,7 @@ func (t *summaryAcceptIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -104012,7 +104020,7 @@ func (t *tagAcceptIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -104066,7 +104074,7 @@ func (t *updatedAcceptIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -104130,7 +104138,7 @@ func (t *urlAcceptIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlAcceptIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -104217,7 +104225,7 @@ func (t *toAcceptIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -104300,7 +104308,7 @@ func (t *btoAcceptIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -104383,7 +104391,7 @@ func (t *ccAcceptIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -104466,7 +104474,7 @@ func (t *bccAcceptIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -104520,7 +104528,7 @@ func (t *mediaTypeAcceptIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -104574,7 +104582,7 @@ func (t *durationAcceptIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -104642,7 +104650,7 @@ func (t *sourceAcceptIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -104710,7 +104718,7 @@ func (t *inboxAcceptIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -104778,7 +104786,7 @@ func (t *outboxAcceptIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -104861,7 +104869,7 @@ func (t *followingAcceptIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -104944,7 +104952,7 @@ func (t *followersAcceptIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -105027,7 +105035,7 @@ func (t *likedAcceptIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -105110,7 +105118,7 @@ func (t *likesAcceptIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -105164,7 +105172,7 @@ func (t *preferredUsernameAcceptIntermediateType) Serialize() (i interface{}, er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -105232,7 +105240,7 @@ func (t *endpointsAcceptIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -105334,7 +105342,7 @@ type TentativeAccept struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesTentativeAcceptIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameTentativeAcceptIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -105432,20 +105440,20 @@ func (t *TentativeAccept) IsActorIRI(index int) (ok bool) { } // GetActorIRI returns the value safely if IsActorIRI returned true for the specified index -func (t *TentativeAccept) GetActorIRI(index int) (v url.URL) { - return *t.actor[index].IRI +func (t *TentativeAccept) GetActorIRI(index int) (v *url.URL) { + return t.actor[index].IRI } -// AppendActorIRI adds to the back of actor a url.URL type -func (t *TentativeAccept) AppendActorIRI(v url.URL) { - t.actor = append(t.actor, &actorTentativeAcceptIntermediateType{IRI: &v}) +// AppendActorIRI adds to the back of actor a *url.URL type +func (t *TentativeAccept) AppendActorIRI(v *url.URL) { + t.actor = append(t.actor, &actorTentativeAcceptIntermediateType{IRI: v}) } -// PrependActorIRI adds to the front of actor a url.URL type -func (t *TentativeAccept) PrependActorIRI(v url.URL) { - t.actor = append([]*actorTentativeAcceptIntermediateType{&actorTentativeAcceptIntermediateType{IRI: &v}}, t.actor...) +// PrependActorIRI adds to the front of actor a *url.URL type +func (t *TentativeAccept) PrependActorIRI(v *url.URL) { + t.actor = append([]*actorTentativeAcceptIntermediateType{&actorTentativeAcceptIntermediateType{IRI: v}}, t.actor...) } @@ -105525,20 +105533,20 @@ func (t *TentativeAccept) IsObjectIRI(index int) (ok bool) { } // GetObjectIRI returns the value safely if IsObjectIRI returned true for the specified index -func (t *TentativeAccept) GetObjectIRI(index int) (v url.URL) { - return *t.object[index].IRI +func (t *TentativeAccept) GetObjectIRI(index int) (v *url.URL) { + return t.object[index].IRI } -// AppendObjectIRI adds to the back of object a url.URL type -func (t *TentativeAccept) AppendObjectIRI(v url.URL) { - t.object = append(t.object, &objectTentativeAcceptIntermediateType{IRI: &v}) +// AppendObjectIRI adds to the back of object a *url.URL type +func (t *TentativeAccept) AppendObjectIRI(v *url.URL) { + t.object = append(t.object, &objectTentativeAcceptIntermediateType{IRI: v}) } -// PrependObjectIRI adds to the front of object a url.URL type -func (t *TentativeAccept) PrependObjectIRI(v url.URL) { - t.object = append([]*objectTentativeAcceptIntermediateType{&objectTentativeAcceptIntermediateType{IRI: &v}}, t.object...) +// PrependObjectIRI adds to the front of object a *url.URL type +func (t *TentativeAccept) PrependObjectIRI(v *url.URL) { + t.object = append([]*objectTentativeAcceptIntermediateType{&objectTentativeAcceptIntermediateType{IRI: v}}, t.object...) } @@ -105650,20 +105658,20 @@ func (t *TentativeAccept) IsTargetIRI(index int) (ok bool) { } // GetTargetIRI returns the value safely if IsTargetIRI returned true for the specified index -func (t *TentativeAccept) GetTargetIRI(index int) (v url.URL) { - return *t.target[index].IRI +func (t *TentativeAccept) GetTargetIRI(index int) (v *url.URL) { + return t.target[index].IRI } -// AppendTargetIRI adds to the back of target a url.URL type -func (t *TentativeAccept) AppendTargetIRI(v url.URL) { - t.target = append(t.target, &targetTentativeAcceptIntermediateType{IRI: &v}) +// AppendTargetIRI adds to the back of target a *url.URL type +func (t *TentativeAccept) AppendTargetIRI(v *url.URL) { + t.target = append(t.target, &targetTentativeAcceptIntermediateType{IRI: v}) } -// PrependTargetIRI adds to the front of target a url.URL type -func (t *TentativeAccept) PrependTargetIRI(v url.URL) { - t.target = append([]*targetTentativeAcceptIntermediateType{&targetTentativeAcceptIntermediateType{IRI: &v}}, t.target...) +// PrependTargetIRI adds to the front of target a *url.URL type +func (t *TentativeAccept) PrependTargetIRI(v *url.URL) { + t.target = append([]*targetTentativeAcceptIntermediateType{&targetTentativeAcceptIntermediateType{IRI: v}}, t.target...) } @@ -105775,20 +105783,20 @@ func (t *TentativeAccept) IsResultIRI(index int) (ok bool) { } // GetResultIRI returns the value safely if IsResultIRI returned true for the specified index -func (t *TentativeAccept) GetResultIRI(index int) (v url.URL) { - return *t.result[index].IRI +func (t *TentativeAccept) GetResultIRI(index int) (v *url.URL) { + return t.result[index].IRI } -// AppendResultIRI adds to the back of result a url.URL type -func (t *TentativeAccept) AppendResultIRI(v url.URL) { - t.result = append(t.result, &resultTentativeAcceptIntermediateType{IRI: &v}) +// AppendResultIRI adds to the back of result a *url.URL type +func (t *TentativeAccept) AppendResultIRI(v *url.URL) { + t.result = append(t.result, &resultTentativeAcceptIntermediateType{IRI: v}) } -// PrependResultIRI adds to the front of result a url.URL type -func (t *TentativeAccept) PrependResultIRI(v url.URL) { - t.result = append([]*resultTentativeAcceptIntermediateType{&resultTentativeAcceptIntermediateType{IRI: &v}}, t.result...) +// PrependResultIRI adds to the front of result a *url.URL type +func (t *TentativeAccept) PrependResultIRI(v *url.URL) { + t.result = append([]*resultTentativeAcceptIntermediateType{&resultTentativeAcceptIntermediateType{IRI: v}}, t.result...) } @@ -105900,20 +105908,20 @@ func (t *TentativeAccept) IsOriginIRI(index int) (ok bool) { } // GetOriginIRI returns the value safely if IsOriginIRI returned true for the specified index -func (t *TentativeAccept) GetOriginIRI(index int) (v url.URL) { - return *t.origin[index].IRI +func (t *TentativeAccept) GetOriginIRI(index int) (v *url.URL) { + return t.origin[index].IRI } -// AppendOriginIRI adds to the back of origin a url.URL type -func (t *TentativeAccept) AppendOriginIRI(v url.URL) { - t.origin = append(t.origin, &originTentativeAcceptIntermediateType{IRI: &v}) +// AppendOriginIRI adds to the back of origin a *url.URL type +func (t *TentativeAccept) AppendOriginIRI(v *url.URL) { + t.origin = append(t.origin, &originTentativeAcceptIntermediateType{IRI: v}) } -// PrependOriginIRI adds to the front of origin a url.URL type -func (t *TentativeAccept) PrependOriginIRI(v url.URL) { - t.origin = append([]*originTentativeAcceptIntermediateType{&originTentativeAcceptIntermediateType{IRI: &v}}, t.origin...) +// PrependOriginIRI adds to the front of origin a *url.URL type +func (t *TentativeAccept) PrependOriginIRI(v *url.URL) { + t.origin = append([]*originTentativeAcceptIntermediateType{&originTentativeAcceptIntermediateType{IRI: v}}, t.origin...) } @@ -106025,20 +106033,20 @@ func (t *TentativeAccept) IsInstrumentIRI(index int) (ok bool) { } // GetInstrumentIRI returns the value safely if IsInstrumentIRI returned true for the specified index -func (t *TentativeAccept) GetInstrumentIRI(index int) (v url.URL) { - return *t.instrument[index].IRI +func (t *TentativeAccept) GetInstrumentIRI(index int) (v *url.URL) { + return t.instrument[index].IRI } -// AppendInstrumentIRI adds to the back of instrument a url.URL type -func (t *TentativeAccept) AppendInstrumentIRI(v url.URL) { - t.instrument = append(t.instrument, &instrumentTentativeAcceptIntermediateType{IRI: &v}) +// AppendInstrumentIRI adds to the back of instrument a *url.URL type +func (t *TentativeAccept) AppendInstrumentIRI(v *url.URL) { + t.instrument = append(t.instrument, &instrumentTentativeAcceptIntermediateType{IRI: v}) } -// PrependInstrumentIRI adds to the front of instrument a url.URL type -func (t *TentativeAccept) PrependInstrumentIRI(v url.URL) { - t.instrument = append([]*instrumentTentativeAcceptIntermediateType{&instrumentTentativeAcceptIntermediateType{IRI: &v}}, t.instrument...) +// PrependInstrumentIRI adds to the front of instrument a *url.URL type +func (t *TentativeAccept) PrependInstrumentIRI(v *url.URL) { + t.instrument = append([]*instrumentTentativeAcceptIntermediateType{&instrumentTentativeAcceptIntermediateType{IRI: v}}, t.instrument...) } @@ -106098,14 +106106,14 @@ func (t *TentativeAccept) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *TentativeAccept) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *TentativeAccept) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *TentativeAccept) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeTentativeAcceptIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *TentativeAccept) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeTentativeAcceptIntermediateType{IRI: v} } @@ -106209,20 +106217,20 @@ func (t *TentativeAccept) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *TentativeAccept) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *TentativeAccept) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *TentativeAccept) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentTentativeAcceptIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *TentativeAccept) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentTentativeAcceptIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *TentativeAccept) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentTentativeAcceptIntermediateType{&attachmentTentativeAcceptIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *TentativeAccept) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentTentativeAcceptIntermediateType{&attachmentTentativeAcceptIntermediateType{IRI: v}}, t.attachment...) } @@ -106334,20 +106342,20 @@ func (t *TentativeAccept) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *TentativeAccept) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *TentativeAccept) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *TentativeAccept) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToTentativeAcceptIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *TentativeAccept) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToTentativeAcceptIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *TentativeAccept) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToTentativeAcceptIntermediateType{&attributedToTentativeAcceptIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *TentativeAccept) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToTentativeAcceptIntermediateType{&attributedToTentativeAcceptIntermediateType{IRI: v}}, t.attributedTo...) } @@ -106459,20 +106467,20 @@ func (t *TentativeAccept) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *TentativeAccept) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *TentativeAccept) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *TentativeAccept) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceTentativeAcceptIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *TentativeAccept) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceTentativeAcceptIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *TentativeAccept) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceTentativeAcceptIntermediateType{&audienceTentativeAcceptIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *TentativeAccept) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceTentativeAcceptIntermediateType{&audienceTentativeAcceptIntermediateType{IRI: v}}, t.audience...) } @@ -106584,20 +106592,20 @@ func (t *TentativeAccept) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *TentativeAccept) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *TentativeAccept) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *TentativeAccept) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentTentativeAcceptIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *TentativeAccept) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentTentativeAcceptIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *TentativeAccept) PrependContentIRI(v url.URL) { - t.content = append([]*contentTentativeAcceptIntermediateType{&contentTentativeAcceptIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *TentativeAccept) PrependContentIRI(v *url.URL) { + t.content = append([]*contentTentativeAcceptIntermediateType{&contentTentativeAcceptIntermediateType{IRI: v}}, t.content...) } @@ -106744,20 +106752,20 @@ func (t *TentativeAccept) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *TentativeAccept) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *TentativeAccept) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *TentativeAccept) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextTentativeAcceptIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *TentativeAccept) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextTentativeAcceptIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *TentativeAccept) PrependContextIRI(v url.URL) { - t.context = append([]*contextTentativeAcceptIntermediateType{&contextTentativeAcceptIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *TentativeAccept) PrependContextIRI(v *url.URL) { + t.context = append([]*contextTentativeAcceptIntermediateType{&contextTentativeAcceptIntermediateType{IRI: v}}, t.context...) } @@ -106869,20 +106877,20 @@ func (t *TentativeAccept) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *TentativeAccept) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *TentativeAccept) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *TentativeAccept) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameTentativeAcceptIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *TentativeAccept) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameTentativeAcceptIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *TentativeAccept) PrependNameIRI(v url.URL) { - t.name = append([]*nameTentativeAcceptIntermediateType{&nameTentativeAcceptIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *TentativeAccept) PrependNameIRI(v *url.URL) { + t.name = append([]*nameTentativeAcceptIntermediateType{&nameTentativeAcceptIntermediateType{IRI: v}}, t.name...) } @@ -106977,14 +106985,14 @@ func (t *TentativeAccept) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *TentativeAccept) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *TentativeAccept) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *TentativeAccept) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeTentativeAcceptIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *TentativeAccept) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeTentativeAcceptIntermediateType{IRI: v} } @@ -107088,20 +107096,20 @@ func (t *TentativeAccept) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *TentativeAccept) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *TentativeAccept) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *TentativeAccept) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorTentativeAcceptIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *TentativeAccept) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorTentativeAcceptIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *TentativeAccept) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorTentativeAcceptIntermediateType{&generatorTentativeAcceptIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *TentativeAccept) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorTentativeAcceptIntermediateType{&generatorTentativeAcceptIntermediateType{IRI: v}}, t.generator...) } @@ -107213,20 +107221,20 @@ func (t *TentativeAccept) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *TentativeAccept) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *TentativeAccept) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *TentativeAccept) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconTentativeAcceptIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *TentativeAccept) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconTentativeAcceptIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *TentativeAccept) PrependIconIRI(v url.URL) { - t.icon = append([]*iconTentativeAcceptIntermediateType{&iconTentativeAcceptIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *TentativeAccept) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconTentativeAcceptIntermediateType{&iconTentativeAcceptIntermediateType{IRI: v}}, t.icon...) } @@ -107268,14 +107276,14 @@ func (t *TentativeAccept) HasId() (ok bool) { } // GetId returns the value for id -func (t *TentativeAccept) GetId() (v url.URL) { - return *t.id +func (t *TentativeAccept) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *TentativeAccept) SetId(v url.URL) { - t.id = &v +func (t *TentativeAccept) SetId(v *url.URL) { + t.id = v } @@ -107377,20 +107385,20 @@ func (t *TentativeAccept) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *TentativeAccept) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *TentativeAccept) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *TentativeAccept) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageTentativeAcceptIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *TentativeAccept) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageTentativeAcceptIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *TentativeAccept) PrependImageIRI(v url.URL) { - t.image = append([]*imageTentativeAcceptIntermediateType{&imageTentativeAcceptIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *TentativeAccept) PrependImageIRI(v *url.URL) { + t.image = append([]*imageTentativeAcceptIntermediateType{&imageTentativeAcceptIntermediateType{IRI: v}}, t.image...) } @@ -107502,20 +107510,20 @@ func (t *TentativeAccept) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *TentativeAccept) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *TentativeAccept) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *TentativeAccept) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToTentativeAcceptIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *TentativeAccept) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToTentativeAcceptIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *TentativeAccept) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToTentativeAcceptIntermediateType{&inReplyToTentativeAcceptIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *TentativeAccept) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToTentativeAcceptIntermediateType{&inReplyToTentativeAcceptIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -107627,20 +107635,20 @@ func (t *TentativeAccept) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *TentativeAccept) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *TentativeAccept) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *TentativeAccept) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationTentativeAcceptIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *TentativeAccept) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationTentativeAcceptIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *TentativeAccept) PrependLocationIRI(v url.URL) { - t.location = append([]*locationTentativeAcceptIntermediateType{&locationTentativeAcceptIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *TentativeAccept) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationTentativeAcceptIntermediateType{&locationTentativeAcceptIntermediateType{IRI: v}}, t.location...) } @@ -107752,20 +107760,20 @@ func (t *TentativeAccept) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *TentativeAccept) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *TentativeAccept) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *TentativeAccept) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewTentativeAcceptIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *TentativeAccept) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewTentativeAcceptIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *TentativeAccept) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewTentativeAcceptIntermediateType{&previewTentativeAcceptIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *TentativeAccept) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewTentativeAcceptIntermediateType{&previewTentativeAcceptIntermediateType{IRI: v}}, t.preview...) } @@ -107825,14 +107833,14 @@ func (t *TentativeAccept) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *TentativeAccept) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *TentativeAccept) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *TentativeAccept) SetPublishedIRI(v url.URL) { - t.published = &publishedTentativeAcceptIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *TentativeAccept) SetPublishedIRI(v *url.URL) { + t.published = &publishedTentativeAcceptIntermediateType{IRI: v} } @@ -107884,14 +107892,14 @@ func (t *TentativeAccept) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *TentativeAccept) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *TentativeAccept) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *TentativeAccept) SetRepliesIRI(v url.URL) { - t.replies = &repliesTentativeAcceptIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *TentativeAccept) SetRepliesIRI(v *url.URL) { + t.replies = &repliesTentativeAcceptIntermediateType{IRI: v} } @@ -107943,14 +107951,14 @@ func (t *TentativeAccept) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *TentativeAccept) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *TentativeAccept) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *TentativeAccept) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeTentativeAcceptIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *TentativeAccept) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeTentativeAcceptIntermediateType{IRI: v} } @@ -108054,20 +108062,20 @@ func (t *TentativeAccept) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *TentativeAccept) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *TentativeAccept) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *TentativeAccept) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryTentativeAcceptIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *TentativeAccept) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryTentativeAcceptIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *TentativeAccept) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryTentativeAcceptIntermediateType{&summaryTentativeAcceptIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *TentativeAccept) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryTentativeAcceptIntermediateType{&summaryTentativeAcceptIntermediateType{IRI: v}}, t.summary...) } @@ -108214,20 +108222,20 @@ func (t *TentativeAccept) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *TentativeAccept) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *TentativeAccept) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *TentativeAccept) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagTentativeAcceptIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *TentativeAccept) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagTentativeAcceptIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *TentativeAccept) PrependTagIRI(v url.URL) { - t.tag = append([]*tagTentativeAcceptIntermediateType{&tagTentativeAcceptIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *TentativeAccept) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagTentativeAcceptIntermediateType{&tagTentativeAcceptIntermediateType{IRI: v}}, t.tag...) } @@ -108319,14 +108327,14 @@ func (t *TentativeAccept) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *TentativeAccept) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *TentativeAccept) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *TentativeAccept) SetUpdatedIRI(v url.URL) { - t.updated = &updatedTentativeAcceptIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *TentativeAccept) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedTentativeAcceptIntermediateType{IRI: v} } @@ -108366,20 +108374,20 @@ func (t *TentativeAccept) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *TentativeAccept) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *TentativeAccept) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *TentativeAccept) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlTentativeAcceptIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *TentativeAccept) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlTentativeAcceptIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *TentativeAccept) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlTentativeAcceptIntermediateType{&urlTentativeAcceptIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *TentativeAccept) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlTentativeAcceptIntermediateType{&urlTentativeAcceptIntermediateType{anyURI: v}}, t.url...) } @@ -108523,20 +108531,20 @@ func (t *TentativeAccept) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *TentativeAccept) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *TentativeAccept) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *TentativeAccept) AppendToIRI(v url.URL) { - t.to = append(t.to, &toTentativeAcceptIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *TentativeAccept) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toTentativeAcceptIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *TentativeAccept) PrependToIRI(v url.URL) { - t.to = append([]*toTentativeAcceptIntermediateType{&toTentativeAcceptIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *TentativeAccept) PrependToIRI(v *url.URL) { + t.to = append([]*toTentativeAcceptIntermediateType{&toTentativeAcceptIntermediateType{IRI: v}}, t.to...) } @@ -108648,20 +108656,20 @@ func (t *TentativeAccept) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *TentativeAccept) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *TentativeAccept) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *TentativeAccept) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoTentativeAcceptIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *TentativeAccept) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoTentativeAcceptIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *TentativeAccept) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoTentativeAcceptIntermediateType{&btoTentativeAcceptIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *TentativeAccept) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoTentativeAcceptIntermediateType{&btoTentativeAcceptIntermediateType{IRI: v}}, t.bto...) } @@ -108773,20 +108781,20 @@ func (t *TentativeAccept) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *TentativeAccept) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *TentativeAccept) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *TentativeAccept) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccTentativeAcceptIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *TentativeAccept) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccTentativeAcceptIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *TentativeAccept) PrependCcIRI(v url.URL) { - t.cc = append([]*ccTentativeAcceptIntermediateType{&ccTentativeAcceptIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *TentativeAccept) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccTentativeAcceptIntermediateType{&ccTentativeAcceptIntermediateType{IRI: v}}, t.cc...) } @@ -108898,20 +108906,20 @@ func (t *TentativeAccept) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *TentativeAccept) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *TentativeAccept) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *TentativeAccept) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccTentativeAcceptIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *TentativeAccept) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccTentativeAcceptIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *TentativeAccept) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccTentativeAcceptIntermediateType{&bccTentativeAcceptIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *TentativeAccept) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccTentativeAcceptIntermediateType{&bccTentativeAcceptIntermediateType{IRI: v}}, t.bcc...) } @@ -108971,14 +108979,14 @@ func (t *TentativeAccept) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *TentativeAccept) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *TentativeAccept) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *TentativeAccept) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeTentativeAcceptIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *TentativeAccept) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeTentativeAcceptIntermediateType{IRI: v} } @@ -109030,14 +109038,14 @@ func (t *TentativeAccept) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *TentativeAccept) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *TentativeAccept) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *TentativeAccept) SetDurationIRI(v url.URL) { - t.duration = &durationTentativeAcceptIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *TentativeAccept) SetDurationIRI(v *url.URL) { + t.duration = &durationTentativeAcceptIntermediateType{IRI: v} } @@ -109089,14 +109097,14 @@ func (t *TentativeAccept) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *TentativeAccept) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *TentativeAccept) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *TentativeAccept) SetSourceIRI(v url.URL) { - t.source = &sourceTentativeAcceptIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *TentativeAccept) SetSourceIRI(v *url.URL) { + t.source = &sourceTentativeAcceptIntermediateType{IRI: v} } @@ -109148,14 +109156,14 @@ func (t *TentativeAccept) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *TentativeAccept) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *TentativeAccept) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *TentativeAccept) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxTentativeAcceptIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *TentativeAccept) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxTentativeAcceptIntermediateType{anyURI: v} } @@ -109207,14 +109215,14 @@ func (t *TentativeAccept) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *TentativeAccept) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *TentativeAccept) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *TentativeAccept) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxTentativeAcceptIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *TentativeAccept) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxTentativeAcceptIntermediateType{anyURI: v} } @@ -109284,14 +109292,14 @@ func (t *TentativeAccept) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *TentativeAccept) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *TentativeAccept) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *TentativeAccept) SetFollowingAnyURI(v url.URL) { - t.following = &followingTentativeAcceptIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *TentativeAccept) SetFollowingAnyURI(v *url.URL) { + t.following = &followingTentativeAcceptIntermediateType{anyURI: v} } @@ -109361,14 +109369,14 @@ func (t *TentativeAccept) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *TentativeAccept) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *TentativeAccept) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *TentativeAccept) SetFollowersAnyURI(v url.URL) { - t.followers = &followersTentativeAcceptIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *TentativeAccept) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersTentativeAcceptIntermediateType{anyURI: v} } @@ -109438,14 +109446,14 @@ func (t *TentativeAccept) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *TentativeAccept) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *TentativeAccept) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *TentativeAccept) SetLikedAnyURI(v url.URL) { - t.liked = &likedTentativeAcceptIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *TentativeAccept) SetLikedAnyURI(v *url.URL) { + t.liked = &likedTentativeAcceptIntermediateType{anyURI: v} } @@ -109515,14 +109523,14 @@ func (t *TentativeAccept) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *TentativeAccept) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *TentativeAccept) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *TentativeAccept) SetLikesAnyURI(v url.URL) { - t.likes = &likesTentativeAcceptIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *TentativeAccept) SetLikesAnyURI(v *url.URL) { + t.likes = &likesTentativeAcceptIntermediateType{anyURI: v} } @@ -109556,26 +109564,27 @@ func (t *TentativeAccept) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *TentativeAccept) GetStreams(index int) (v url.URL) { +func (t *TentativeAccept) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *TentativeAccept) AppendStreams(v url.URL) { +func (t *TentativeAccept) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *TentativeAccept) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *TentativeAccept) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *TentativeAccept) 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] } @@ -109626,14 +109635,14 @@ func (t *TentativeAccept) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *TentativeAccept) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *TentativeAccept) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *TentativeAccept) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameTentativeAcceptIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *TentativeAccept) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameTentativeAcceptIntermediateType{IRI: v} } @@ -109720,14 +109729,14 @@ func (t *TentativeAccept) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *TentativeAccept) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *TentativeAccept) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *TentativeAccept) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsTentativeAcceptIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *TentativeAccept) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsTentativeAcceptIntermediateType{IRI: v} } @@ -109761,14 +109770,14 @@ func (t *TentativeAccept) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *TentativeAccept) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *TentativeAccept) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *TentativeAccept) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *TentativeAccept) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -109800,14 +109809,14 @@ func (t *TentativeAccept) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *TentativeAccept) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *TentativeAccept) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *TentativeAccept) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *TentativeAccept) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -109839,14 +109848,14 @@ func (t *TentativeAccept) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *TentativeAccept) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *TentativeAccept) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *TentativeAccept) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *TentativeAccept) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -109878,14 +109887,14 @@ func (t *TentativeAccept) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *TentativeAccept) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *TentativeAccept) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *TentativeAccept) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *TentativeAccept) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -109917,14 +109926,14 @@ func (t *TentativeAccept) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *TentativeAccept) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *TentativeAccept) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *TentativeAccept) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *TentativeAccept) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -109956,14 +109965,14 @@ func (t *TentativeAccept) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *TentativeAccept) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *TentativeAccept) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *TentativeAccept) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *TentativeAccept) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -110221,7 +110230,7 @@ func (t *TentativeAccept) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -110527,7 +110536,7 @@ func (t *TentativeAccept) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -110542,7 +110551,7 @@ func (t *TentativeAccept) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -110557,7 +110566,7 @@ func (t *TentativeAccept) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -110572,7 +110581,7 @@ func (t *TentativeAccept) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -110587,7 +110596,7 @@ func (t *TentativeAccept) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -110602,7 +110611,7 @@ func (t *TentativeAccept) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -111568,7 +111577,7 @@ func (t *TentativeAccept) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -111577,7 +111586,7 @@ func (t *TentativeAccept) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -111791,7 +111800,7 @@ func (t *actorTentativeAcceptIntermediateType) Serialize() (i interface{}, err e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -111859,7 +111868,7 @@ func (t *objectTentativeAcceptIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -111942,7 +111951,7 @@ func (t *targetTentativeAcceptIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -112025,7 +112034,7 @@ func (t *resultTentativeAcceptIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -112108,7 +112117,7 @@ func (t *originTentativeAcceptIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -112191,7 +112200,7 @@ func (t *instrumentTentativeAcceptIntermediateType) Serialize() (i interface{}, return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -112245,7 +112254,7 @@ func (t *altitudeTentativeAcceptIntermediateType) Serialize() (i interface{}, er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -112328,7 +112337,7 @@ func (t *attachmentTentativeAcceptIntermediateType) Serialize() (i interface{}, return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -112411,7 +112420,7 @@ func (t *attributedToTentativeAcceptIntermediateType) Serialize() (i interface{} return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -112494,7 +112503,7 @@ func (t *audienceTentativeAcceptIntermediateType) Serialize() (i interface{}, er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -112562,7 +112571,7 @@ func (t *contentTentativeAcceptIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -112645,7 +112654,7 @@ func (t *contextTentativeAcceptIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -112713,7 +112722,7 @@ func (t *nameTentativeAcceptIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -112767,7 +112776,7 @@ func (t *endTimeTentativeAcceptIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -112850,7 +112859,7 @@ func (t *generatorTentativeAcceptIntermediateType) Serialize() (i interface{}, e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -112933,7 +112942,7 @@ func (t *iconTentativeAcceptIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -113016,7 +113025,7 @@ func (t *imageTentativeAcceptIntermediateType) Serialize() (i interface{}, err e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -113099,7 +113108,7 @@ func (t *inReplyToTentativeAcceptIntermediateType) Serialize() (i interface{}, e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -113182,7 +113191,7 @@ func (t *locationTentativeAcceptIntermediateType) Serialize() (i interface{}, er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -113265,7 +113274,7 @@ func (t *previewTentativeAcceptIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -113319,7 +113328,7 @@ func (t *publishedTentativeAcceptIntermediateType) Serialize() (i interface{}, e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -113387,7 +113396,7 @@ func (t *repliesTentativeAcceptIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -113441,7 +113450,7 @@ func (t *startTimeTentativeAcceptIntermediateType) Serialize() (i interface{}, e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -113509,7 +113518,7 @@ func (t *summaryTentativeAcceptIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -113592,7 +113601,7 @@ func (t *tagTentativeAcceptIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -113646,7 +113655,7 @@ func (t *updatedTentativeAcceptIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -113710,7 +113719,7 @@ func (t *urlTentativeAcceptIntermediateType) Deserialize(i interface{}) (err err // Serialize turns this object into an interface{}. func (t *urlTentativeAcceptIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -113797,7 +113806,7 @@ func (t *toTentativeAcceptIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -113880,7 +113889,7 @@ func (t *btoTentativeAcceptIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -113963,7 +113972,7 @@ func (t *ccTentativeAcceptIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -114046,7 +114055,7 @@ func (t *bccTentativeAcceptIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -114100,7 +114109,7 @@ func (t *mediaTypeTentativeAcceptIntermediateType) Serialize() (i interface{}, e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -114154,7 +114163,7 @@ func (t *durationTentativeAcceptIntermediateType) Serialize() (i interface{}, er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -114222,7 +114231,7 @@ func (t *sourceTentativeAcceptIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -114290,7 +114299,7 @@ func (t *inboxTentativeAcceptIntermediateType) Serialize() (i interface{}, err e return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -114358,7 +114367,7 @@ func (t *outboxTentativeAcceptIntermediateType) Serialize() (i interface{}, err return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -114441,7 +114450,7 @@ func (t *followingTentativeAcceptIntermediateType) Serialize() (i interface{}, e return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -114524,7 +114533,7 @@ func (t *followersTentativeAcceptIntermediateType) Serialize() (i interface{}, e return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -114607,7 +114616,7 @@ func (t *likedTentativeAcceptIntermediateType) Serialize() (i interface{}, err e return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -114690,7 +114699,7 @@ func (t *likesTentativeAcceptIntermediateType) Serialize() (i interface{}, err e return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -114744,7 +114753,7 @@ func (t *preferredUsernameTentativeAcceptIntermediateType) Serialize() (i interf return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -114812,7 +114821,7 @@ func (t *endpointsTentativeAcceptIntermediateType) Serialize() (i interface{}, e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -114914,7 +114923,7 @@ type Add struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesAddIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameAddIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -115012,20 +115021,20 @@ func (t *Add) IsActorIRI(index int) (ok bool) { } // GetActorIRI returns the value safely if IsActorIRI returned true for the specified index -func (t *Add) GetActorIRI(index int) (v url.URL) { - return *t.actor[index].IRI +func (t *Add) GetActorIRI(index int) (v *url.URL) { + return t.actor[index].IRI } -// AppendActorIRI adds to the back of actor a url.URL type -func (t *Add) AppendActorIRI(v url.URL) { - t.actor = append(t.actor, &actorAddIntermediateType{IRI: &v}) +// AppendActorIRI adds to the back of actor a *url.URL type +func (t *Add) AppendActorIRI(v *url.URL) { + t.actor = append(t.actor, &actorAddIntermediateType{IRI: v}) } -// PrependActorIRI adds to the front of actor a url.URL type -func (t *Add) PrependActorIRI(v url.URL) { - t.actor = append([]*actorAddIntermediateType{&actorAddIntermediateType{IRI: &v}}, t.actor...) +// PrependActorIRI adds to the front of actor a *url.URL type +func (t *Add) PrependActorIRI(v *url.URL) { + t.actor = append([]*actorAddIntermediateType{&actorAddIntermediateType{IRI: v}}, t.actor...) } @@ -115105,20 +115114,20 @@ func (t *Add) IsObjectIRI(index int) (ok bool) { } // GetObjectIRI returns the value safely if IsObjectIRI returned true for the specified index -func (t *Add) GetObjectIRI(index int) (v url.URL) { - return *t.object[index].IRI +func (t *Add) GetObjectIRI(index int) (v *url.URL) { + return t.object[index].IRI } -// AppendObjectIRI adds to the back of object a url.URL type -func (t *Add) AppendObjectIRI(v url.URL) { - t.object = append(t.object, &objectAddIntermediateType{IRI: &v}) +// AppendObjectIRI adds to the back of object a *url.URL type +func (t *Add) AppendObjectIRI(v *url.URL) { + t.object = append(t.object, &objectAddIntermediateType{IRI: v}) } -// PrependObjectIRI adds to the front of object a url.URL type -func (t *Add) PrependObjectIRI(v url.URL) { - t.object = append([]*objectAddIntermediateType{&objectAddIntermediateType{IRI: &v}}, t.object...) +// PrependObjectIRI adds to the front of object a *url.URL type +func (t *Add) PrependObjectIRI(v *url.URL) { + t.object = append([]*objectAddIntermediateType{&objectAddIntermediateType{IRI: v}}, t.object...) } @@ -115230,20 +115239,20 @@ func (t *Add) IsTargetIRI(index int) (ok bool) { } // GetTargetIRI returns the value safely if IsTargetIRI returned true for the specified index -func (t *Add) GetTargetIRI(index int) (v url.URL) { - return *t.target[index].IRI +func (t *Add) GetTargetIRI(index int) (v *url.URL) { + return t.target[index].IRI } -// AppendTargetIRI adds to the back of target a url.URL type -func (t *Add) AppendTargetIRI(v url.URL) { - t.target = append(t.target, &targetAddIntermediateType{IRI: &v}) +// AppendTargetIRI adds to the back of target a *url.URL type +func (t *Add) AppendTargetIRI(v *url.URL) { + t.target = append(t.target, &targetAddIntermediateType{IRI: v}) } -// PrependTargetIRI adds to the front of target a url.URL type -func (t *Add) PrependTargetIRI(v url.URL) { - t.target = append([]*targetAddIntermediateType{&targetAddIntermediateType{IRI: &v}}, t.target...) +// PrependTargetIRI adds to the front of target a *url.URL type +func (t *Add) PrependTargetIRI(v *url.URL) { + t.target = append([]*targetAddIntermediateType{&targetAddIntermediateType{IRI: v}}, t.target...) } @@ -115355,20 +115364,20 @@ func (t *Add) IsResultIRI(index int) (ok bool) { } // GetResultIRI returns the value safely if IsResultIRI returned true for the specified index -func (t *Add) GetResultIRI(index int) (v url.URL) { - return *t.result[index].IRI +func (t *Add) GetResultIRI(index int) (v *url.URL) { + return t.result[index].IRI } -// AppendResultIRI adds to the back of result a url.URL type -func (t *Add) AppendResultIRI(v url.URL) { - t.result = append(t.result, &resultAddIntermediateType{IRI: &v}) +// AppendResultIRI adds to the back of result a *url.URL type +func (t *Add) AppendResultIRI(v *url.URL) { + t.result = append(t.result, &resultAddIntermediateType{IRI: v}) } -// PrependResultIRI adds to the front of result a url.URL type -func (t *Add) PrependResultIRI(v url.URL) { - t.result = append([]*resultAddIntermediateType{&resultAddIntermediateType{IRI: &v}}, t.result...) +// PrependResultIRI adds to the front of result a *url.URL type +func (t *Add) PrependResultIRI(v *url.URL) { + t.result = append([]*resultAddIntermediateType{&resultAddIntermediateType{IRI: v}}, t.result...) } @@ -115480,20 +115489,20 @@ func (t *Add) IsOriginIRI(index int) (ok bool) { } // GetOriginIRI returns the value safely if IsOriginIRI returned true for the specified index -func (t *Add) GetOriginIRI(index int) (v url.URL) { - return *t.origin[index].IRI +func (t *Add) GetOriginIRI(index int) (v *url.URL) { + return t.origin[index].IRI } -// AppendOriginIRI adds to the back of origin a url.URL type -func (t *Add) AppendOriginIRI(v url.URL) { - t.origin = append(t.origin, &originAddIntermediateType{IRI: &v}) +// AppendOriginIRI adds to the back of origin a *url.URL type +func (t *Add) AppendOriginIRI(v *url.URL) { + t.origin = append(t.origin, &originAddIntermediateType{IRI: v}) } -// PrependOriginIRI adds to the front of origin a url.URL type -func (t *Add) PrependOriginIRI(v url.URL) { - t.origin = append([]*originAddIntermediateType{&originAddIntermediateType{IRI: &v}}, t.origin...) +// PrependOriginIRI adds to the front of origin a *url.URL type +func (t *Add) PrependOriginIRI(v *url.URL) { + t.origin = append([]*originAddIntermediateType{&originAddIntermediateType{IRI: v}}, t.origin...) } @@ -115605,20 +115614,20 @@ func (t *Add) IsInstrumentIRI(index int) (ok bool) { } // GetInstrumentIRI returns the value safely if IsInstrumentIRI returned true for the specified index -func (t *Add) GetInstrumentIRI(index int) (v url.URL) { - return *t.instrument[index].IRI +func (t *Add) GetInstrumentIRI(index int) (v *url.URL) { + return t.instrument[index].IRI } -// AppendInstrumentIRI adds to the back of instrument a url.URL type -func (t *Add) AppendInstrumentIRI(v url.URL) { - t.instrument = append(t.instrument, &instrumentAddIntermediateType{IRI: &v}) +// AppendInstrumentIRI adds to the back of instrument a *url.URL type +func (t *Add) AppendInstrumentIRI(v *url.URL) { + t.instrument = append(t.instrument, &instrumentAddIntermediateType{IRI: v}) } -// PrependInstrumentIRI adds to the front of instrument a url.URL type -func (t *Add) PrependInstrumentIRI(v url.URL) { - t.instrument = append([]*instrumentAddIntermediateType{&instrumentAddIntermediateType{IRI: &v}}, t.instrument...) +// PrependInstrumentIRI adds to the front of instrument a *url.URL type +func (t *Add) PrependInstrumentIRI(v *url.URL) { + t.instrument = append([]*instrumentAddIntermediateType{&instrumentAddIntermediateType{IRI: v}}, t.instrument...) } @@ -115678,14 +115687,14 @@ func (t *Add) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Add) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Add) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Add) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeAddIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Add) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeAddIntermediateType{IRI: v} } @@ -115789,20 +115798,20 @@ func (t *Add) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Add) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Add) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Add) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentAddIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Add) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentAddIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Add) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentAddIntermediateType{&attachmentAddIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Add) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentAddIntermediateType{&attachmentAddIntermediateType{IRI: v}}, t.attachment...) } @@ -115914,20 +115923,20 @@ func (t *Add) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Add) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Add) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Add) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToAddIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Add) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToAddIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Add) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToAddIntermediateType{&attributedToAddIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Add) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToAddIntermediateType{&attributedToAddIntermediateType{IRI: v}}, t.attributedTo...) } @@ -116039,20 +116048,20 @@ func (t *Add) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Add) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Add) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Add) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceAddIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Add) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceAddIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Add) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceAddIntermediateType{&audienceAddIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Add) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceAddIntermediateType{&audienceAddIntermediateType{IRI: v}}, t.audience...) } @@ -116164,20 +116173,20 @@ func (t *Add) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Add) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Add) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Add) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentAddIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Add) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentAddIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Add) PrependContentIRI(v url.URL) { - t.content = append([]*contentAddIntermediateType{&contentAddIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Add) PrependContentIRI(v *url.URL) { + t.content = append([]*contentAddIntermediateType{&contentAddIntermediateType{IRI: v}}, t.content...) } @@ -116324,20 +116333,20 @@ func (t *Add) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Add) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Add) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Add) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextAddIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Add) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextAddIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Add) PrependContextIRI(v url.URL) { - t.context = append([]*contextAddIntermediateType{&contextAddIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Add) PrependContextIRI(v *url.URL) { + t.context = append([]*contextAddIntermediateType{&contextAddIntermediateType{IRI: v}}, t.context...) } @@ -116449,20 +116458,20 @@ func (t *Add) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Add) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Add) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Add) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameAddIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Add) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameAddIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Add) PrependNameIRI(v url.URL) { - t.name = append([]*nameAddIntermediateType{&nameAddIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Add) PrependNameIRI(v *url.URL) { + t.name = append([]*nameAddIntermediateType{&nameAddIntermediateType{IRI: v}}, t.name...) } @@ -116557,14 +116566,14 @@ func (t *Add) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Add) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Add) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Add) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeAddIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Add) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeAddIntermediateType{IRI: v} } @@ -116668,20 +116677,20 @@ func (t *Add) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Add) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Add) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Add) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorAddIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Add) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorAddIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Add) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorAddIntermediateType{&generatorAddIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Add) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorAddIntermediateType{&generatorAddIntermediateType{IRI: v}}, t.generator...) } @@ -116793,20 +116802,20 @@ func (t *Add) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Add) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Add) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Add) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconAddIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Add) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconAddIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Add) PrependIconIRI(v url.URL) { - t.icon = append([]*iconAddIntermediateType{&iconAddIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Add) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconAddIntermediateType{&iconAddIntermediateType{IRI: v}}, t.icon...) } @@ -116848,14 +116857,14 @@ func (t *Add) HasId() (ok bool) { } // GetId returns the value for id -func (t *Add) GetId() (v url.URL) { - return *t.id +func (t *Add) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Add) SetId(v url.URL) { - t.id = &v +func (t *Add) SetId(v *url.URL) { + t.id = v } @@ -116957,20 +116966,20 @@ func (t *Add) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Add) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Add) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Add) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageAddIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Add) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageAddIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Add) PrependImageIRI(v url.URL) { - t.image = append([]*imageAddIntermediateType{&imageAddIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Add) PrependImageIRI(v *url.URL) { + t.image = append([]*imageAddIntermediateType{&imageAddIntermediateType{IRI: v}}, t.image...) } @@ -117082,20 +117091,20 @@ func (t *Add) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Add) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Add) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Add) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToAddIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Add) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToAddIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Add) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToAddIntermediateType{&inReplyToAddIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Add) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToAddIntermediateType{&inReplyToAddIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -117207,20 +117216,20 @@ func (t *Add) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Add) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Add) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Add) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationAddIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Add) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationAddIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Add) PrependLocationIRI(v url.URL) { - t.location = append([]*locationAddIntermediateType{&locationAddIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Add) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationAddIntermediateType{&locationAddIntermediateType{IRI: v}}, t.location...) } @@ -117332,20 +117341,20 @@ func (t *Add) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Add) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Add) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Add) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewAddIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Add) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewAddIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Add) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewAddIntermediateType{&previewAddIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Add) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewAddIntermediateType{&previewAddIntermediateType{IRI: v}}, t.preview...) } @@ -117405,14 +117414,14 @@ func (t *Add) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Add) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Add) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Add) SetPublishedIRI(v url.URL) { - t.published = &publishedAddIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Add) SetPublishedIRI(v *url.URL) { + t.published = &publishedAddIntermediateType{IRI: v} } @@ -117464,14 +117473,14 @@ func (t *Add) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Add) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Add) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Add) SetRepliesIRI(v url.URL) { - t.replies = &repliesAddIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Add) SetRepliesIRI(v *url.URL) { + t.replies = &repliesAddIntermediateType{IRI: v} } @@ -117523,14 +117532,14 @@ func (t *Add) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Add) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Add) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Add) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeAddIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Add) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeAddIntermediateType{IRI: v} } @@ -117634,20 +117643,20 @@ func (t *Add) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Add) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Add) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Add) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryAddIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Add) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryAddIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Add) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryAddIntermediateType{&summaryAddIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Add) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryAddIntermediateType{&summaryAddIntermediateType{IRI: v}}, t.summary...) } @@ -117794,20 +117803,20 @@ func (t *Add) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Add) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Add) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Add) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagAddIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Add) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagAddIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Add) PrependTagIRI(v url.URL) { - t.tag = append([]*tagAddIntermediateType{&tagAddIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Add) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagAddIntermediateType{&tagAddIntermediateType{IRI: v}}, t.tag...) } @@ -117899,14 +117908,14 @@ func (t *Add) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Add) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Add) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Add) SetUpdatedIRI(v url.URL) { - t.updated = &updatedAddIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Add) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedAddIntermediateType{IRI: v} } @@ -117946,20 +117955,20 @@ func (t *Add) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Add) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Add) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Add) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlAddIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Add) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlAddIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Add) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlAddIntermediateType{&urlAddIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Add) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlAddIntermediateType{&urlAddIntermediateType{anyURI: v}}, t.url...) } @@ -118103,20 +118112,20 @@ func (t *Add) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Add) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Add) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Add) AppendToIRI(v url.URL) { - t.to = append(t.to, &toAddIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Add) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toAddIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Add) PrependToIRI(v url.URL) { - t.to = append([]*toAddIntermediateType{&toAddIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Add) PrependToIRI(v *url.URL) { + t.to = append([]*toAddIntermediateType{&toAddIntermediateType{IRI: v}}, t.to...) } @@ -118228,20 +118237,20 @@ func (t *Add) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Add) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Add) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Add) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoAddIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Add) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoAddIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Add) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoAddIntermediateType{&btoAddIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Add) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoAddIntermediateType{&btoAddIntermediateType{IRI: v}}, t.bto...) } @@ -118353,20 +118362,20 @@ func (t *Add) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Add) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Add) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Add) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccAddIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Add) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccAddIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Add) PrependCcIRI(v url.URL) { - t.cc = append([]*ccAddIntermediateType{&ccAddIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Add) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccAddIntermediateType{&ccAddIntermediateType{IRI: v}}, t.cc...) } @@ -118478,20 +118487,20 @@ func (t *Add) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Add) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Add) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Add) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccAddIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Add) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccAddIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Add) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccAddIntermediateType{&bccAddIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Add) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccAddIntermediateType{&bccAddIntermediateType{IRI: v}}, t.bcc...) } @@ -118551,14 +118560,14 @@ func (t *Add) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Add) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Add) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Add) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeAddIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Add) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeAddIntermediateType{IRI: v} } @@ -118610,14 +118619,14 @@ func (t *Add) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Add) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Add) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Add) SetDurationIRI(v url.URL) { - t.duration = &durationAddIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Add) SetDurationIRI(v *url.URL) { + t.duration = &durationAddIntermediateType{IRI: v} } @@ -118669,14 +118678,14 @@ func (t *Add) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Add) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Add) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Add) SetSourceIRI(v url.URL) { - t.source = &sourceAddIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Add) SetSourceIRI(v *url.URL) { + t.source = &sourceAddIntermediateType{IRI: v} } @@ -118728,14 +118737,14 @@ func (t *Add) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Add) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Add) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Add) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxAddIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Add) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxAddIntermediateType{anyURI: v} } @@ -118787,14 +118796,14 @@ func (t *Add) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Add) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Add) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Add) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxAddIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Add) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxAddIntermediateType{anyURI: v} } @@ -118864,14 +118873,14 @@ func (t *Add) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Add) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Add) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Add) SetFollowingAnyURI(v url.URL) { - t.following = &followingAddIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Add) SetFollowingAnyURI(v *url.URL) { + t.following = &followingAddIntermediateType{anyURI: v} } @@ -118941,14 +118950,14 @@ func (t *Add) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Add) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Add) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Add) SetFollowersAnyURI(v url.URL) { - t.followers = &followersAddIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Add) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersAddIntermediateType{anyURI: v} } @@ -119018,14 +119027,14 @@ func (t *Add) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Add) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Add) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Add) SetLikedAnyURI(v url.URL) { - t.liked = &likedAddIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Add) SetLikedAnyURI(v *url.URL) { + t.liked = &likedAddIntermediateType{anyURI: v} } @@ -119095,14 +119104,14 @@ func (t *Add) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Add) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Add) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Add) SetLikesAnyURI(v url.URL) { - t.likes = &likesAddIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Add) SetLikesAnyURI(v *url.URL) { + t.likes = &likesAddIntermediateType{anyURI: v} } @@ -119136,26 +119145,27 @@ func (t *Add) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Add) GetStreams(index int) (v url.URL) { +func (t *Add) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Add) AppendStreams(v url.URL) { +func (t *Add) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Add) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Add) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Add) 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] } @@ -119206,14 +119216,14 @@ func (t *Add) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Add) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Add) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Add) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameAddIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Add) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameAddIntermediateType{IRI: v} } @@ -119300,14 +119310,14 @@ func (t *Add) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Add) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Add) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Add) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsAddIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Add) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsAddIntermediateType{IRI: v} } @@ -119341,14 +119351,14 @@ func (t *Add) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Add) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Add) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Add) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Add) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -119380,14 +119390,14 @@ func (t *Add) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Add) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Add) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Add) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Add) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -119419,14 +119429,14 @@ func (t *Add) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Add) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Add) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Add) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Add) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -119458,14 +119468,14 @@ func (t *Add) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Add) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Add) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Add) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Add) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -119497,14 +119507,14 @@ func (t *Add) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Add) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Add) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Add) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Add) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -119536,14 +119546,14 @@ func (t *Add) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Add) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Add) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Add) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Add) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -119801,7 +119811,7 @@ func (t *Add) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -120107,7 +120117,7 @@ func (t *Add) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -120122,7 +120132,7 @@ func (t *Add) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -120137,7 +120147,7 @@ func (t *Add) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -120152,7 +120162,7 @@ func (t *Add) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -120167,7 +120177,7 @@ func (t *Add) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -120182,7 +120192,7 @@ func (t *Add) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -121148,7 +121158,7 @@ func (t *Add) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -121157,7 +121167,7 @@ func (t *Add) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -121371,7 +121381,7 @@ func (t *actorAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -121439,7 +121449,7 @@ func (t *objectAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -121522,7 +121532,7 @@ func (t *targetAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -121605,7 +121615,7 @@ func (t *resultAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -121688,7 +121698,7 @@ func (t *originAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -121771,7 +121781,7 @@ func (t *instrumentAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -121825,7 +121835,7 @@ func (t *altitudeAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -121908,7 +121918,7 @@ func (t *attachmentAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -121991,7 +122001,7 @@ func (t *attributedToAddIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -122074,7 +122084,7 @@ func (t *audienceAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -122142,7 +122152,7 @@ func (t *contentAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -122225,7 +122235,7 @@ func (t *contextAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -122293,7 +122303,7 @@ func (t *nameAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -122347,7 +122357,7 @@ func (t *endTimeAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -122430,7 +122440,7 @@ func (t *generatorAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -122513,7 +122523,7 @@ func (t *iconAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -122596,7 +122606,7 @@ func (t *imageAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -122679,7 +122689,7 @@ func (t *inReplyToAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -122762,7 +122772,7 @@ func (t *locationAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -122845,7 +122855,7 @@ func (t *previewAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -122899,7 +122909,7 @@ func (t *publishedAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -122967,7 +122977,7 @@ func (t *repliesAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -123021,7 +123031,7 @@ func (t *startTimeAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -123089,7 +123099,7 @@ func (t *summaryAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -123172,7 +123182,7 @@ func (t *tagAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -123226,7 +123236,7 @@ func (t *updatedAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -123290,7 +123300,7 @@ func (t *urlAddIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlAddIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -123377,7 +123387,7 @@ func (t *toAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -123460,7 +123470,7 @@ func (t *btoAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -123543,7 +123553,7 @@ func (t *ccAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -123626,7 +123636,7 @@ func (t *bccAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -123680,7 +123690,7 @@ func (t *mediaTypeAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -123734,7 +123744,7 @@ func (t *durationAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -123802,7 +123812,7 @@ func (t *sourceAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -123870,7 +123880,7 @@ func (t *inboxAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -123938,7 +123948,7 @@ func (t *outboxAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -124021,7 +124031,7 @@ func (t *followingAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -124104,7 +124114,7 @@ func (t *followersAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -124187,7 +124197,7 @@ func (t *likedAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -124270,7 +124280,7 @@ func (t *likesAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -124324,7 +124334,7 @@ func (t *preferredUsernameAddIntermediateType) Serialize() (i interface{}, err e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -124392,7 +124402,7 @@ func (t *endpointsAddIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -124492,7 +124502,7 @@ type Arrive struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesArriveIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameArriveIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -124590,20 +124600,20 @@ func (t *Arrive) IsActorIRI(index int) (ok bool) { } // GetActorIRI returns the value safely if IsActorIRI returned true for the specified index -func (t *Arrive) GetActorIRI(index int) (v url.URL) { - return *t.actor[index].IRI +func (t *Arrive) GetActorIRI(index int) (v *url.URL) { + return t.actor[index].IRI } -// AppendActorIRI adds to the back of actor a url.URL type -func (t *Arrive) AppendActorIRI(v url.URL) { - t.actor = append(t.actor, &actorArriveIntermediateType{IRI: &v}) +// AppendActorIRI adds to the back of actor a *url.URL type +func (t *Arrive) AppendActorIRI(v *url.URL) { + t.actor = append(t.actor, &actorArriveIntermediateType{IRI: v}) } -// PrependActorIRI adds to the front of actor a url.URL type -func (t *Arrive) PrependActorIRI(v url.URL) { - t.actor = append([]*actorArriveIntermediateType{&actorArriveIntermediateType{IRI: &v}}, t.actor...) +// PrependActorIRI adds to the front of actor a *url.URL type +func (t *Arrive) PrependActorIRI(v *url.URL) { + t.actor = append([]*actorArriveIntermediateType{&actorArriveIntermediateType{IRI: v}}, t.actor...) } @@ -124715,20 +124725,20 @@ func (t *Arrive) IsTargetIRI(index int) (ok bool) { } // GetTargetIRI returns the value safely if IsTargetIRI returned true for the specified index -func (t *Arrive) GetTargetIRI(index int) (v url.URL) { - return *t.target[index].IRI +func (t *Arrive) GetTargetIRI(index int) (v *url.URL) { + return t.target[index].IRI } -// AppendTargetIRI adds to the back of target a url.URL type -func (t *Arrive) AppendTargetIRI(v url.URL) { - t.target = append(t.target, &targetArriveIntermediateType{IRI: &v}) +// AppendTargetIRI adds to the back of target a *url.URL type +func (t *Arrive) AppendTargetIRI(v *url.URL) { + t.target = append(t.target, &targetArriveIntermediateType{IRI: v}) } -// PrependTargetIRI adds to the front of target a url.URL type -func (t *Arrive) PrependTargetIRI(v url.URL) { - t.target = append([]*targetArriveIntermediateType{&targetArriveIntermediateType{IRI: &v}}, t.target...) +// PrependTargetIRI adds to the front of target a *url.URL type +func (t *Arrive) PrependTargetIRI(v *url.URL) { + t.target = append([]*targetArriveIntermediateType{&targetArriveIntermediateType{IRI: v}}, t.target...) } @@ -124840,20 +124850,20 @@ func (t *Arrive) IsResultIRI(index int) (ok bool) { } // GetResultIRI returns the value safely if IsResultIRI returned true for the specified index -func (t *Arrive) GetResultIRI(index int) (v url.URL) { - return *t.result[index].IRI +func (t *Arrive) GetResultIRI(index int) (v *url.URL) { + return t.result[index].IRI } -// AppendResultIRI adds to the back of result a url.URL type -func (t *Arrive) AppendResultIRI(v url.URL) { - t.result = append(t.result, &resultArriveIntermediateType{IRI: &v}) +// AppendResultIRI adds to the back of result a *url.URL type +func (t *Arrive) AppendResultIRI(v *url.URL) { + t.result = append(t.result, &resultArriveIntermediateType{IRI: v}) } -// PrependResultIRI adds to the front of result a url.URL type -func (t *Arrive) PrependResultIRI(v url.URL) { - t.result = append([]*resultArriveIntermediateType{&resultArriveIntermediateType{IRI: &v}}, t.result...) +// PrependResultIRI adds to the front of result a *url.URL type +func (t *Arrive) PrependResultIRI(v *url.URL) { + t.result = append([]*resultArriveIntermediateType{&resultArriveIntermediateType{IRI: v}}, t.result...) } @@ -124965,20 +124975,20 @@ func (t *Arrive) IsOriginIRI(index int) (ok bool) { } // GetOriginIRI returns the value safely if IsOriginIRI returned true for the specified index -func (t *Arrive) GetOriginIRI(index int) (v url.URL) { - return *t.origin[index].IRI +func (t *Arrive) GetOriginIRI(index int) (v *url.URL) { + return t.origin[index].IRI } -// AppendOriginIRI adds to the back of origin a url.URL type -func (t *Arrive) AppendOriginIRI(v url.URL) { - t.origin = append(t.origin, &originArriveIntermediateType{IRI: &v}) +// AppendOriginIRI adds to the back of origin a *url.URL type +func (t *Arrive) AppendOriginIRI(v *url.URL) { + t.origin = append(t.origin, &originArriveIntermediateType{IRI: v}) } -// PrependOriginIRI adds to the front of origin a url.URL type -func (t *Arrive) PrependOriginIRI(v url.URL) { - t.origin = append([]*originArriveIntermediateType{&originArriveIntermediateType{IRI: &v}}, t.origin...) +// PrependOriginIRI adds to the front of origin a *url.URL type +func (t *Arrive) PrependOriginIRI(v *url.URL) { + t.origin = append([]*originArriveIntermediateType{&originArriveIntermediateType{IRI: v}}, t.origin...) } @@ -125090,20 +125100,20 @@ func (t *Arrive) IsInstrumentIRI(index int) (ok bool) { } // GetInstrumentIRI returns the value safely if IsInstrumentIRI returned true for the specified index -func (t *Arrive) GetInstrumentIRI(index int) (v url.URL) { - return *t.instrument[index].IRI +func (t *Arrive) GetInstrumentIRI(index int) (v *url.URL) { + return t.instrument[index].IRI } -// AppendInstrumentIRI adds to the back of instrument a url.URL type -func (t *Arrive) AppendInstrumentIRI(v url.URL) { - t.instrument = append(t.instrument, &instrumentArriveIntermediateType{IRI: &v}) +// AppendInstrumentIRI adds to the back of instrument a *url.URL type +func (t *Arrive) AppendInstrumentIRI(v *url.URL) { + t.instrument = append(t.instrument, &instrumentArriveIntermediateType{IRI: v}) } -// PrependInstrumentIRI adds to the front of instrument a url.URL type -func (t *Arrive) PrependInstrumentIRI(v url.URL) { - t.instrument = append([]*instrumentArriveIntermediateType{&instrumentArriveIntermediateType{IRI: &v}}, t.instrument...) +// PrependInstrumentIRI adds to the front of instrument a *url.URL type +func (t *Arrive) PrependInstrumentIRI(v *url.URL) { + t.instrument = append([]*instrumentArriveIntermediateType{&instrumentArriveIntermediateType{IRI: v}}, t.instrument...) } @@ -125163,14 +125173,14 @@ func (t *Arrive) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Arrive) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Arrive) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Arrive) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeArriveIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Arrive) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeArriveIntermediateType{IRI: v} } @@ -125274,20 +125284,20 @@ func (t *Arrive) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Arrive) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Arrive) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Arrive) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentArriveIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Arrive) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentArriveIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Arrive) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentArriveIntermediateType{&attachmentArriveIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Arrive) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentArriveIntermediateType{&attachmentArriveIntermediateType{IRI: v}}, t.attachment...) } @@ -125399,20 +125409,20 @@ func (t *Arrive) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Arrive) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Arrive) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Arrive) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToArriveIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Arrive) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToArriveIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Arrive) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToArriveIntermediateType{&attributedToArriveIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Arrive) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToArriveIntermediateType{&attributedToArriveIntermediateType{IRI: v}}, t.attributedTo...) } @@ -125524,20 +125534,20 @@ func (t *Arrive) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Arrive) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Arrive) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Arrive) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceArriveIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Arrive) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceArriveIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Arrive) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceArriveIntermediateType{&audienceArriveIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Arrive) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceArriveIntermediateType{&audienceArriveIntermediateType{IRI: v}}, t.audience...) } @@ -125649,20 +125659,20 @@ func (t *Arrive) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Arrive) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Arrive) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Arrive) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentArriveIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Arrive) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentArriveIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Arrive) PrependContentIRI(v url.URL) { - t.content = append([]*contentArriveIntermediateType{&contentArriveIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Arrive) PrependContentIRI(v *url.URL) { + t.content = append([]*contentArriveIntermediateType{&contentArriveIntermediateType{IRI: v}}, t.content...) } @@ -125809,20 +125819,20 @@ func (t *Arrive) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Arrive) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Arrive) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Arrive) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextArriveIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Arrive) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextArriveIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Arrive) PrependContextIRI(v url.URL) { - t.context = append([]*contextArriveIntermediateType{&contextArriveIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Arrive) PrependContextIRI(v *url.URL) { + t.context = append([]*contextArriveIntermediateType{&contextArriveIntermediateType{IRI: v}}, t.context...) } @@ -125934,20 +125944,20 @@ func (t *Arrive) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Arrive) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Arrive) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Arrive) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameArriveIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Arrive) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameArriveIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Arrive) PrependNameIRI(v url.URL) { - t.name = append([]*nameArriveIntermediateType{&nameArriveIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Arrive) PrependNameIRI(v *url.URL) { + t.name = append([]*nameArriveIntermediateType{&nameArriveIntermediateType{IRI: v}}, t.name...) } @@ -126042,14 +126052,14 @@ func (t *Arrive) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Arrive) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Arrive) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Arrive) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeArriveIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Arrive) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeArriveIntermediateType{IRI: v} } @@ -126153,20 +126163,20 @@ func (t *Arrive) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Arrive) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Arrive) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Arrive) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorArriveIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Arrive) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorArriveIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Arrive) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorArriveIntermediateType{&generatorArriveIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Arrive) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorArriveIntermediateType{&generatorArriveIntermediateType{IRI: v}}, t.generator...) } @@ -126278,20 +126288,20 @@ func (t *Arrive) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Arrive) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Arrive) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Arrive) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconArriveIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Arrive) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconArriveIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Arrive) PrependIconIRI(v url.URL) { - t.icon = append([]*iconArriveIntermediateType{&iconArriveIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Arrive) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconArriveIntermediateType{&iconArriveIntermediateType{IRI: v}}, t.icon...) } @@ -126333,14 +126343,14 @@ func (t *Arrive) HasId() (ok bool) { } // GetId returns the value for id -func (t *Arrive) GetId() (v url.URL) { - return *t.id +func (t *Arrive) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Arrive) SetId(v url.URL) { - t.id = &v +func (t *Arrive) SetId(v *url.URL) { + t.id = v } @@ -126442,20 +126452,20 @@ func (t *Arrive) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Arrive) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Arrive) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Arrive) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageArriveIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Arrive) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageArriveIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Arrive) PrependImageIRI(v url.URL) { - t.image = append([]*imageArriveIntermediateType{&imageArriveIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Arrive) PrependImageIRI(v *url.URL) { + t.image = append([]*imageArriveIntermediateType{&imageArriveIntermediateType{IRI: v}}, t.image...) } @@ -126567,20 +126577,20 @@ func (t *Arrive) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Arrive) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Arrive) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Arrive) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToArriveIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Arrive) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToArriveIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Arrive) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToArriveIntermediateType{&inReplyToArriveIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Arrive) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToArriveIntermediateType{&inReplyToArriveIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -126692,20 +126702,20 @@ func (t *Arrive) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Arrive) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Arrive) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Arrive) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationArriveIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Arrive) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationArriveIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Arrive) PrependLocationIRI(v url.URL) { - t.location = append([]*locationArriveIntermediateType{&locationArriveIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Arrive) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationArriveIntermediateType{&locationArriveIntermediateType{IRI: v}}, t.location...) } @@ -126817,20 +126827,20 @@ func (t *Arrive) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Arrive) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Arrive) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Arrive) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewArriveIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Arrive) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewArriveIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Arrive) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewArriveIntermediateType{&previewArriveIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Arrive) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewArriveIntermediateType{&previewArriveIntermediateType{IRI: v}}, t.preview...) } @@ -126890,14 +126900,14 @@ func (t *Arrive) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Arrive) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Arrive) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Arrive) SetPublishedIRI(v url.URL) { - t.published = &publishedArriveIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Arrive) SetPublishedIRI(v *url.URL) { + t.published = &publishedArriveIntermediateType{IRI: v} } @@ -126949,14 +126959,14 @@ func (t *Arrive) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Arrive) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Arrive) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Arrive) SetRepliesIRI(v url.URL) { - t.replies = &repliesArriveIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Arrive) SetRepliesIRI(v *url.URL) { + t.replies = &repliesArriveIntermediateType{IRI: v} } @@ -127008,14 +127018,14 @@ func (t *Arrive) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Arrive) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Arrive) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Arrive) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeArriveIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Arrive) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeArriveIntermediateType{IRI: v} } @@ -127119,20 +127129,20 @@ func (t *Arrive) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Arrive) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Arrive) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Arrive) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryArriveIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Arrive) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryArriveIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Arrive) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryArriveIntermediateType{&summaryArriveIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Arrive) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryArriveIntermediateType{&summaryArriveIntermediateType{IRI: v}}, t.summary...) } @@ -127279,20 +127289,20 @@ func (t *Arrive) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Arrive) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Arrive) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Arrive) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagArriveIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Arrive) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagArriveIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Arrive) PrependTagIRI(v url.URL) { - t.tag = append([]*tagArriveIntermediateType{&tagArriveIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Arrive) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagArriveIntermediateType{&tagArriveIntermediateType{IRI: v}}, t.tag...) } @@ -127384,14 +127394,14 @@ func (t *Arrive) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Arrive) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Arrive) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Arrive) SetUpdatedIRI(v url.URL) { - t.updated = &updatedArriveIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Arrive) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedArriveIntermediateType{IRI: v} } @@ -127431,20 +127441,20 @@ func (t *Arrive) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Arrive) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Arrive) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Arrive) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlArriveIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Arrive) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlArriveIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Arrive) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlArriveIntermediateType{&urlArriveIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Arrive) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlArriveIntermediateType{&urlArriveIntermediateType{anyURI: v}}, t.url...) } @@ -127588,20 +127598,20 @@ func (t *Arrive) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Arrive) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Arrive) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Arrive) AppendToIRI(v url.URL) { - t.to = append(t.to, &toArriveIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Arrive) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toArriveIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Arrive) PrependToIRI(v url.URL) { - t.to = append([]*toArriveIntermediateType{&toArriveIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Arrive) PrependToIRI(v *url.URL) { + t.to = append([]*toArriveIntermediateType{&toArriveIntermediateType{IRI: v}}, t.to...) } @@ -127713,20 +127723,20 @@ func (t *Arrive) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Arrive) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Arrive) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Arrive) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoArriveIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Arrive) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoArriveIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Arrive) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoArriveIntermediateType{&btoArriveIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Arrive) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoArriveIntermediateType{&btoArriveIntermediateType{IRI: v}}, t.bto...) } @@ -127838,20 +127848,20 @@ func (t *Arrive) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Arrive) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Arrive) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Arrive) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccArriveIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Arrive) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccArriveIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Arrive) PrependCcIRI(v url.URL) { - t.cc = append([]*ccArriveIntermediateType{&ccArriveIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Arrive) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccArriveIntermediateType{&ccArriveIntermediateType{IRI: v}}, t.cc...) } @@ -127963,20 +127973,20 @@ func (t *Arrive) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Arrive) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Arrive) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Arrive) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccArriveIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Arrive) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccArriveIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Arrive) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccArriveIntermediateType{&bccArriveIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Arrive) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccArriveIntermediateType{&bccArriveIntermediateType{IRI: v}}, t.bcc...) } @@ -128036,14 +128046,14 @@ func (t *Arrive) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Arrive) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Arrive) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Arrive) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeArriveIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Arrive) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeArriveIntermediateType{IRI: v} } @@ -128095,14 +128105,14 @@ func (t *Arrive) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Arrive) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Arrive) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Arrive) SetDurationIRI(v url.URL) { - t.duration = &durationArriveIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Arrive) SetDurationIRI(v *url.URL) { + t.duration = &durationArriveIntermediateType{IRI: v} } @@ -128154,14 +128164,14 @@ func (t *Arrive) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Arrive) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Arrive) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Arrive) SetSourceIRI(v url.URL) { - t.source = &sourceArriveIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Arrive) SetSourceIRI(v *url.URL) { + t.source = &sourceArriveIntermediateType{IRI: v} } @@ -128213,14 +128223,14 @@ func (t *Arrive) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Arrive) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Arrive) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Arrive) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxArriveIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Arrive) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxArriveIntermediateType{anyURI: v} } @@ -128272,14 +128282,14 @@ func (t *Arrive) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Arrive) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Arrive) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Arrive) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxArriveIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Arrive) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxArriveIntermediateType{anyURI: v} } @@ -128349,14 +128359,14 @@ func (t *Arrive) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Arrive) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Arrive) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Arrive) SetFollowingAnyURI(v url.URL) { - t.following = &followingArriveIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Arrive) SetFollowingAnyURI(v *url.URL) { + t.following = &followingArriveIntermediateType{anyURI: v} } @@ -128426,14 +128436,14 @@ func (t *Arrive) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Arrive) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Arrive) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Arrive) SetFollowersAnyURI(v url.URL) { - t.followers = &followersArriveIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Arrive) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersArriveIntermediateType{anyURI: v} } @@ -128503,14 +128513,14 @@ func (t *Arrive) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Arrive) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Arrive) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Arrive) SetLikedAnyURI(v url.URL) { - t.liked = &likedArriveIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Arrive) SetLikedAnyURI(v *url.URL) { + t.liked = &likedArriveIntermediateType{anyURI: v} } @@ -128580,14 +128590,14 @@ func (t *Arrive) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Arrive) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Arrive) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Arrive) SetLikesAnyURI(v url.URL) { - t.likes = &likesArriveIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Arrive) SetLikesAnyURI(v *url.URL) { + t.likes = &likesArriveIntermediateType{anyURI: v} } @@ -128621,26 +128631,27 @@ func (t *Arrive) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Arrive) GetStreams(index int) (v url.URL) { +func (t *Arrive) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Arrive) AppendStreams(v url.URL) { +func (t *Arrive) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Arrive) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Arrive) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Arrive) 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] } @@ -128691,14 +128702,14 @@ func (t *Arrive) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Arrive) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Arrive) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Arrive) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameArriveIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Arrive) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameArriveIntermediateType{IRI: v} } @@ -128785,14 +128796,14 @@ func (t *Arrive) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Arrive) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Arrive) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Arrive) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsArriveIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Arrive) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsArriveIntermediateType{IRI: v} } @@ -128826,14 +128837,14 @@ func (t *Arrive) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Arrive) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Arrive) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Arrive) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Arrive) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -128865,14 +128876,14 @@ func (t *Arrive) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Arrive) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Arrive) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Arrive) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Arrive) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -128904,14 +128915,14 @@ func (t *Arrive) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Arrive) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Arrive) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Arrive) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Arrive) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -128943,14 +128954,14 @@ func (t *Arrive) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Arrive) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Arrive) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Arrive) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Arrive) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -128982,14 +128993,14 @@ func (t *Arrive) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Arrive) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Arrive) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Arrive) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Arrive) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -129021,14 +129032,14 @@ func (t *Arrive) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Arrive) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Arrive) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Arrive) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Arrive) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -129275,7 +129286,7 @@ func (t *Arrive) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -129581,7 +129592,7 @@ func (t *Arrive) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -129596,7 +129607,7 @@ func (t *Arrive) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -129611,7 +129622,7 @@ func (t *Arrive) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -129626,7 +129637,7 @@ func (t *Arrive) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -129641,7 +129652,7 @@ func (t *Arrive) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -129656,7 +129667,7 @@ func (t *Arrive) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -130594,7 +130605,7 @@ func (t *Arrive) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -130603,7 +130614,7 @@ func (t *Arrive) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -130817,7 +130828,7 @@ func (t *actorArriveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -130900,7 +130911,7 @@ func (t *targetArriveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -130983,7 +130994,7 @@ func (t *resultArriveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -131066,7 +131077,7 @@ func (t *originArriveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -131149,7 +131160,7 @@ func (t *instrumentArriveIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -131203,7 +131214,7 @@ func (t *altitudeArriveIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -131286,7 +131297,7 @@ func (t *attachmentArriveIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -131369,7 +131380,7 @@ func (t *attributedToArriveIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -131452,7 +131463,7 @@ func (t *audienceArriveIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -131520,7 +131531,7 @@ func (t *contentArriveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -131603,7 +131614,7 @@ func (t *contextArriveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -131671,7 +131682,7 @@ func (t *nameArriveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -131725,7 +131736,7 @@ func (t *endTimeArriveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -131808,7 +131819,7 @@ func (t *generatorArriveIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -131891,7 +131902,7 @@ func (t *iconArriveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -131974,7 +131985,7 @@ func (t *imageArriveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -132057,7 +132068,7 @@ func (t *inReplyToArriveIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -132140,7 +132151,7 @@ func (t *locationArriveIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -132223,7 +132234,7 @@ func (t *previewArriveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -132277,7 +132288,7 @@ func (t *publishedArriveIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -132345,7 +132356,7 @@ func (t *repliesArriveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -132399,7 +132410,7 @@ func (t *startTimeArriveIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -132467,7 +132478,7 @@ func (t *summaryArriveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -132550,7 +132561,7 @@ func (t *tagArriveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -132604,7 +132615,7 @@ func (t *updatedArriveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -132668,7 +132679,7 @@ func (t *urlArriveIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlArriveIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -132755,7 +132766,7 @@ func (t *toArriveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -132838,7 +132849,7 @@ func (t *btoArriveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -132921,7 +132932,7 @@ func (t *ccArriveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -133004,7 +133015,7 @@ func (t *bccArriveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -133058,7 +133069,7 @@ func (t *mediaTypeArriveIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -133112,7 +133123,7 @@ func (t *durationArriveIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -133180,7 +133191,7 @@ func (t *sourceArriveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -133248,7 +133259,7 @@ func (t *inboxArriveIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -133316,7 +133327,7 @@ func (t *outboxArriveIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -133399,7 +133410,7 @@ func (t *followingArriveIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -133482,7 +133493,7 @@ func (t *followersArriveIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -133565,7 +133576,7 @@ func (t *likedArriveIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -133648,7 +133659,7 @@ func (t *likesArriveIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -133702,7 +133713,7 @@ func (t *preferredUsernameArriveIntermediateType) Serialize() (i interface{}, er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -133770,7 +133781,7 @@ func (t *endpointsArriveIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -133872,7 +133883,7 @@ type Create struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesCreateIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameCreateIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -133970,20 +133981,20 @@ func (t *Create) IsActorIRI(index int) (ok bool) { } // GetActorIRI returns the value safely if IsActorIRI returned true for the specified index -func (t *Create) GetActorIRI(index int) (v url.URL) { - return *t.actor[index].IRI +func (t *Create) GetActorIRI(index int) (v *url.URL) { + return t.actor[index].IRI } -// AppendActorIRI adds to the back of actor a url.URL type -func (t *Create) AppendActorIRI(v url.URL) { - t.actor = append(t.actor, &actorCreateIntermediateType{IRI: &v}) +// AppendActorIRI adds to the back of actor a *url.URL type +func (t *Create) AppendActorIRI(v *url.URL) { + t.actor = append(t.actor, &actorCreateIntermediateType{IRI: v}) } -// PrependActorIRI adds to the front of actor a url.URL type -func (t *Create) PrependActorIRI(v url.URL) { - t.actor = append([]*actorCreateIntermediateType{&actorCreateIntermediateType{IRI: &v}}, t.actor...) +// PrependActorIRI adds to the front of actor a *url.URL type +func (t *Create) PrependActorIRI(v *url.URL) { + t.actor = append([]*actorCreateIntermediateType{&actorCreateIntermediateType{IRI: v}}, t.actor...) } @@ -134063,20 +134074,20 @@ func (t *Create) IsObjectIRI(index int) (ok bool) { } // GetObjectIRI returns the value safely if IsObjectIRI returned true for the specified index -func (t *Create) GetObjectIRI(index int) (v url.URL) { - return *t.object[index].IRI +func (t *Create) GetObjectIRI(index int) (v *url.URL) { + return t.object[index].IRI } -// AppendObjectIRI adds to the back of object a url.URL type -func (t *Create) AppendObjectIRI(v url.URL) { - t.object = append(t.object, &objectCreateIntermediateType{IRI: &v}) +// AppendObjectIRI adds to the back of object a *url.URL type +func (t *Create) AppendObjectIRI(v *url.URL) { + t.object = append(t.object, &objectCreateIntermediateType{IRI: v}) } -// PrependObjectIRI adds to the front of object a url.URL type -func (t *Create) PrependObjectIRI(v url.URL) { - t.object = append([]*objectCreateIntermediateType{&objectCreateIntermediateType{IRI: &v}}, t.object...) +// PrependObjectIRI adds to the front of object a *url.URL type +func (t *Create) PrependObjectIRI(v *url.URL) { + t.object = append([]*objectCreateIntermediateType{&objectCreateIntermediateType{IRI: v}}, t.object...) } @@ -134188,20 +134199,20 @@ func (t *Create) IsTargetIRI(index int) (ok bool) { } // GetTargetIRI returns the value safely if IsTargetIRI returned true for the specified index -func (t *Create) GetTargetIRI(index int) (v url.URL) { - return *t.target[index].IRI +func (t *Create) GetTargetIRI(index int) (v *url.URL) { + return t.target[index].IRI } -// AppendTargetIRI adds to the back of target a url.URL type -func (t *Create) AppendTargetIRI(v url.URL) { - t.target = append(t.target, &targetCreateIntermediateType{IRI: &v}) +// AppendTargetIRI adds to the back of target a *url.URL type +func (t *Create) AppendTargetIRI(v *url.URL) { + t.target = append(t.target, &targetCreateIntermediateType{IRI: v}) } -// PrependTargetIRI adds to the front of target a url.URL type -func (t *Create) PrependTargetIRI(v url.URL) { - t.target = append([]*targetCreateIntermediateType{&targetCreateIntermediateType{IRI: &v}}, t.target...) +// PrependTargetIRI adds to the front of target a *url.URL type +func (t *Create) PrependTargetIRI(v *url.URL) { + t.target = append([]*targetCreateIntermediateType{&targetCreateIntermediateType{IRI: v}}, t.target...) } @@ -134313,20 +134324,20 @@ func (t *Create) IsResultIRI(index int) (ok bool) { } // GetResultIRI returns the value safely if IsResultIRI returned true for the specified index -func (t *Create) GetResultIRI(index int) (v url.URL) { - return *t.result[index].IRI +func (t *Create) GetResultIRI(index int) (v *url.URL) { + return t.result[index].IRI } -// AppendResultIRI adds to the back of result a url.URL type -func (t *Create) AppendResultIRI(v url.URL) { - t.result = append(t.result, &resultCreateIntermediateType{IRI: &v}) +// AppendResultIRI adds to the back of result a *url.URL type +func (t *Create) AppendResultIRI(v *url.URL) { + t.result = append(t.result, &resultCreateIntermediateType{IRI: v}) } -// PrependResultIRI adds to the front of result a url.URL type -func (t *Create) PrependResultIRI(v url.URL) { - t.result = append([]*resultCreateIntermediateType{&resultCreateIntermediateType{IRI: &v}}, t.result...) +// PrependResultIRI adds to the front of result a *url.URL type +func (t *Create) PrependResultIRI(v *url.URL) { + t.result = append([]*resultCreateIntermediateType{&resultCreateIntermediateType{IRI: v}}, t.result...) } @@ -134438,20 +134449,20 @@ func (t *Create) IsOriginIRI(index int) (ok bool) { } // GetOriginIRI returns the value safely if IsOriginIRI returned true for the specified index -func (t *Create) GetOriginIRI(index int) (v url.URL) { - return *t.origin[index].IRI +func (t *Create) GetOriginIRI(index int) (v *url.URL) { + return t.origin[index].IRI } -// AppendOriginIRI adds to the back of origin a url.URL type -func (t *Create) AppendOriginIRI(v url.URL) { - t.origin = append(t.origin, &originCreateIntermediateType{IRI: &v}) +// AppendOriginIRI adds to the back of origin a *url.URL type +func (t *Create) AppendOriginIRI(v *url.URL) { + t.origin = append(t.origin, &originCreateIntermediateType{IRI: v}) } -// PrependOriginIRI adds to the front of origin a url.URL type -func (t *Create) PrependOriginIRI(v url.URL) { - t.origin = append([]*originCreateIntermediateType{&originCreateIntermediateType{IRI: &v}}, t.origin...) +// PrependOriginIRI adds to the front of origin a *url.URL type +func (t *Create) PrependOriginIRI(v *url.URL) { + t.origin = append([]*originCreateIntermediateType{&originCreateIntermediateType{IRI: v}}, t.origin...) } @@ -134563,20 +134574,20 @@ func (t *Create) IsInstrumentIRI(index int) (ok bool) { } // GetInstrumentIRI returns the value safely if IsInstrumentIRI returned true for the specified index -func (t *Create) GetInstrumentIRI(index int) (v url.URL) { - return *t.instrument[index].IRI +func (t *Create) GetInstrumentIRI(index int) (v *url.URL) { + return t.instrument[index].IRI } -// AppendInstrumentIRI adds to the back of instrument a url.URL type -func (t *Create) AppendInstrumentIRI(v url.URL) { - t.instrument = append(t.instrument, &instrumentCreateIntermediateType{IRI: &v}) +// AppendInstrumentIRI adds to the back of instrument a *url.URL type +func (t *Create) AppendInstrumentIRI(v *url.URL) { + t.instrument = append(t.instrument, &instrumentCreateIntermediateType{IRI: v}) } -// PrependInstrumentIRI adds to the front of instrument a url.URL type -func (t *Create) PrependInstrumentIRI(v url.URL) { - t.instrument = append([]*instrumentCreateIntermediateType{&instrumentCreateIntermediateType{IRI: &v}}, t.instrument...) +// PrependInstrumentIRI adds to the front of instrument a *url.URL type +func (t *Create) PrependInstrumentIRI(v *url.URL) { + t.instrument = append([]*instrumentCreateIntermediateType{&instrumentCreateIntermediateType{IRI: v}}, t.instrument...) } @@ -134636,14 +134647,14 @@ func (t *Create) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Create) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Create) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Create) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeCreateIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Create) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeCreateIntermediateType{IRI: v} } @@ -134747,20 +134758,20 @@ func (t *Create) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Create) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Create) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Create) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentCreateIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Create) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentCreateIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Create) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentCreateIntermediateType{&attachmentCreateIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Create) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentCreateIntermediateType{&attachmentCreateIntermediateType{IRI: v}}, t.attachment...) } @@ -134872,20 +134883,20 @@ func (t *Create) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Create) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Create) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Create) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToCreateIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Create) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToCreateIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Create) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToCreateIntermediateType{&attributedToCreateIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Create) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToCreateIntermediateType{&attributedToCreateIntermediateType{IRI: v}}, t.attributedTo...) } @@ -134997,20 +135008,20 @@ func (t *Create) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Create) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Create) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Create) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceCreateIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Create) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceCreateIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Create) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceCreateIntermediateType{&audienceCreateIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Create) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceCreateIntermediateType{&audienceCreateIntermediateType{IRI: v}}, t.audience...) } @@ -135122,20 +135133,20 @@ func (t *Create) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Create) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Create) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Create) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentCreateIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Create) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentCreateIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Create) PrependContentIRI(v url.URL) { - t.content = append([]*contentCreateIntermediateType{&contentCreateIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Create) PrependContentIRI(v *url.URL) { + t.content = append([]*contentCreateIntermediateType{&contentCreateIntermediateType{IRI: v}}, t.content...) } @@ -135282,20 +135293,20 @@ func (t *Create) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Create) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Create) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Create) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextCreateIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Create) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextCreateIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Create) PrependContextIRI(v url.URL) { - t.context = append([]*contextCreateIntermediateType{&contextCreateIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Create) PrependContextIRI(v *url.URL) { + t.context = append([]*contextCreateIntermediateType{&contextCreateIntermediateType{IRI: v}}, t.context...) } @@ -135407,20 +135418,20 @@ func (t *Create) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Create) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Create) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Create) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameCreateIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Create) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameCreateIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Create) PrependNameIRI(v url.URL) { - t.name = append([]*nameCreateIntermediateType{&nameCreateIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Create) PrependNameIRI(v *url.URL) { + t.name = append([]*nameCreateIntermediateType{&nameCreateIntermediateType{IRI: v}}, t.name...) } @@ -135515,14 +135526,14 @@ func (t *Create) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Create) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Create) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Create) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeCreateIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Create) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeCreateIntermediateType{IRI: v} } @@ -135626,20 +135637,20 @@ func (t *Create) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Create) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Create) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Create) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorCreateIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Create) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorCreateIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Create) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorCreateIntermediateType{&generatorCreateIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Create) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorCreateIntermediateType{&generatorCreateIntermediateType{IRI: v}}, t.generator...) } @@ -135751,20 +135762,20 @@ func (t *Create) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Create) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Create) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Create) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconCreateIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Create) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconCreateIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Create) PrependIconIRI(v url.URL) { - t.icon = append([]*iconCreateIntermediateType{&iconCreateIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Create) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconCreateIntermediateType{&iconCreateIntermediateType{IRI: v}}, t.icon...) } @@ -135806,14 +135817,14 @@ func (t *Create) HasId() (ok bool) { } // GetId returns the value for id -func (t *Create) GetId() (v url.URL) { - return *t.id +func (t *Create) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Create) SetId(v url.URL) { - t.id = &v +func (t *Create) SetId(v *url.URL) { + t.id = v } @@ -135915,20 +135926,20 @@ func (t *Create) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Create) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Create) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Create) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageCreateIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Create) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageCreateIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Create) PrependImageIRI(v url.URL) { - t.image = append([]*imageCreateIntermediateType{&imageCreateIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Create) PrependImageIRI(v *url.URL) { + t.image = append([]*imageCreateIntermediateType{&imageCreateIntermediateType{IRI: v}}, t.image...) } @@ -136040,20 +136051,20 @@ func (t *Create) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Create) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Create) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Create) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToCreateIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Create) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToCreateIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Create) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToCreateIntermediateType{&inReplyToCreateIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Create) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToCreateIntermediateType{&inReplyToCreateIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -136165,20 +136176,20 @@ func (t *Create) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Create) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Create) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Create) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationCreateIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Create) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationCreateIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Create) PrependLocationIRI(v url.URL) { - t.location = append([]*locationCreateIntermediateType{&locationCreateIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Create) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationCreateIntermediateType{&locationCreateIntermediateType{IRI: v}}, t.location...) } @@ -136290,20 +136301,20 @@ func (t *Create) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Create) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Create) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Create) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewCreateIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Create) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewCreateIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Create) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewCreateIntermediateType{&previewCreateIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Create) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewCreateIntermediateType{&previewCreateIntermediateType{IRI: v}}, t.preview...) } @@ -136363,14 +136374,14 @@ func (t *Create) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Create) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Create) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Create) SetPublishedIRI(v url.URL) { - t.published = &publishedCreateIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Create) SetPublishedIRI(v *url.URL) { + t.published = &publishedCreateIntermediateType{IRI: v} } @@ -136422,14 +136433,14 @@ func (t *Create) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Create) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Create) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Create) SetRepliesIRI(v url.URL) { - t.replies = &repliesCreateIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Create) SetRepliesIRI(v *url.URL) { + t.replies = &repliesCreateIntermediateType{IRI: v} } @@ -136481,14 +136492,14 @@ func (t *Create) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Create) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Create) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Create) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeCreateIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Create) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeCreateIntermediateType{IRI: v} } @@ -136592,20 +136603,20 @@ func (t *Create) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Create) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Create) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Create) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryCreateIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Create) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryCreateIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Create) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryCreateIntermediateType{&summaryCreateIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Create) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryCreateIntermediateType{&summaryCreateIntermediateType{IRI: v}}, t.summary...) } @@ -136752,20 +136763,20 @@ func (t *Create) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Create) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Create) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Create) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagCreateIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Create) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagCreateIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Create) PrependTagIRI(v url.URL) { - t.tag = append([]*tagCreateIntermediateType{&tagCreateIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Create) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagCreateIntermediateType{&tagCreateIntermediateType{IRI: v}}, t.tag...) } @@ -136857,14 +136868,14 @@ func (t *Create) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Create) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Create) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Create) SetUpdatedIRI(v url.URL) { - t.updated = &updatedCreateIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Create) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedCreateIntermediateType{IRI: v} } @@ -136904,20 +136915,20 @@ func (t *Create) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Create) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Create) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Create) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlCreateIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Create) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlCreateIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Create) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlCreateIntermediateType{&urlCreateIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Create) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlCreateIntermediateType{&urlCreateIntermediateType{anyURI: v}}, t.url...) } @@ -137061,20 +137072,20 @@ func (t *Create) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Create) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Create) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Create) AppendToIRI(v url.URL) { - t.to = append(t.to, &toCreateIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Create) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toCreateIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Create) PrependToIRI(v url.URL) { - t.to = append([]*toCreateIntermediateType{&toCreateIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Create) PrependToIRI(v *url.URL) { + t.to = append([]*toCreateIntermediateType{&toCreateIntermediateType{IRI: v}}, t.to...) } @@ -137186,20 +137197,20 @@ func (t *Create) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Create) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Create) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Create) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoCreateIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Create) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoCreateIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Create) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoCreateIntermediateType{&btoCreateIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Create) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoCreateIntermediateType{&btoCreateIntermediateType{IRI: v}}, t.bto...) } @@ -137311,20 +137322,20 @@ func (t *Create) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Create) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Create) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Create) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccCreateIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Create) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccCreateIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Create) PrependCcIRI(v url.URL) { - t.cc = append([]*ccCreateIntermediateType{&ccCreateIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Create) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccCreateIntermediateType{&ccCreateIntermediateType{IRI: v}}, t.cc...) } @@ -137436,20 +137447,20 @@ func (t *Create) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Create) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Create) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Create) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccCreateIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Create) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccCreateIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Create) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccCreateIntermediateType{&bccCreateIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Create) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccCreateIntermediateType{&bccCreateIntermediateType{IRI: v}}, t.bcc...) } @@ -137509,14 +137520,14 @@ func (t *Create) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Create) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Create) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Create) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeCreateIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Create) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeCreateIntermediateType{IRI: v} } @@ -137568,14 +137579,14 @@ func (t *Create) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Create) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Create) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Create) SetDurationIRI(v url.URL) { - t.duration = &durationCreateIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Create) SetDurationIRI(v *url.URL) { + t.duration = &durationCreateIntermediateType{IRI: v} } @@ -137627,14 +137638,14 @@ func (t *Create) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Create) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Create) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Create) SetSourceIRI(v url.URL) { - t.source = &sourceCreateIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Create) SetSourceIRI(v *url.URL) { + t.source = &sourceCreateIntermediateType{IRI: v} } @@ -137686,14 +137697,14 @@ func (t *Create) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Create) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Create) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Create) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxCreateIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Create) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxCreateIntermediateType{anyURI: v} } @@ -137745,14 +137756,14 @@ func (t *Create) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Create) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Create) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Create) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxCreateIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Create) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxCreateIntermediateType{anyURI: v} } @@ -137822,14 +137833,14 @@ func (t *Create) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Create) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Create) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Create) SetFollowingAnyURI(v url.URL) { - t.following = &followingCreateIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Create) SetFollowingAnyURI(v *url.URL) { + t.following = &followingCreateIntermediateType{anyURI: v} } @@ -137899,14 +137910,14 @@ func (t *Create) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Create) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Create) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Create) SetFollowersAnyURI(v url.URL) { - t.followers = &followersCreateIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Create) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersCreateIntermediateType{anyURI: v} } @@ -137976,14 +137987,14 @@ func (t *Create) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Create) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Create) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Create) SetLikedAnyURI(v url.URL) { - t.liked = &likedCreateIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Create) SetLikedAnyURI(v *url.URL) { + t.liked = &likedCreateIntermediateType{anyURI: v} } @@ -138053,14 +138064,14 @@ func (t *Create) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Create) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Create) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Create) SetLikesAnyURI(v url.URL) { - t.likes = &likesCreateIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Create) SetLikesAnyURI(v *url.URL) { + t.likes = &likesCreateIntermediateType{anyURI: v} } @@ -138094,26 +138105,27 @@ func (t *Create) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Create) GetStreams(index int) (v url.URL) { +func (t *Create) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Create) AppendStreams(v url.URL) { +func (t *Create) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Create) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Create) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Create) 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] } @@ -138164,14 +138176,14 @@ func (t *Create) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Create) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Create) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Create) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameCreateIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Create) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameCreateIntermediateType{IRI: v} } @@ -138258,14 +138270,14 @@ func (t *Create) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Create) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Create) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Create) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsCreateIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Create) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsCreateIntermediateType{IRI: v} } @@ -138299,14 +138311,14 @@ func (t *Create) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Create) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Create) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Create) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Create) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -138338,14 +138350,14 @@ func (t *Create) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Create) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Create) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Create) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Create) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -138377,14 +138389,14 @@ func (t *Create) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Create) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Create) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Create) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Create) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -138416,14 +138428,14 @@ func (t *Create) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Create) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Create) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Create) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Create) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -138455,14 +138467,14 @@ func (t *Create) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Create) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Create) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Create) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Create) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -138494,14 +138506,14 @@ func (t *Create) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Create) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Create) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Create) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Create) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -138759,7 +138771,7 @@ func (t *Create) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -139065,7 +139077,7 @@ func (t *Create) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -139080,7 +139092,7 @@ func (t *Create) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -139095,7 +139107,7 @@ func (t *Create) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -139110,7 +139122,7 @@ func (t *Create) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -139125,7 +139137,7 @@ func (t *Create) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -139140,7 +139152,7 @@ func (t *Create) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -140106,7 +140118,7 @@ func (t *Create) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -140115,7 +140127,7 @@ func (t *Create) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -140329,7 +140341,7 @@ func (t *actorCreateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -140397,7 +140409,7 @@ func (t *objectCreateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -140480,7 +140492,7 @@ func (t *targetCreateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -140563,7 +140575,7 @@ func (t *resultCreateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -140646,7 +140658,7 @@ func (t *originCreateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -140729,7 +140741,7 @@ func (t *instrumentCreateIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -140783,7 +140795,7 @@ func (t *altitudeCreateIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -140866,7 +140878,7 @@ func (t *attachmentCreateIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -140949,7 +140961,7 @@ func (t *attributedToCreateIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -141032,7 +141044,7 @@ func (t *audienceCreateIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -141100,7 +141112,7 @@ func (t *contentCreateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -141183,7 +141195,7 @@ func (t *contextCreateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -141251,7 +141263,7 @@ func (t *nameCreateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -141305,7 +141317,7 @@ func (t *endTimeCreateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -141388,7 +141400,7 @@ func (t *generatorCreateIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -141471,7 +141483,7 @@ func (t *iconCreateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -141554,7 +141566,7 @@ func (t *imageCreateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -141637,7 +141649,7 @@ func (t *inReplyToCreateIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -141720,7 +141732,7 @@ func (t *locationCreateIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -141803,7 +141815,7 @@ func (t *previewCreateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -141857,7 +141869,7 @@ func (t *publishedCreateIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -141925,7 +141937,7 @@ func (t *repliesCreateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -141979,7 +141991,7 @@ func (t *startTimeCreateIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -142047,7 +142059,7 @@ func (t *summaryCreateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -142130,7 +142142,7 @@ func (t *tagCreateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -142184,7 +142196,7 @@ func (t *updatedCreateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -142248,7 +142260,7 @@ func (t *urlCreateIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlCreateIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -142335,7 +142347,7 @@ func (t *toCreateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -142418,7 +142430,7 @@ func (t *btoCreateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -142501,7 +142513,7 @@ func (t *ccCreateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -142584,7 +142596,7 @@ func (t *bccCreateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -142638,7 +142650,7 @@ func (t *mediaTypeCreateIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -142692,7 +142704,7 @@ func (t *durationCreateIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -142760,7 +142772,7 @@ func (t *sourceCreateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -142828,7 +142840,7 @@ func (t *inboxCreateIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -142896,7 +142908,7 @@ func (t *outboxCreateIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -142979,7 +142991,7 @@ func (t *followingCreateIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -143062,7 +143074,7 @@ func (t *followersCreateIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -143145,7 +143157,7 @@ func (t *likedCreateIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -143228,7 +143240,7 @@ func (t *likesCreateIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -143282,7 +143294,7 @@ func (t *preferredUsernameCreateIntermediateType) Serialize() (i interface{}, er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -143350,7 +143362,7 @@ func (t *endpointsCreateIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -143452,7 +143464,7 @@ type Delete struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesDeleteIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameDeleteIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -143550,20 +143562,20 @@ func (t *Delete) IsActorIRI(index int) (ok bool) { } // GetActorIRI returns the value safely if IsActorIRI returned true for the specified index -func (t *Delete) GetActorIRI(index int) (v url.URL) { - return *t.actor[index].IRI +func (t *Delete) GetActorIRI(index int) (v *url.URL) { + return t.actor[index].IRI } -// AppendActorIRI adds to the back of actor a url.URL type -func (t *Delete) AppendActorIRI(v url.URL) { - t.actor = append(t.actor, &actorDeleteIntermediateType{IRI: &v}) +// AppendActorIRI adds to the back of actor a *url.URL type +func (t *Delete) AppendActorIRI(v *url.URL) { + t.actor = append(t.actor, &actorDeleteIntermediateType{IRI: v}) } -// PrependActorIRI adds to the front of actor a url.URL type -func (t *Delete) PrependActorIRI(v url.URL) { - t.actor = append([]*actorDeleteIntermediateType{&actorDeleteIntermediateType{IRI: &v}}, t.actor...) +// PrependActorIRI adds to the front of actor a *url.URL type +func (t *Delete) PrependActorIRI(v *url.URL) { + t.actor = append([]*actorDeleteIntermediateType{&actorDeleteIntermediateType{IRI: v}}, t.actor...) } @@ -143643,20 +143655,20 @@ func (t *Delete) IsObjectIRI(index int) (ok bool) { } // GetObjectIRI returns the value safely if IsObjectIRI returned true for the specified index -func (t *Delete) GetObjectIRI(index int) (v url.URL) { - return *t.object[index].IRI +func (t *Delete) GetObjectIRI(index int) (v *url.URL) { + return t.object[index].IRI } -// AppendObjectIRI adds to the back of object a url.URL type -func (t *Delete) AppendObjectIRI(v url.URL) { - t.object = append(t.object, &objectDeleteIntermediateType{IRI: &v}) +// AppendObjectIRI adds to the back of object a *url.URL type +func (t *Delete) AppendObjectIRI(v *url.URL) { + t.object = append(t.object, &objectDeleteIntermediateType{IRI: v}) } -// PrependObjectIRI adds to the front of object a url.URL type -func (t *Delete) PrependObjectIRI(v url.URL) { - t.object = append([]*objectDeleteIntermediateType{&objectDeleteIntermediateType{IRI: &v}}, t.object...) +// PrependObjectIRI adds to the front of object a *url.URL type +func (t *Delete) PrependObjectIRI(v *url.URL) { + t.object = append([]*objectDeleteIntermediateType{&objectDeleteIntermediateType{IRI: v}}, t.object...) } @@ -143768,20 +143780,20 @@ func (t *Delete) IsTargetIRI(index int) (ok bool) { } // GetTargetIRI returns the value safely if IsTargetIRI returned true for the specified index -func (t *Delete) GetTargetIRI(index int) (v url.URL) { - return *t.target[index].IRI +func (t *Delete) GetTargetIRI(index int) (v *url.URL) { + return t.target[index].IRI } -// AppendTargetIRI adds to the back of target a url.URL type -func (t *Delete) AppendTargetIRI(v url.URL) { - t.target = append(t.target, &targetDeleteIntermediateType{IRI: &v}) +// AppendTargetIRI adds to the back of target a *url.URL type +func (t *Delete) AppendTargetIRI(v *url.URL) { + t.target = append(t.target, &targetDeleteIntermediateType{IRI: v}) } -// PrependTargetIRI adds to the front of target a url.URL type -func (t *Delete) PrependTargetIRI(v url.URL) { - t.target = append([]*targetDeleteIntermediateType{&targetDeleteIntermediateType{IRI: &v}}, t.target...) +// PrependTargetIRI adds to the front of target a *url.URL type +func (t *Delete) PrependTargetIRI(v *url.URL) { + t.target = append([]*targetDeleteIntermediateType{&targetDeleteIntermediateType{IRI: v}}, t.target...) } @@ -143893,20 +143905,20 @@ func (t *Delete) IsResultIRI(index int) (ok bool) { } // GetResultIRI returns the value safely if IsResultIRI returned true for the specified index -func (t *Delete) GetResultIRI(index int) (v url.URL) { - return *t.result[index].IRI +func (t *Delete) GetResultIRI(index int) (v *url.URL) { + return t.result[index].IRI } -// AppendResultIRI adds to the back of result a url.URL type -func (t *Delete) AppendResultIRI(v url.URL) { - t.result = append(t.result, &resultDeleteIntermediateType{IRI: &v}) +// AppendResultIRI adds to the back of result a *url.URL type +func (t *Delete) AppendResultIRI(v *url.URL) { + t.result = append(t.result, &resultDeleteIntermediateType{IRI: v}) } -// PrependResultIRI adds to the front of result a url.URL type -func (t *Delete) PrependResultIRI(v url.URL) { - t.result = append([]*resultDeleteIntermediateType{&resultDeleteIntermediateType{IRI: &v}}, t.result...) +// PrependResultIRI adds to the front of result a *url.URL type +func (t *Delete) PrependResultIRI(v *url.URL) { + t.result = append([]*resultDeleteIntermediateType{&resultDeleteIntermediateType{IRI: v}}, t.result...) } @@ -144018,20 +144030,20 @@ func (t *Delete) IsOriginIRI(index int) (ok bool) { } // GetOriginIRI returns the value safely if IsOriginIRI returned true for the specified index -func (t *Delete) GetOriginIRI(index int) (v url.URL) { - return *t.origin[index].IRI +func (t *Delete) GetOriginIRI(index int) (v *url.URL) { + return t.origin[index].IRI } -// AppendOriginIRI adds to the back of origin a url.URL type -func (t *Delete) AppendOriginIRI(v url.URL) { - t.origin = append(t.origin, &originDeleteIntermediateType{IRI: &v}) +// AppendOriginIRI adds to the back of origin a *url.URL type +func (t *Delete) AppendOriginIRI(v *url.URL) { + t.origin = append(t.origin, &originDeleteIntermediateType{IRI: v}) } -// PrependOriginIRI adds to the front of origin a url.URL type -func (t *Delete) PrependOriginIRI(v url.URL) { - t.origin = append([]*originDeleteIntermediateType{&originDeleteIntermediateType{IRI: &v}}, t.origin...) +// PrependOriginIRI adds to the front of origin a *url.URL type +func (t *Delete) PrependOriginIRI(v *url.URL) { + t.origin = append([]*originDeleteIntermediateType{&originDeleteIntermediateType{IRI: v}}, t.origin...) } @@ -144143,20 +144155,20 @@ func (t *Delete) IsInstrumentIRI(index int) (ok bool) { } // GetInstrumentIRI returns the value safely if IsInstrumentIRI returned true for the specified index -func (t *Delete) GetInstrumentIRI(index int) (v url.URL) { - return *t.instrument[index].IRI +func (t *Delete) GetInstrumentIRI(index int) (v *url.URL) { + return t.instrument[index].IRI } -// AppendInstrumentIRI adds to the back of instrument a url.URL type -func (t *Delete) AppendInstrumentIRI(v url.URL) { - t.instrument = append(t.instrument, &instrumentDeleteIntermediateType{IRI: &v}) +// AppendInstrumentIRI adds to the back of instrument a *url.URL type +func (t *Delete) AppendInstrumentIRI(v *url.URL) { + t.instrument = append(t.instrument, &instrumentDeleteIntermediateType{IRI: v}) } -// PrependInstrumentIRI adds to the front of instrument a url.URL type -func (t *Delete) PrependInstrumentIRI(v url.URL) { - t.instrument = append([]*instrumentDeleteIntermediateType{&instrumentDeleteIntermediateType{IRI: &v}}, t.instrument...) +// PrependInstrumentIRI adds to the front of instrument a *url.URL type +func (t *Delete) PrependInstrumentIRI(v *url.URL) { + t.instrument = append([]*instrumentDeleteIntermediateType{&instrumentDeleteIntermediateType{IRI: v}}, t.instrument...) } @@ -144216,14 +144228,14 @@ func (t *Delete) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Delete) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Delete) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Delete) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeDeleteIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Delete) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeDeleteIntermediateType{IRI: v} } @@ -144327,20 +144339,20 @@ func (t *Delete) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Delete) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Delete) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Delete) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentDeleteIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Delete) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentDeleteIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Delete) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentDeleteIntermediateType{&attachmentDeleteIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Delete) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentDeleteIntermediateType{&attachmentDeleteIntermediateType{IRI: v}}, t.attachment...) } @@ -144452,20 +144464,20 @@ func (t *Delete) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Delete) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Delete) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Delete) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToDeleteIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Delete) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToDeleteIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Delete) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToDeleteIntermediateType{&attributedToDeleteIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Delete) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToDeleteIntermediateType{&attributedToDeleteIntermediateType{IRI: v}}, t.attributedTo...) } @@ -144577,20 +144589,20 @@ func (t *Delete) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Delete) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Delete) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Delete) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceDeleteIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Delete) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceDeleteIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Delete) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceDeleteIntermediateType{&audienceDeleteIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Delete) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceDeleteIntermediateType{&audienceDeleteIntermediateType{IRI: v}}, t.audience...) } @@ -144702,20 +144714,20 @@ func (t *Delete) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Delete) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Delete) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Delete) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentDeleteIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Delete) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentDeleteIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Delete) PrependContentIRI(v url.URL) { - t.content = append([]*contentDeleteIntermediateType{&contentDeleteIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Delete) PrependContentIRI(v *url.URL) { + t.content = append([]*contentDeleteIntermediateType{&contentDeleteIntermediateType{IRI: v}}, t.content...) } @@ -144862,20 +144874,20 @@ func (t *Delete) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Delete) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Delete) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Delete) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextDeleteIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Delete) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextDeleteIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Delete) PrependContextIRI(v url.URL) { - t.context = append([]*contextDeleteIntermediateType{&contextDeleteIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Delete) PrependContextIRI(v *url.URL) { + t.context = append([]*contextDeleteIntermediateType{&contextDeleteIntermediateType{IRI: v}}, t.context...) } @@ -144987,20 +144999,20 @@ func (t *Delete) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Delete) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Delete) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Delete) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameDeleteIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Delete) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameDeleteIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Delete) PrependNameIRI(v url.URL) { - t.name = append([]*nameDeleteIntermediateType{&nameDeleteIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Delete) PrependNameIRI(v *url.URL) { + t.name = append([]*nameDeleteIntermediateType{&nameDeleteIntermediateType{IRI: v}}, t.name...) } @@ -145095,14 +145107,14 @@ func (t *Delete) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Delete) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Delete) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Delete) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeDeleteIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Delete) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeDeleteIntermediateType{IRI: v} } @@ -145206,20 +145218,20 @@ func (t *Delete) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Delete) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Delete) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Delete) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorDeleteIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Delete) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorDeleteIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Delete) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorDeleteIntermediateType{&generatorDeleteIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Delete) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorDeleteIntermediateType{&generatorDeleteIntermediateType{IRI: v}}, t.generator...) } @@ -145331,20 +145343,20 @@ func (t *Delete) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Delete) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Delete) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Delete) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconDeleteIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Delete) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconDeleteIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Delete) PrependIconIRI(v url.URL) { - t.icon = append([]*iconDeleteIntermediateType{&iconDeleteIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Delete) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconDeleteIntermediateType{&iconDeleteIntermediateType{IRI: v}}, t.icon...) } @@ -145386,14 +145398,14 @@ func (t *Delete) HasId() (ok bool) { } // GetId returns the value for id -func (t *Delete) GetId() (v url.URL) { - return *t.id +func (t *Delete) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Delete) SetId(v url.URL) { - t.id = &v +func (t *Delete) SetId(v *url.URL) { + t.id = v } @@ -145495,20 +145507,20 @@ func (t *Delete) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Delete) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Delete) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Delete) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageDeleteIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Delete) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageDeleteIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Delete) PrependImageIRI(v url.URL) { - t.image = append([]*imageDeleteIntermediateType{&imageDeleteIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Delete) PrependImageIRI(v *url.URL) { + t.image = append([]*imageDeleteIntermediateType{&imageDeleteIntermediateType{IRI: v}}, t.image...) } @@ -145620,20 +145632,20 @@ func (t *Delete) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Delete) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Delete) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Delete) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToDeleteIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Delete) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToDeleteIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Delete) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToDeleteIntermediateType{&inReplyToDeleteIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Delete) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToDeleteIntermediateType{&inReplyToDeleteIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -145745,20 +145757,20 @@ func (t *Delete) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Delete) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Delete) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Delete) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationDeleteIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Delete) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationDeleteIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Delete) PrependLocationIRI(v url.URL) { - t.location = append([]*locationDeleteIntermediateType{&locationDeleteIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Delete) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationDeleteIntermediateType{&locationDeleteIntermediateType{IRI: v}}, t.location...) } @@ -145870,20 +145882,20 @@ func (t *Delete) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Delete) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Delete) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Delete) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewDeleteIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Delete) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewDeleteIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Delete) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewDeleteIntermediateType{&previewDeleteIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Delete) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewDeleteIntermediateType{&previewDeleteIntermediateType{IRI: v}}, t.preview...) } @@ -145943,14 +145955,14 @@ func (t *Delete) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Delete) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Delete) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Delete) SetPublishedIRI(v url.URL) { - t.published = &publishedDeleteIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Delete) SetPublishedIRI(v *url.URL) { + t.published = &publishedDeleteIntermediateType{IRI: v} } @@ -146002,14 +146014,14 @@ func (t *Delete) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Delete) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Delete) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Delete) SetRepliesIRI(v url.URL) { - t.replies = &repliesDeleteIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Delete) SetRepliesIRI(v *url.URL) { + t.replies = &repliesDeleteIntermediateType{IRI: v} } @@ -146061,14 +146073,14 @@ func (t *Delete) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Delete) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Delete) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Delete) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeDeleteIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Delete) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeDeleteIntermediateType{IRI: v} } @@ -146172,20 +146184,20 @@ func (t *Delete) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Delete) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Delete) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Delete) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryDeleteIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Delete) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryDeleteIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Delete) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryDeleteIntermediateType{&summaryDeleteIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Delete) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryDeleteIntermediateType{&summaryDeleteIntermediateType{IRI: v}}, t.summary...) } @@ -146332,20 +146344,20 @@ func (t *Delete) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Delete) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Delete) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Delete) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagDeleteIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Delete) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagDeleteIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Delete) PrependTagIRI(v url.URL) { - t.tag = append([]*tagDeleteIntermediateType{&tagDeleteIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Delete) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagDeleteIntermediateType{&tagDeleteIntermediateType{IRI: v}}, t.tag...) } @@ -146437,14 +146449,14 @@ func (t *Delete) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Delete) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Delete) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Delete) SetUpdatedIRI(v url.URL) { - t.updated = &updatedDeleteIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Delete) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedDeleteIntermediateType{IRI: v} } @@ -146484,20 +146496,20 @@ func (t *Delete) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Delete) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Delete) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Delete) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlDeleteIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Delete) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlDeleteIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Delete) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlDeleteIntermediateType{&urlDeleteIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Delete) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlDeleteIntermediateType{&urlDeleteIntermediateType{anyURI: v}}, t.url...) } @@ -146641,20 +146653,20 @@ func (t *Delete) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Delete) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Delete) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Delete) AppendToIRI(v url.URL) { - t.to = append(t.to, &toDeleteIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Delete) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toDeleteIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Delete) PrependToIRI(v url.URL) { - t.to = append([]*toDeleteIntermediateType{&toDeleteIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Delete) PrependToIRI(v *url.URL) { + t.to = append([]*toDeleteIntermediateType{&toDeleteIntermediateType{IRI: v}}, t.to...) } @@ -146766,20 +146778,20 @@ func (t *Delete) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Delete) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Delete) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Delete) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoDeleteIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Delete) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoDeleteIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Delete) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoDeleteIntermediateType{&btoDeleteIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Delete) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoDeleteIntermediateType{&btoDeleteIntermediateType{IRI: v}}, t.bto...) } @@ -146891,20 +146903,20 @@ func (t *Delete) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Delete) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Delete) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Delete) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccDeleteIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Delete) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccDeleteIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Delete) PrependCcIRI(v url.URL) { - t.cc = append([]*ccDeleteIntermediateType{&ccDeleteIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Delete) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccDeleteIntermediateType{&ccDeleteIntermediateType{IRI: v}}, t.cc...) } @@ -147016,20 +147028,20 @@ func (t *Delete) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Delete) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Delete) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Delete) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccDeleteIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Delete) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccDeleteIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Delete) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccDeleteIntermediateType{&bccDeleteIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Delete) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccDeleteIntermediateType{&bccDeleteIntermediateType{IRI: v}}, t.bcc...) } @@ -147089,14 +147101,14 @@ func (t *Delete) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Delete) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Delete) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Delete) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeDeleteIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Delete) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeDeleteIntermediateType{IRI: v} } @@ -147148,14 +147160,14 @@ func (t *Delete) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Delete) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Delete) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Delete) SetDurationIRI(v url.URL) { - t.duration = &durationDeleteIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Delete) SetDurationIRI(v *url.URL) { + t.duration = &durationDeleteIntermediateType{IRI: v} } @@ -147207,14 +147219,14 @@ func (t *Delete) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Delete) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Delete) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Delete) SetSourceIRI(v url.URL) { - t.source = &sourceDeleteIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Delete) SetSourceIRI(v *url.URL) { + t.source = &sourceDeleteIntermediateType{IRI: v} } @@ -147266,14 +147278,14 @@ func (t *Delete) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Delete) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Delete) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Delete) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxDeleteIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Delete) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxDeleteIntermediateType{anyURI: v} } @@ -147325,14 +147337,14 @@ func (t *Delete) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Delete) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Delete) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Delete) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxDeleteIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Delete) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxDeleteIntermediateType{anyURI: v} } @@ -147402,14 +147414,14 @@ func (t *Delete) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Delete) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Delete) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Delete) SetFollowingAnyURI(v url.URL) { - t.following = &followingDeleteIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Delete) SetFollowingAnyURI(v *url.URL) { + t.following = &followingDeleteIntermediateType{anyURI: v} } @@ -147479,14 +147491,14 @@ func (t *Delete) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Delete) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Delete) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Delete) SetFollowersAnyURI(v url.URL) { - t.followers = &followersDeleteIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Delete) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersDeleteIntermediateType{anyURI: v} } @@ -147556,14 +147568,14 @@ func (t *Delete) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Delete) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Delete) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Delete) SetLikedAnyURI(v url.URL) { - t.liked = &likedDeleteIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Delete) SetLikedAnyURI(v *url.URL) { + t.liked = &likedDeleteIntermediateType{anyURI: v} } @@ -147633,14 +147645,14 @@ func (t *Delete) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Delete) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Delete) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Delete) SetLikesAnyURI(v url.URL) { - t.likes = &likesDeleteIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Delete) SetLikesAnyURI(v *url.URL) { + t.likes = &likesDeleteIntermediateType{anyURI: v} } @@ -147674,26 +147686,27 @@ func (t *Delete) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Delete) GetStreams(index int) (v url.URL) { +func (t *Delete) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Delete) AppendStreams(v url.URL) { +func (t *Delete) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Delete) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Delete) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Delete) 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] } @@ -147744,14 +147757,14 @@ func (t *Delete) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Delete) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Delete) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Delete) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameDeleteIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Delete) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameDeleteIntermediateType{IRI: v} } @@ -147838,14 +147851,14 @@ func (t *Delete) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Delete) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Delete) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Delete) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsDeleteIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Delete) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsDeleteIntermediateType{IRI: v} } @@ -147879,14 +147892,14 @@ func (t *Delete) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Delete) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Delete) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Delete) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Delete) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -147918,14 +147931,14 @@ func (t *Delete) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Delete) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Delete) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Delete) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Delete) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -147957,14 +147970,14 @@ func (t *Delete) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Delete) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Delete) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Delete) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Delete) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -147996,14 +148009,14 @@ func (t *Delete) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Delete) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Delete) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Delete) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Delete) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -148035,14 +148048,14 @@ func (t *Delete) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Delete) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Delete) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Delete) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Delete) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -148074,14 +148087,14 @@ func (t *Delete) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Delete) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Delete) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Delete) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Delete) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -148339,7 +148352,7 @@ func (t *Delete) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -148645,7 +148658,7 @@ func (t *Delete) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -148660,7 +148673,7 @@ func (t *Delete) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -148675,7 +148688,7 @@ func (t *Delete) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -148690,7 +148703,7 @@ func (t *Delete) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -148705,7 +148718,7 @@ func (t *Delete) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -148720,7 +148733,7 @@ func (t *Delete) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -149686,7 +149699,7 @@ func (t *Delete) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -149695,7 +149708,7 @@ func (t *Delete) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -149909,7 +149922,7 @@ func (t *actorDeleteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -149977,7 +149990,7 @@ func (t *objectDeleteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -150060,7 +150073,7 @@ func (t *targetDeleteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -150143,7 +150156,7 @@ func (t *resultDeleteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -150226,7 +150239,7 @@ func (t *originDeleteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -150309,7 +150322,7 @@ func (t *instrumentDeleteIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -150363,7 +150376,7 @@ func (t *altitudeDeleteIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -150446,7 +150459,7 @@ func (t *attachmentDeleteIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -150529,7 +150542,7 @@ func (t *attributedToDeleteIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -150612,7 +150625,7 @@ func (t *audienceDeleteIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -150680,7 +150693,7 @@ func (t *contentDeleteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -150763,7 +150776,7 @@ func (t *contextDeleteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -150831,7 +150844,7 @@ func (t *nameDeleteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -150885,7 +150898,7 @@ func (t *endTimeDeleteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -150968,7 +150981,7 @@ func (t *generatorDeleteIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -151051,7 +151064,7 @@ func (t *iconDeleteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -151134,7 +151147,7 @@ func (t *imageDeleteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -151217,7 +151230,7 @@ func (t *inReplyToDeleteIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -151300,7 +151313,7 @@ func (t *locationDeleteIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -151383,7 +151396,7 @@ func (t *previewDeleteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -151437,7 +151450,7 @@ func (t *publishedDeleteIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -151505,7 +151518,7 @@ func (t *repliesDeleteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -151559,7 +151572,7 @@ func (t *startTimeDeleteIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -151627,7 +151640,7 @@ func (t *summaryDeleteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -151710,7 +151723,7 @@ func (t *tagDeleteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -151764,7 +151777,7 @@ func (t *updatedDeleteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -151828,7 +151841,7 @@ func (t *urlDeleteIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlDeleteIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -151915,7 +151928,7 @@ func (t *toDeleteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -151998,7 +152011,7 @@ func (t *btoDeleteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -152081,7 +152094,7 @@ func (t *ccDeleteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -152164,7 +152177,7 @@ func (t *bccDeleteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -152218,7 +152231,7 @@ func (t *mediaTypeDeleteIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -152272,7 +152285,7 @@ func (t *durationDeleteIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -152340,7 +152353,7 @@ func (t *sourceDeleteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -152408,7 +152421,7 @@ func (t *inboxDeleteIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -152476,7 +152489,7 @@ func (t *outboxDeleteIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -152559,7 +152572,7 @@ func (t *followingDeleteIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -152642,7 +152655,7 @@ func (t *followersDeleteIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -152725,7 +152738,7 @@ func (t *likedDeleteIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -152808,7 +152821,7 @@ func (t *likesDeleteIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -152862,7 +152875,7 @@ func (t *preferredUsernameDeleteIntermediateType) Serialize() (i interface{}, er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -152930,7 +152943,7 @@ func (t *endpointsDeleteIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -153032,7 +153045,7 @@ type Follow struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesFollowIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameFollowIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -153130,20 +153143,20 @@ func (t *Follow) IsActorIRI(index int) (ok bool) { } // GetActorIRI returns the value safely if IsActorIRI returned true for the specified index -func (t *Follow) GetActorIRI(index int) (v url.URL) { - return *t.actor[index].IRI +func (t *Follow) GetActorIRI(index int) (v *url.URL) { + return t.actor[index].IRI } -// AppendActorIRI adds to the back of actor a url.URL type -func (t *Follow) AppendActorIRI(v url.URL) { - t.actor = append(t.actor, &actorFollowIntermediateType{IRI: &v}) +// AppendActorIRI adds to the back of actor a *url.URL type +func (t *Follow) AppendActorIRI(v *url.URL) { + t.actor = append(t.actor, &actorFollowIntermediateType{IRI: v}) } -// PrependActorIRI adds to the front of actor a url.URL type -func (t *Follow) PrependActorIRI(v url.URL) { - t.actor = append([]*actorFollowIntermediateType{&actorFollowIntermediateType{IRI: &v}}, t.actor...) +// PrependActorIRI adds to the front of actor a *url.URL type +func (t *Follow) PrependActorIRI(v *url.URL) { + t.actor = append([]*actorFollowIntermediateType{&actorFollowIntermediateType{IRI: v}}, t.actor...) } @@ -153223,20 +153236,20 @@ func (t *Follow) IsObjectIRI(index int) (ok bool) { } // GetObjectIRI returns the value safely if IsObjectIRI returned true for the specified index -func (t *Follow) GetObjectIRI(index int) (v url.URL) { - return *t.object[index].IRI +func (t *Follow) GetObjectIRI(index int) (v *url.URL) { + return t.object[index].IRI } -// AppendObjectIRI adds to the back of object a url.URL type -func (t *Follow) AppendObjectIRI(v url.URL) { - t.object = append(t.object, &objectFollowIntermediateType{IRI: &v}) +// AppendObjectIRI adds to the back of object a *url.URL type +func (t *Follow) AppendObjectIRI(v *url.URL) { + t.object = append(t.object, &objectFollowIntermediateType{IRI: v}) } -// PrependObjectIRI adds to the front of object a url.URL type -func (t *Follow) PrependObjectIRI(v url.URL) { - t.object = append([]*objectFollowIntermediateType{&objectFollowIntermediateType{IRI: &v}}, t.object...) +// PrependObjectIRI adds to the front of object a *url.URL type +func (t *Follow) PrependObjectIRI(v *url.URL) { + t.object = append([]*objectFollowIntermediateType{&objectFollowIntermediateType{IRI: v}}, t.object...) } @@ -153348,20 +153361,20 @@ func (t *Follow) IsTargetIRI(index int) (ok bool) { } // GetTargetIRI returns the value safely if IsTargetIRI returned true for the specified index -func (t *Follow) GetTargetIRI(index int) (v url.URL) { - return *t.target[index].IRI +func (t *Follow) GetTargetIRI(index int) (v *url.URL) { + return t.target[index].IRI } -// AppendTargetIRI adds to the back of target a url.URL type -func (t *Follow) AppendTargetIRI(v url.URL) { - t.target = append(t.target, &targetFollowIntermediateType{IRI: &v}) +// AppendTargetIRI adds to the back of target a *url.URL type +func (t *Follow) AppendTargetIRI(v *url.URL) { + t.target = append(t.target, &targetFollowIntermediateType{IRI: v}) } -// PrependTargetIRI adds to the front of target a url.URL type -func (t *Follow) PrependTargetIRI(v url.URL) { - t.target = append([]*targetFollowIntermediateType{&targetFollowIntermediateType{IRI: &v}}, t.target...) +// PrependTargetIRI adds to the front of target a *url.URL type +func (t *Follow) PrependTargetIRI(v *url.URL) { + t.target = append([]*targetFollowIntermediateType{&targetFollowIntermediateType{IRI: v}}, t.target...) } @@ -153473,20 +153486,20 @@ func (t *Follow) IsResultIRI(index int) (ok bool) { } // GetResultIRI returns the value safely if IsResultIRI returned true for the specified index -func (t *Follow) GetResultIRI(index int) (v url.URL) { - return *t.result[index].IRI +func (t *Follow) GetResultIRI(index int) (v *url.URL) { + return t.result[index].IRI } -// AppendResultIRI adds to the back of result a url.URL type -func (t *Follow) AppendResultIRI(v url.URL) { - t.result = append(t.result, &resultFollowIntermediateType{IRI: &v}) +// AppendResultIRI adds to the back of result a *url.URL type +func (t *Follow) AppendResultIRI(v *url.URL) { + t.result = append(t.result, &resultFollowIntermediateType{IRI: v}) } -// PrependResultIRI adds to the front of result a url.URL type -func (t *Follow) PrependResultIRI(v url.URL) { - t.result = append([]*resultFollowIntermediateType{&resultFollowIntermediateType{IRI: &v}}, t.result...) +// PrependResultIRI adds to the front of result a *url.URL type +func (t *Follow) PrependResultIRI(v *url.URL) { + t.result = append([]*resultFollowIntermediateType{&resultFollowIntermediateType{IRI: v}}, t.result...) } @@ -153598,20 +153611,20 @@ func (t *Follow) IsOriginIRI(index int) (ok bool) { } // GetOriginIRI returns the value safely if IsOriginIRI returned true for the specified index -func (t *Follow) GetOriginIRI(index int) (v url.URL) { - return *t.origin[index].IRI +func (t *Follow) GetOriginIRI(index int) (v *url.URL) { + return t.origin[index].IRI } -// AppendOriginIRI adds to the back of origin a url.URL type -func (t *Follow) AppendOriginIRI(v url.URL) { - t.origin = append(t.origin, &originFollowIntermediateType{IRI: &v}) +// AppendOriginIRI adds to the back of origin a *url.URL type +func (t *Follow) AppendOriginIRI(v *url.URL) { + t.origin = append(t.origin, &originFollowIntermediateType{IRI: v}) } -// PrependOriginIRI adds to the front of origin a url.URL type -func (t *Follow) PrependOriginIRI(v url.URL) { - t.origin = append([]*originFollowIntermediateType{&originFollowIntermediateType{IRI: &v}}, t.origin...) +// PrependOriginIRI adds to the front of origin a *url.URL type +func (t *Follow) PrependOriginIRI(v *url.URL) { + t.origin = append([]*originFollowIntermediateType{&originFollowIntermediateType{IRI: v}}, t.origin...) } @@ -153723,20 +153736,20 @@ func (t *Follow) IsInstrumentIRI(index int) (ok bool) { } // GetInstrumentIRI returns the value safely if IsInstrumentIRI returned true for the specified index -func (t *Follow) GetInstrumentIRI(index int) (v url.URL) { - return *t.instrument[index].IRI +func (t *Follow) GetInstrumentIRI(index int) (v *url.URL) { + return t.instrument[index].IRI } -// AppendInstrumentIRI adds to the back of instrument a url.URL type -func (t *Follow) AppendInstrumentIRI(v url.URL) { - t.instrument = append(t.instrument, &instrumentFollowIntermediateType{IRI: &v}) +// AppendInstrumentIRI adds to the back of instrument a *url.URL type +func (t *Follow) AppendInstrumentIRI(v *url.URL) { + t.instrument = append(t.instrument, &instrumentFollowIntermediateType{IRI: v}) } -// PrependInstrumentIRI adds to the front of instrument a url.URL type -func (t *Follow) PrependInstrumentIRI(v url.URL) { - t.instrument = append([]*instrumentFollowIntermediateType{&instrumentFollowIntermediateType{IRI: &v}}, t.instrument...) +// PrependInstrumentIRI adds to the front of instrument a *url.URL type +func (t *Follow) PrependInstrumentIRI(v *url.URL) { + t.instrument = append([]*instrumentFollowIntermediateType{&instrumentFollowIntermediateType{IRI: v}}, t.instrument...) } @@ -153796,14 +153809,14 @@ func (t *Follow) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Follow) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Follow) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Follow) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeFollowIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Follow) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeFollowIntermediateType{IRI: v} } @@ -153907,20 +153920,20 @@ func (t *Follow) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Follow) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Follow) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Follow) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentFollowIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Follow) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentFollowIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Follow) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentFollowIntermediateType{&attachmentFollowIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Follow) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentFollowIntermediateType{&attachmentFollowIntermediateType{IRI: v}}, t.attachment...) } @@ -154032,20 +154045,20 @@ func (t *Follow) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Follow) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Follow) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Follow) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToFollowIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Follow) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToFollowIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Follow) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToFollowIntermediateType{&attributedToFollowIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Follow) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToFollowIntermediateType{&attributedToFollowIntermediateType{IRI: v}}, t.attributedTo...) } @@ -154157,20 +154170,20 @@ func (t *Follow) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Follow) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Follow) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Follow) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceFollowIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Follow) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceFollowIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Follow) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceFollowIntermediateType{&audienceFollowIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Follow) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceFollowIntermediateType{&audienceFollowIntermediateType{IRI: v}}, t.audience...) } @@ -154282,20 +154295,20 @@ func (t *Follow) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Follow) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Follow) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Follow) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentFollowIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Follow) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentFollowIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Follow) PrependContentIRI(v url.URL) { - t.content = append([]*contentFollowIntermediateType{&contentFollowIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Follow) PrependContentIRI(v *url.URL) { + t.content = append([]*contentFollowIntermediateType{&contentFollowIntermediateType{IRI: v}}, t.content...) } @@ -154442,20 +154455,20 @@ func (t *Follow) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Follow) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Follow) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Follow) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextFollowIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Follow) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextFollowIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Follow) PrependContextIRI(v url.URL) { - t.context = append([]*contextFollowIntermediateType{&contextFollowIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Follow) PrependContextIRI(v *url.URL) { + t.context = append([]*contextFollowIntermediateType{&contextFollowIntermediateType{IRI: v}}, t.context...) } @@ -154567,20 +154580,20 @@ func (t *Follow) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Follow) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Follow) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Follow) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameFollowIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Follow) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameFollowIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Follow) PrependNameIRI(v url.URL) { - t.name = append([]*nameFollowIntermediateType{&nameFollowIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Follow) PrependNameIRI(v *url.URL) { + t.name = append([]*nameFollowIntermediateType{&nameFollowIntermediateType{IRI: v}}, t.name...) } @@ -154675,14 +154688,14 @@ func (t *Follow) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Follow) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Follow) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Follow) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeFollowIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Follow) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeFollowIntermediateType{IRI: v} } @@ -154786,20 +154799,20 @@ func (t *Follow) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Follow) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Follow) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Follow) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorFollowIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Follow) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorFollowIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Follow) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorFollowIntermediateType{&generatorFollowIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Follow) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorFollowIntermediateType{&generatorFollowIntermediateType{IRI: v}}, t.generator...) } @@ -154911,20 +154924,20 @@ func (t *Follow) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Follow) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Follow) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Follow) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconFollowIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Follow) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconFollowIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Follow) PrependIconIRI(v url.URL) { - t.icon = append([]*iconFollowIntermediateType{&iconFollowIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Follow) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconFollowIntermediateType{&iconFollowIntermediateType{IRI: v}}, t.icon...) } @@ -154966,14 +154979,14 @@ func (t *Follow) HasId() (ok bool) { } // GetId returns the value for id -func (t *Follow) GetId() (v url.URL) { - return *t.id +func (t *Follow) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Follow) SetId(v url.URL) { - t.id = &v +func (t *Follow) SetId(v *url.URL) { + t.id = v } @@ -155075,20 +155088,20 @@ func (t *Follow) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Follow) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Follow) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Follow) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageFollowIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Follow) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageFollowIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Follow) PrependImageIRI(v url.URL) { - t.image = append([]*imageFollowIntermediateType{&imageFollowIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Follow) PrependImageIRI(v *url.URL) { + t.image = append([]*imageFollowIntermediateType{&imageFollowIntermediateType{IRI: v}}, t.image...) } @@ -155200,20 +155213,20 @@ func (t *Follow) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Follow) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Follow) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Follow) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToFollowIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Follow) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToFollowIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Follow) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToFollowIntermediateType{&inReplyToFollowIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Follow) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToFollowIntermediateType{&inReplyToFollowIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -155325,20 +155338,20 @@ func (t *Follow) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Follow) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Follow) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Follow) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationFollowIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Follow) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationFollowIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Follow) PrependLocationIRI(v url.URL) { - t.location = append([]*locationFollowIntermediateType{&locationFollowIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Follow) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationFollowIntermediateType{&locationFollowIntermediateType{IRI: v}}, t.location...) } @@ -155450,20 +155463,20 @@ func (t *Follow) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Follow) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Follow) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Follow) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewFollowIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Follow) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewFollowIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Follow) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewFollowIntermediateType{&previewFollowIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Follow) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewFollowIntermediateType{&previewFollowIntermediateType{IRI: v}}, t.preview...) } @@ -155523,14 +155536,14 @@ func (t *Follow) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Follow) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Follow) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Follow) SetPublishedIRI(v url.URL) { - t.published = &publishedFollowIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Follow) SetPublishedIRI(v *url.URL) { + t.published = &publishedFollowIntermediateType{IRI: v} } @@ -155582,14 +155595,14 @@ func (t *Follow) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Follow) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Follow) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Follow) SetRepliesIRI(v url.URL) { - t.replies = &repliesFollowIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Follow) SetRepliesIRI(v *url.URL) { + t.replies = &repliesFollowIntermediateType{IRI: v} } @@ -155641,14 +155654,14 @@ func (t *Follow) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Follow) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Follow) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Follow) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeFollowIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Follow) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeFollowIntermediateType{IRI: v} } @@ -155752,20 +155765,20 @@ func (t *Follow) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Follow) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Follow) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Follow) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryFollowIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Follow) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryFollowIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Follow) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryFollowIntermediateType{&summaryFollowIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Follow) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryFollowIntermediateType{&summaryFollowIntermediateType{IRI: v}}, t.summary...) } @@ -155912,20 +155925,20 @@ func (t *Follow) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Follow) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Follow) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Follow) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagFollowIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Follow) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagFollowIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Follow) PrependTagIRI(v url.URL) { - t.tag = append([]*tagFollowIntermediateType{&tagFollowIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Follow) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagFollowIntermediateType{&tagFollowIntermediateType{IRI: v}}, t.tag...) } @@ -156017,14 +156030,14 @@ func (t *Follow) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Follow) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Follow) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Follow) SetUpdatedIRI(v url.URL) { - t.updated = &updatedFollowIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Follow) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedFollowIntermediateType{IRI: v} } @@ -156064,20 +156077,20 @@ func (t *Follow) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Follow) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Follow) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Follow) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlFollowIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Follow) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlFollowIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Follow) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlFollowIntermediateType{&urlFollowIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Follow) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlFollowIntermediateType{&urlFollowIntermediateType{anyURI: v}}, t.url...) } @@ -156221,20 +156234,20 @@ func (t *Follow) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Follow) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Follow) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Follow) AppendToIRI(v url.URL) { - t.to = append(t.to, &toFollowIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Follow) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toFollowIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Follow) PrependToIRI(v url.URL) { - t.to = append([]*toFollowIntermediateType{&toFollowIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Follow) PrependToIRI(v *url.URL) { + t.to = append([]*toFollowIntermediateType{&toFollowIntermediateType{IRI: v}}, t.to...) } @@ -156346,20 +156359,20 @@ func (t *Follow) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Follow) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Follow) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Follow) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoFollowIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Follow) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoFollowIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Follow) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoFollowIntermediateType{&btoFollowIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Follow) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoFollowIntermediateType{&btoFollowIntermediateType{IRI: v}}, t.bto...) } @@ -156471,20 +156484,20 @@ func (t *Follow) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Follow) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Follow) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Follow) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccFollowIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Follow) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccFollowIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Follow) PrependCcIRI(v url.URL) { - t.cc = append([]*ccFollowIntermediateType{&ccFollowIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Follow) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccFollowIntermediateType{&ccFollowIntermediateType{IRI: v}}, t.cc...) } @@ -156596,20 +156609,20 @@ func (t *Follow) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Follow) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Follow) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Follow) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccFollowIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Follow) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccFollowIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Follow) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccFollowIntermediateType{&bccFollowIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Follow) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccFollowIntermediateType{&bccFollowIntermediateType{IRI: v}}, t.bcc...) } @@ -156669,14 +156682,14 @@ func (t *Follow) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Follow) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Follow) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Follow) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeFollowIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Follow) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeFollowIntermediateType{IRI: v} } @@ -156728,14 +156741,14 @@ func (t *Follow) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Follow) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Follow) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Follow) SetDurationIRI(v url.URL) { - t.duration = &durationFollowIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Follow) SetDurationIRI(v *url.URL) { + t.duration = &durationFollowIntermediateType{IRI: v} } @@ -156787,14 +156800,14 @@ func (t *Follow) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Follow) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Follow) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Follow) SetSourceIRI(v url.URL) { - t.source = &sourceFollowIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Follow) SetSourceIRI(v *url.URL) { + t.source = &sourceFollowIntermediateType{IRI: v} } @@ -156846,14 +156859,14 @@ func (t *Follow) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Follow) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Follow) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Follow) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxFollowIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Follow) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxFollowIntermediateType{anyURI: v} } @@ -156905,14 +156918,14 @@ func (t *Follow) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Follow) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Follow) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Follow) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxFollowIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Follow) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxFollowIntermediateType{anyURI: v} } @@ -156982,14 +156995,14 @@ func (t *Follow) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Follow) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Follow) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Follow) SetFollowingAnyURI(v url.URL) { - t.following = &followingFollowIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Follow) SetFollowingAnyURI(v *url.URL) { + t.following = &followingFollowIntermediateType{anyURI: v} } @@ -157059,14 +157072,14 @@ func (t *Follow) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Follow) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Follow) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Follow) SetFollowersAnyURI(v url.URL) { - t.followers = &followersFollowIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Follow) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersFollowIntermediateType{anyURI: v} } @@ -157136,14 +157149,14 @@ func (t *Follow) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Follow) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Follow) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Follow) SetLikedAnyURI(v url.URL) { - t.liked = &likedFollowIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Follow) SetLikedAnyURI(v *url.URL) { + t.liked = &likedFollowIntermediateType{anyURI: v} } @@ -157213,14 +157226,14 @@ func (t *Follow) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Follow) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Follow) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Follow) SetLikesAnyURI(v url.URL) { - t.likes = &likesFollowIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Follow) SetLikesAnyURI(v *url.URL) { + t.likes = &likesFollowIntermediateType{anyURI: v} } @@ -157254,26 +157267,27 @@ func (t *Follow) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Follow) GetStreams(index int) (v url.URL) { +func (t *Follow) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Follow) AppendStreams(v url.URL) { +func (t *Follow) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Follow) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Follow) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Follow) 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] } @@ -157324,14 +157338,14 @@ func (t *Follow) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Follow) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Follow) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Follow) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameFollowIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Follow) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameFollowIntermediateType{IRI: v} } @@ -157418,14 +157432,14 @@ func (t *Follow) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Follow) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Follow) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Follow) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsFollowIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Follow) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsFollowIntermediateType{IRI: v} } @@ -157459,14 +157473,14 @@ func (t *Follow) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Follow) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Follow) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Follow) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Follow) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -157498,14 +157512,14 @@ func (t *Follow) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Follow) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Follow) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Follow) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Follow) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -157537,14 +157551,14 @@ func (t *Follow) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Follow) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Follow) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Follow) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Follow) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -157576,14 +157590,14 @@ func (t *Follow) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Follow) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Follow) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Follow) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Follow) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -157615,14 +157629,14 @@ func (t *Follow) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Follow) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Follow) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Follow) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Follow) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -157654,14 +157668,14 @@ func (t *Follow) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Follow) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Follow) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Follow) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Follow) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -157919,7 +157933,7 @@ func (t *Follow) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -158225,7 +158239,7 @@ func (t *Follow) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -158240,7 +158254,7 @@ func (t *Follow) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -158255,7 +158269,7 @@ func (t *Follow) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -158270,7 +158284,7 @@ func (t *Follow) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -158285,7 +158299,7 @@ func (t *Follow) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -158300,7 +158314,7 @@ func (t *Follow) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -159266,7 +159280,7 @@ func (t *Follow) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -159275,7 +159289,7 @@ func (t *Follow) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -159489,7 +159503,7 @@ func (t *actorFollowIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -159557,7 +159571,7 @@ func (t *objectFollowIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -159640,7 +159654,7 @@ func (t *targetFollowIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -159723,7 +159737,7 @@ func (t *resultFollowIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -159806,7 +159820,7 @@ func (t *originFollowIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -159889,7 +159903,7 @@ func (t *instrumentFollowIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -159943,7 +159957,7 @@ func (t *altitudeFollowIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -160026,7 +160040,7 @@ func (t *attachmentFollowIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -160109,7 +160123,7 @@ func (t *attributedToFollowIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -160192,7 +160206,7 @@ func (t *audienceFollowIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -160260,7 +160274,7 @@ func (t *contentFollowIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -160343,7 +160357,7 @@ func (t *contextFollowIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -160411,7 +160425,7 @@ func (t *nameFollowIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -160465,7 +160479,7 @@ func (t *endTimeFollowIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -160548,7 +160562,7 @@ func (t *generatorFollowIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -160631,7 +160645,7 @@ func (t *iconFollowIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -160714,7 +160728,7 @@ func (t *imageFollowIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -160797,7 +160811,7 @@ func (t *inReplyToFollowIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -160880,7 +160894,7 @@ func (t *locationFollowIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -160963,7 +160977,7 @@ func (t *previewFollowIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -161017,7 +161031,7 @@ func (t *publishedFollowIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -161085,7 +161099,7 @@ func (t *repliesFollowIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -161139,7 +161153,7 @@ func (t *startTimeFollowIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -161207,7 +161221,7 @@ func (t *summaryFollowIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -161290,7 +161304,7 @@ func (t *tagFollowIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -161344,7 +161358,7 @@ func (t *updatedFollowIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -161408,7 +161422,7 @@ func (t *urlFollowIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlFollowIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -161495,7 +161509,7 @@ func (t *toFollowIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -161578,7 +161592,7 @@ func (t *btoFollowIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -161661,7 +161675,7 @@ func (t *ccFollowIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -161744,7 +161758,7 @@ func (t *bccFollowIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -161798,7 +161812,7 @@ func (t *mediaTypeFollowIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -161852,7 +161866,7 @@ func (t *durationFollowIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -161920,7 +161934,7 @@ func (t *sourceFollowIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -161988,7 +162002,7 @@ func (t *inboxFollowIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -162056,7 +162070,7 @@ func (t *outboxFollowIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -162139,7 +162153,7 @@ func (t *followingFollowIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -162222,7 +162236,7 @@ func (t *followersFollowIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -162305,7 +162319,7 @@ func (t *likedFollowIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -162388,7 +162402,7 @@ func (t *likesFollowIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -162442,7 +162456,7 @@ func (t *preferredUsernameFollowIntermediateType) Serialize() (i interface{}, er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -162510,7 +162524,7 @@ func (t *endpointsFollowIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -162612,7 +162626,7 @@ type Ignore struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesIgnoreIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameIgnoreIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -162710,20 +162724,20 @@ func (t *Ignore) IsActorIRI(index int) (ok bool) { } // GetActorIRI returns the value safely if IsActorIRI returned true for the specified index -func (t *Ignore) GetActorIRI(index int) (v url.URL) { - return *t.actor[index].IRI +func (t *Ignore) GetActorIRI(index int) (v *url.URL) { + return t.actor[index].IRI } -// AppendActorIRI adds to the back of actor a url.URL type -func (t *Ignore) AppendActorIRI(v url.URL) { - t.actor = append(t.actor, &actorIgnoreIntermediateType{IRI: &v}) +// AppendActorIRI adds to the back of actor a *url.URL type +func (t *Ignore) AppendActorIRI(v *url.URL) { + t.actor = append(t.actor, &actorIgnoreIntermediateType{IRI: v}) } -// PrependActorIRI adds to the front of actor a url.URL type -func (t *Ignore) PrependActorIRI(v url.URL) { - t.actor = append([]*actorIgnoreIntermediateType{&actorIgnoreIntermediateType{IRI: &v}}, t.actor...) +// PrependActorIRI adds to the front of actor a *url.URL type +func (t *Ignore) PrependActorIRI(v *url.URL) { + t.actor = append([]*actorIgnoreIntermediateType{&actorIgnoreIntermediateType{IRI: v}}, t.actor...) } @@ -162803,20 +162817,20 @@ func (t *Ignore) IsObjectIRI(index int) (ok bool) { } // GetObjectIRI returns the value safely if IsObjectIRI returned true for the specified index -func (t *Ignore) GetObjectIRI(index int) (v url.URL) { - return *t.object[index].IRI +func (t *Ignore) GetObjectIRI(index int) (v *url.URL) { + return t.object[index].IRI } -// AppendObjectIRI adds to the back of object a url.URL type -func (t *Ignore) AppendObjectIRI(v url.URL) { - t.object = append(t.object, &objectIgnoreIntermediateType{IRI: &v}) +// AppendObjectIRI adds to the back of object a *url.URL type +func (t *Ignore) AppendObjectIRI(v *url.URL) { + t.object = append(t.object, &objectIgnoreIntermediateType{IRI: v}) } -// PrependObjectIRI adds to the front of object a url.URL type -func (t *Ignore) PrependObjectIRI(v url.URL) { - t.object = append([]*objectIgnoreIntermediateType{&objectIgnoreIntermediateType{IRI: &v}}, t.object...) +// PrependObjectIRI adds to the front of object a *url.URL type +func (t *Ignore) PrependObjectIRI(v *url.URL) { + t.object = append([]*objectIgnoreIntermediateType{&objectIgnoreIntermediateType{IRI: v}}, t.object...) } @@ -162928,20 +162942,20 @@ func (t *Ignore) IsTargetIRI(index int) (ok bool) { } // GetTargetIRI returns the value safely if IsTargetIRI returned true for the specified index -func (t *Ignore) GetTargetIRI(index int) (v url.URL) { - return *t.target[index].IRI +func (t *Ignore) GetTargetIRI(index int) (v *url.URL) { + return t.target[index].IRI } -// AppendTargetIRI adds to the back of target a url.URL type -func (t *Ignore) AppendTargetIRI(v url.URL) { - t.target = append(t.target, &targetIgnoreIntermediateType{IRI: &v}) +// AppendTargetIRI adds to the back of target a *url.URL type +func (t *Ignore) AppendTargetIRI(v *url.URL) { + t.target = append(t.target, &targetIgnoreIntermediateType{IRI: v}) } -// PrependTargetIRI adds to the front of target a url.URL type -func (t *Ignore) PrependTargetIRI(v url.URL) { - t.target = append([]*targetIgnoreIntermediateType{&targetIgnoreIntermediateType{IRI: &v}}, t.target...) +// PrependTargetIRI adds to the front of target a *url.URL type +func (t *Ignore) PrependTargetIRI(v *url.URL) { + t.target = append([]*targetIgnoreIntermediateType{&targetIgnoreIntermediateType{IRI: v}}, t.target...) } @@ -163053,20 +163067,20 @@ func (t *Ignore) IsResultIRI(index int) (ok bool) { } // GetResultIRI returns the value safely if IsResultIRI returned true for the specified index -func (t *Ignore) GetResultIRI(index int) (v url.URL) { - return *t.result[index].IRI +func (t *Ignore) GetResultIRI(index int) (v *url.URL) { + return t.result[index].IRI } -// AppendResultIRI adds to the back of result a url.URL type -func (t *Ignore) AppendResultIRI(v url.URL) { - t.result = append(t.result, &resultIgnoreIntermediateType{IRI: &v}) +// AppendResultIRI adds to the back of result a *url.URL type +func (t *Ignore) AppendResultIRI(v *url.URL) { + t.result = append(t.result, &resultIgnoreIntermediateType{IRI: v}) } -// PrependResultIRI adds to the front of result a url.URL type -func (t *Ignore) PrependResultIRI(v url.URL) { - t.result = append([]*resultIgnoreIntermediateType{&resultIgnoreIntermediateType{IRI: &v}}, t.result...) +// PrependResultIRI adds to the front of result a *url.URL type +func (t *Ignore) PrependResultIRI(v *url.URL) { + t.result = append([]*resultIgnoreIntermediateType{&resultIgnoreIntermediateType{IRI: v}}, t.result...) } @@ -163178,20 +163192,20 @@ func (t *Ignore) IsOriginIRI(index int) (ok bool) { } // GetOriginIRI returns the value safely if IsOriginIRI returned true for the specified index -func (t *Ignore) GetOriginIRI(index int) (v url.URL) { - return *t.origin[index].IRI +func (t *Ignore) GetOriginIRI(index int) (v *url.URL) { + return t.origin[index].IRI } -// AppendOriginIRI adds to the back of origin a url.URL type -func (t *Ignore) AppendOriginIRI(v url.URL) { - t.origin = append(t.origin, &originIgnoreIntermediateType{IRI: &v}) +// AppendOriginIRI adds to the back of origin a *url.URL type +func (t *Ignore) AppendOriginIRI(v *url.URL) { + t.origin = append(t.origin, &originIgnoreIntermediateType{IRI: v}) } -// PrependOriginIRI adds to the front of origin a url.URL type -func (t *Ignore) PrependOriginIRI(v url.URL) { - t.origin = append([]*originIgnoreIntermediateType{&originIgnoreIntermediateType{IRI: &v}}, t.origin...) +// PrependOriginIRI adds to the front of origin a *url.URL type +func (t *Ignore) PrependOriginIRI(v *url.URL) { + t.origin = append([]*originIgnoreIntermediateType{&originIgnoreIntermediateType{IRI: v}}, t.origin...) } @@ -163303,20 +163317,20 @@ func (t *Ignore) IsInstrumentIRI(index int) (ok bool) { } // GetInstrumentIRI returns the value safely if IsInstrumentIRI returned true for the specified index -func (t *Ignore) GetInstrumentIRI(index int) (v url.URL) { - return *t.instrument[index].IRI +func (t *Ignore) GetInstrumentIRI(index int) (v *url.URL) { + return t.instrument[index].IRI } -// AppendInstrumentIRI adds to the back of instrument a url.URL type -func (t *Ignore) AppendInstrumentIRI(v url.URL) { - t.instrument = append(t.instrument, &instrumentIgnoreIntermediateType{IRI: &v}) +// AppendInstrumentIRI adds to the back of instrument a *url.URL type +func (t *Ignore) AppendInstrumentIRI(v *url.URL) { + t.instrument = append(t.instrument, &instrumentIgnoreIntermediateType{IRI: v}) } -// PrependInstrumentIRI adds to the front of instrument a url.URL type -func (t *Ignore) PrependInstrumentIRI(v url.URL) { - t.instrument = append([]*instrumentIgnoreIntermediateType{&instrumentIgnoreIntermediateType{IRI: &v}}, t.instrument...) +// PrependInstrumentIRI adds to the front of instrument a *url.URL type +func (t *Ignore) PrependInstrumentIRI(v *url.URL) { + t.instrument = append([]*instrumentIgnoreIntermediateType{&instrumentIgnoreIntermediateType{IRI: v}}, t.instrument...) } @@ -163376,14 +163390,14 @@ func (t *Ignore) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Ignore) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Ignore) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Ignore) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeIgnoreIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Ignore) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeIgnoreIntermediateType{IRI: v} } @@ -163487,20 +163501,20 @@ func (t *Ignore) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Ignore) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Ignore) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Ignore) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentIgnoreIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Ignore) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentIgnoreIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Ignore) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentIgnoreIntermediateType{&attachmentIgnoreIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Ignore) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentIgnoreIntermediateType{&attachmentIgnoreIntermediateType{IRI: v}}, t.attachment...) } @@ -163612,20 +163626,20 @@ func (t *Ignore) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Ignore) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Ignore) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Ignore) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToIgnoreIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Ignore) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToIgnoreIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Ignore) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToIgnoreIntermediateType{&attributedToIgnoreIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Ignore) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToIgnoreIntermediateType{&attributedToIgnoreIntermediateType{IRI: v}}, t.attributedTo...) } @@ -163737,20 +163751,20 @@ func (t *Ignore) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Ignore) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Ignore) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Ignore) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceIgnoreIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Ignore) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceIgnoreIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Ignore) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceIgnoreIntermediateType{&audienceIgnoreIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Ignore) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceIgnoreIntermediateType{&audienceIgnoreIntermediateType{IRI: v}}, t.audience...) } @@ -163862,20 +163876,20 @@ func (t *Ignore) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Ignore) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Ignore) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Ignore) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentIgnoreIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Ignore) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentIgnoreIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Ignore) PrependContentIRI(v url.URL) { - t.content = append([]*contentIgnoreIntermediateType{&contentIgnoreIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Ignore) PrependContentIRI(v *url.URL) { + t.content = append([]*contentIgnoreIntermediateType{&contentIgnoreIntermediateType{IRI: v}}, t.content...) } @@ -164022,20 +164036,20 @@ func (t *Ignore) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Ignore) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Ignore) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Ignore) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextIgnoreIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Ignore) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextIgnoreIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Ignore) PrependContextIRI(v url.URL) { - t.context = append([]*contextIgnoreIntermediateType{&contextIgnoreIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Ignore) PrependContextIRI(v *url.URL) { + t.context = append([]*contextIgnoreIntermediateType{&contextIgnoreIntermediateType{IRI: v}}, t.context...) } @@ -164147,20 +164161,20 @@ func (t *Ignore) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Ignore) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Ignore) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Ignore) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameIgnoreIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Ignore) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameIgnoreIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Ignore) PrependNameIRI(v url.URL) { - t.name = append([]*nameIgnoreIntermediateType{&nameIgnoreIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Ignore) PrependNameIRI(v *url.URL) { + t.name = append([]*nameIgnoreIntermediateType{&nameIgnoreIntermediateType{IRI: v}}, t.name...) } @@ -164255,14 +164269,14 @@ func (t *Ignore) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Ignore) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Ignore) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Ignore) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeIgnoreIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Ignore) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeIgnoreIntermediateType{IRI: v} } @@ -164366,20 +164380,20 @@ func (t *Ignore) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Ignore) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Ignore) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Ignore) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorIgnoreIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Ignore) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorIgnoreIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Ignore) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorIgnoreIntermediateType{&generatorIgnoreIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Ignore) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorIgnoreIntermediateType{&generatorIgnoreIntermediateType{IRI: v}}, t.generator...) } @@ -164491,20 +164505,20 @@ func (t *Ignore) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Ignore) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Ignore) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Ignore) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconIgnoreIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Ignore) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconIgnoreIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Ignore) PrependIconIRI(v url.URL) { - t.icon = append([]*iconIgnoreIntermediateType{&iconIgnoreIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Ignore) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconIgnoreIntermediateType{&iconIgnoreIntermediateType{IRI: v}}, t.icon...) } @@ -164546,14 +164560,14 @@ func (t *Ignore) HasId() (ok bool) { } // GetId returns the value for id -func (t *Ignore) GetId() (v url.URL) { - return *t.id +func (t *Ignore) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Ignore) SetId(v url.URL) { - t.id = &v +func (t *Ignore) SetId(v *url.URL) { + t.id = v } @@ -164655,20 +164669,20 @@ func (t *Ignore) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Ignore) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Ignore) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Ignore) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageIgnoreIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Ignore) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageIgnoreIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Ignore) PrependImageIRI(v url.URL) { - t.image = append([]*imageIgnoreIntermediateType{&imageIgnoreIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Ignore) PrependImageIRI(v *url.URL) { + t.image = append([]*imageIgnoreIntermediateType{&imageIgnoreIntermediateType{IRI: v}}, t.image...) } @@ -164780,20 +164794,20 @@ func (t *Ignore) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Ignore) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Ignore) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Ignore) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToIgnoreIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Ignore) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToIgnoreIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Ignore) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToIgnoreIntermediateType{&inReplyToIgnoreIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Ignore) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToIgnoreIntermediateType{&inReplyToIgnoreIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -164905,20 +164919,20 @@ func (t *Ignore) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Ignore) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Ignore) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Ignore) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationIgnoreIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Ignore) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationIgnoreIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Ignore) PrependLocationIRI(v url.URL) { - t.location = append([]*locationIgnoreIntermediateType{&locationIgnoreIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Ignore) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationIgnoreIntermediateType{&locationIgnoreIntermediateType{IRI: v}}, t.location...) } @@ -165030,20 +165044,20 @@ func (t *Ignore) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Ignore) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Ignore) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Ignore) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewIgnoreIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Ignore) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewIgnoreIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Ignore) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewIgnoreIntermediateType{&previewIgnoreIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Ignore) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewIgnoreIntermediateType{&previewIgnoreIntermediateType{IRI: v}}, t.preview...) } @@ -165103,14 +165117,14 @@ func (t *Ignore) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Ignore) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Ignore) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Ignore) SetPublishedIRI(v url.URL) { - t.published = &publishedIgnoreIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Ignore) SetPublishedIRI(v *url.URL) { + t.published = &publishedIgnoreIntermediateType{IRI: v} } @@ -165162,14 +165176,14 @@ func (t *Ignore) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Ignore) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Ignore) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Ignore) SetRepliesIRI(v url.URL) { - t.replies = &repliesIgnoreIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Ignore) SetRepliesIRI(v *url.URL) { + t.replies = &repliesIgnoreIntermediateType{IRI: v} } @@ -165221,14 +165235,14 @@ func (t *Ignore) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Ignore) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Ignore) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Ignore) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeIgnoreIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Ignore) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeIgnoreIntermediateType{IRI: v} } @@ -165332,20 +165346,20 @@ func (t *Ignore) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Ignore) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Ignore) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Ignore) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryIgnoreIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Ignore) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryIgnoreIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Ignore) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryIgnoreIntermediateType{&summaryIgnoreIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Ignore) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryIgnoreIntermediateType{&summaryIgnoreIntermediateType{IRI: v}}, t.summary...) } @@ -165492,20 +165506,20 @@ func (t *Ignore) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Ignore) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Ignore) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Ignore) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagIgnoreIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Ignore) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagIgnoreIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Ignore) PrependTagIRI(v url.URL) { - t.tag = append([]*tagIgnoreIntermediateType{&tagIgnoreIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Ignore) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagIgnoreIntermediateType{&tagIgnoreIntermediateType{IRI: v}}, t.tag...) } @@ -165597,14 +165611,14 @@ func (t *Ignore) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Ignore) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Ignore) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Ignore) SetUpdatedIRI(v url.URL) { - t.updated = &updatedIgnoreIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Ignore) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedIgnoreIntermediateType{IRI: v} } @@ -165644,20 +165658,20 @@ func (t *Ignore) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Ignore) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Ignore) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Ignore) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlIgnoreIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Ignore) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlIgnoreIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Ignore) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlIgnoreIntermediateType{&urlIgnoreIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Ignore) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlIgnoreIntermediateType{&urlIgnoreIntermediateType{anyURI: v}}, t.url...) } @@ -165801,20 +165815,20 @@ func (t *Ignore) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Ignore) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Ignore) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Ignore) AppendToIRI(v url.URL) { - t.to = append(t.to, &toIgnoreIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Ignore) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toIgnoreIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Ignore) PrependToIRI(v url.URL) { - t.to = append([]*toIgnoreIntermediateType{&toIgnoreIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Ignore) PrependToIRI(v *url.URL) { + t.to = append([]*toIgnoreIntermediateType{&toIgnoreIntermediateType{IRI: v}}, t.to...) } @@ -165926,20 +165940,20 @@ func (t *Ignore) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Ignore) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Ignore) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Ignore) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoIgnoreIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Ignore) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoIgnoreIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Ignore) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoIgnoreIntermediateType{&btoIgnoreIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Ignore) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoIgnoreIntermediateType{&btoIgnoreIntermediateType{IRI: v}}, t.bto...) } @@ -166051,20 +166065,20 @@ func (t *Ignore) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Ignore) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Ignore) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Ignore) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccIgnoreIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Ignore) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccIgnoreIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Ignore) PrependCcIRI(v url.URL) { - t.cc = append([]*ccIgnoreIntermediateType{&ccIgnoreIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Ignore) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccIgnoreIntermediateType{&ccIgnoreIntermediateType{IRI: v}}, t.cc...) } @@ -166176,20 +166190,20 @@ func (t *Ignore) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Ignore) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Ignore) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Ignore) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccIgnoreIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Ignore) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccIgnoreIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Ignore) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccIgnoreIntermediateType{&bccIgnoreIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Ignore) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccIgnoreIntermediateType{&bccIgnoreIntermediateType{IRI: v}}, t.bcc...) } @@ -166249,14 +166263,14 @@ func (t *Ignore) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Ignore) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Ignore) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Ignore) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeIgnoreIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Ignore) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeIgnoreIntermediateType{IRI: v} } @@ -166308,14 +166322,14 @@ func (t *Ignore) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Ignore) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Ignore) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Ignore) SetDurationIRI(v url.URL) { - t.duration = &durationIgnoreIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Ignore) SetDurationIRI(v *url.URL) { + t.duration = &durationIgnoreIntermediateType{IRI: v} } @@ -166367,14 +166381,14 @@ func (t *Ignore) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Ignore) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Ignore) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Ignore) SetSourceIRI(v url.URL) { - t.source = &sourceIgnoreIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Ignore) SetSourceIRI(v *url.URL) { + t.source = &sourceIgnoreIntermediateType{IRI: v} } @@ -166426,14 +166440,14 @@ func (t *Ignore) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Ignore) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Ignore) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Ignore) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxIgnoreIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Ignore) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxIgnoreIntermediateType{anyURI: v} } @@ -166485,14 +166499,14 @@ func (t *Ignore) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Ignore) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Ignore) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Ignore) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxIgnoreIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Ignore) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxIgnoreIntermediateType{anyURI: v} } @@ -166562,14 +166576,14 @@ func (t *Ignore) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Ignore) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Ignore) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Ignore) SetFollowingAnyURI(v url.URL) { - t.following = &followingIgnoreIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Ignore) SetFollowingAnyURI(v *url.URL) { + t.following = &followingIgnoreIntermediateType{anyURI: v} } @@ -166639,14 +166653,14 @@ func (t *Ignore) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Ignore) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Ignore) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Ignore) SetFollowersAnyURI(v url.URL) { - t.followers = &followersIgnoreIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Ignore) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersIgnoreIntermediateType{anyURI: v} } @@ -166716,14 +166730,14 @@ func (t *Ignore) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Ignore) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Ignore) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Ignore) SetLikedAnyURI(v url.URL) { - t.liked = &likedIgnoreIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Ignore) SetLikedAnyURI(v *url.URL) { + t.liked = &likedIgnoreIntermediateType{anyURI: v} } @@ -166793,14 +166807,14 @@ func (t *Ignore) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Ignore) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Ignore) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Ignore) SetLikesAnyURI(v url.URL) { - t.likes = &likesIgnoreIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Ignore) SetLikesAnyURI(v *url.URL) { + t.likes = &likesIgnoreIntermediateType{anyURI: v} } @@ -166834,26 +166848,27 @@ func (t *Ignore) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Ignore) GetStreams(index int) (v url.URL) { +func (t *Ignore) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Ignore) AppendStreams(v url.URL) { +func (t *Ignore) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Ignore) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Ignore) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Ignore) 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] } @@ -166904,14 +166919,14 @@ func (t *Ignore) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Ignore) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Ignore) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Ignore) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameIgnoreIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Ignore) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameIgnoreIntermediateType{IRI: v} } @@ -166998,14 +167013,14 @@ func (t *Ignore) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Ignore) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Ignore) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Ignore) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsIgnoreIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Ignore) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsIgnoreIntermediateType{IRI: v} } @@ -167039,14 +167054,14 @@ func (t *Ignore) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Ignore) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Ignore) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Ignore) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Ignore) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -167078,14 +167093,14 @@ func (t *Ignore) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Ignore) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Ignore) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Ignore) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Ignore) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -167117,14 +167132,14 @@ func (t *Ignore) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Ignore) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Ignore) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Ignore) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Ignore) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -167156,14 +167171,14 @@ func (t *Ignore) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Ignore) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Ignore) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Ignore) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Ignore) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -167195,14 +167210,14 @@ func (t *Ignore) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Ignore) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Ignore) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Ignore) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Ignore) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -167234,14 +167249,14 @@ func (t *Ignore) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Ignore) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Ignore) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Ignore) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Ignore) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -167499,7 +167514,7 @@ func (t *Ignore) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -167805,7 +167820,7 @@ func (t *Ignore) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -167820,7 +167835,7 @@ func (t *Ignore) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -167835,7 +167850,7 @@ func (t *Ignore) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -167850,7 +167865,7 @@ func (t *Ignore) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -167865,7 +167880,7 @@ func (t *Ignore) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -167880,7 +167895,7 @@ func (t *Ignore) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -168846,7 +168861,7 @@ func (t *Ignore) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -168855,7 +168870,7 @@ func (t *Ignore) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -169069,7 +169084,7 @@ func (t *actorIgnoreIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -169137,7 +169152,7 @@ func (t *objectIgnoreIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -169220,7 +169235,7 @@ func (t *targetIgnoreIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -169303,7 +169318,7 @@ func (t *resultIgnoreIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -169386,7 +169401,7 @@ func (t *originIgnoreIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -169469,7 +169484,7 @@ func (t *instrumentIgnoreIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -169523,7 +169538,7 @@ func (t *altitudeIgnoreIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -169606,7 +169621,7 @@ func (t *attachmentIgnoreIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -169689,7 +169704,7 @@ func (t *attributedToIgnoreIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -169772,7 +169787,7 @@ func (t *audienceIgnoreIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -169840,7 +169855,7 @@ func (t *contentIgnoreIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -169923,7 +169938,7 @@ func (t *contextIgnoreIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -169991,7 +170006,7 @@ func (t *nameIgnoreIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -170045,7 +170060,7 @@ func (t *endTimeIgnoreIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -170128,7 +170143,7 @@ func (t *generatorIgnoreIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -170211,7 +170226,7 @@ func (t *iconIgnoreIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -170294,7 +170309,7 @@ func (t *imageIgnoreIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -170377,7 +170392,7 @@ func (t *inReplyToIgnoreIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -170460,7 +170475,7 @@ func (t *locationIgnoreIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -170543,7 +170558,7 @@ func (t *previewIgnoreIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -170597,7 +170612,7 @@ func (t *publishedIgnoreIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -170665,7 +170680,7 @@ func (t *repliesIgnoreIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -170719,7 +170734,7 @@ func (t *startTimeIgnoreIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -170787,7 +170802,7 @@ func (t *summaryIgnoreIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -170870,7 +170885,7 @@ func (t *tagIgnoreIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -170924,7 +170939,7 @@ func (t *updatedIgnoreIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -170988,7 +171003,7 @@ func (t *urlIgnoreIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlIgnoreIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -171075,7 +171090,7 @@ func (t *toIgnoreIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -171158,7 +171173,7 @@ func (t *btoIgnoreIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -171241,7 +171256,7 @@ func (t *ccIgnoreIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -171324,7 +171339,7 @@ func (t *bccIgnoreIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -171378,7 +171393,7 @@ func (t *mediaTypeIgnoreIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -171432,7 +171447,7 @@ func (t *durationIgnoreIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -171500,7 +171515,7 @@ func (t *sourceIgnoreIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -171568,7 +171583,7 @@ func (t *inboxIgnoreIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -171636,7 +171651,7 @@ func (t *outboxIgnoreIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -171719,7 +171734,7 @@ func (t *followingIgnoreIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -171802,7 +171817,7 @@ func (t *followersIgnoreIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -171885,7 +171900,7 @@ func (t *likedIgnoreIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -171968,7 +171983,7 @@ func (t *likesIgnoreIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -172022,7 +172037,7 @@ func (t *preferredUsernameIgnoreIntermediateType) Serialize() (i interface{}, er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -172090,7 +172105,7 @@ func (t *endpointsIgnoreIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -172192,7 +172207,7 @@ type Join struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesJoinIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameJoinIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -172290,20 +172305,20 @@ func (t *Join) IsActorIRI(index int) (ok bool) { } // GetActorIRI returns the value safely if IsActorIRI returned true for the specified index -func (t *Join) GetActorIRI(index int) (v url.URL) { - return *t.actor[index].IRI +func (t *Join) GetActorIRI(index int) (v *url.URL) { + return t.actor[index].IRI } -// AppendActorIRI adds to the back of actor a url.URL type -func (t *Join) AppendActorIRI(v url.URL) { - t.actor = append(t.actor, &actorJoinIntermediateType{IRI: &v}) +// AppendActorIRI adds to the back of actor a *url.URL type +func (t *Join) AppendActorIRI(v *url.URL) { + t.actor = append(t.actor, &actorJoinIntermediateType{IRI: v}) } -// PrependActorIRI adds to the front of actor a url.URL type -func (t *Join) PrependActorIRI(v url.URL) { - t.actor = append([]*actorJoinIntermediateType{&actorJoinIntermediateType{IRI: &v}}, t.actor...) +// PrependActorIRI adds to the front of actor a *url.URL type +func (t *Join) PrependActorIRI(v *url.URL) { + t.actor = append([]*actorJoinIntermediateType{&actorJoinIntermediateType{IRI: v}}, t.actor...) } @@ -172383,20 +172398,20 @@ func (t *Join) IsObjectIRI(index int) (ok bool) { } // GetObjectIRI returns the value safely if IsObjectIRI returned true for the specified index -func (t *Join) GetObjectIRI(index int) (v url.URL) { - return *t.object[index].IRI +func (t *Join) GetObjectIRI(index int) (v *url.URL) { + return t.object[index].IRI } -// AppendObjectIRI adds to the back of object a url.URL type -func (t *Join) AppendObjectIRI(v url.URL) { - t.object = append(t.object, &objectJoinIntermediateType{IRI: &v}) +// AppendObjectIRI adds to the back of object a *url.URL type +func (t *Join) AppendObjectIRI(v *url.URL) { + t.object = append(t.object, &objectJoinIntermediateType{IRI: v}) } -// PrependObjectIRI adds to the front of object a url.URL type -func (t *Join) PrependObjectIRI(v url.URL) { - t.object = append([]*objectJoinIntermediateType{&objectJoinIntermediateType{IRI: &v}}, t.object...) +// PrependObjectIRI adds to the front of object a *url.URL type +func (t *Join) PrependObjectIRI(v *url.URL) { + t.object = append([]*objectJoinIntermediateType{&objectJoinIntermediateType{IRI: v}}, t.object...) } @@ -172508,20 +172523,20 @@ func (t *Join) IsTargetIRI(index int) (ok bool) { } // GetTargetIRI returns the value safely if IsTargetIRI returned true for the specified index -func (t *Join) GetTargetIRI(index int) (v url.URL) { - return *t.target[index].IRI +func (t *Join) GetTargetIRI(index int) (v *url.URL) { + return t.target[index].IRI } -// AppendTargetIRI adds to the back of target a url.URL type -func (t *Join) AppendTargetIRI(v url.URL) { - t.target = append(t.target, &targetJoinIntermediateType{IRI: &v}) +// AppendTargetIRI adds to the back of target a *url.URL type +func (t *Join) AppendTargetIRI(v *url.URL) { + t.target = append(t.target, &targetJoinIntermediateType{IRI: v}) } -// PrependTargetIRI adds to the front of target a url.URL type -func (t *Join) PrependTargetIRI(v url.URL) { - t.target = append([]*targetJoinIntermediateType{&targetJoinIntermediateType{IRI: &v}}, t.target...) +// PrependTargetIRI adds to the front of target a *url.URL type +func (t *Join) PrependTargetIRI(v *url.URL) { + t.target = append([]*targetJoinIntermediateType{&targetJoinIntermediateType{IRI: v}}, t.target...) } @@ -172633,20 +172648,20 @@ func (t *Join) IsResultIRI(index int) (ok bool) { } // GetResultIRI returns the value safely if IsResultIRI returned true for the specified index -func (t *Join) GetResultIRI(index int) (v url.URL) { - return *t.result[index].IRI +func (t *Join) GetResultIRI(index int) (v *url.URL) { + return t.result[index].IRI } -// AppendResultIRI adds to the back of result a url.URL type -func (t *Join) AppendResultIRI(v url.URL) { - t.result = append(t.result, &resultJoinIntermediateType{IRI: &v}) +// AppendResultIRI adds to the back of result a *url.URL type +func (t *Join) AppendResultIRI(v *url.URL) { + t.result = append(t.result, &resultJoinIntermediateType{IRI: v}) } -// PrependResultIRI adds to the front of result a url.URL type -func (t *Join) PrependResultIRI(v url.URL) { - t.result = append([]*resultJoinIntermediateType{&resultJoinIntermediateType{IRI: &v}}, t.result...) +// PrependResultIRI adds to the front of result a *url.URL type +func (t *Join) PrependResultIRI(v *url.URL) { + t.result = append([]*resultJoinIntermediateType{&resultJoinIntermediateType{IRI: v}}, t.result...) } @@ -172758,20 +172773,20 @@ func (t *Join) IsOriginIRI(index int) (ok bool) { } // GetOriginIRI returns the value safely if IsOriginIRI returned true for the specified index -func (t *Join) GetOriginIRI(index int) (v url.URL) { - return *t.origin[index].IRI +func (t *Join) GetOriginIRI(index int) (v *url.URL) { + return t.origin[index].IRI } -// AppendOriginIRI adds to the back of origin a url.URL type -func (t *Join) AppendOriginIRI(v url.URL) { - t.origin = append(t.origin, &originJoinIntermediateType{IRI: &v}) +// AppendOriginIRI adds to the back of origin a *url.URL type +func (t *Join) AppendOriginIRI(v *url.URL) { + t.origin = append(t.origin, &originJoinIntermediateType{IRI: v}) } -// PrependOriginIRI adds to the front of origin a url.URL type -func (t *Join) PrependOriginIRI(v url.URL) { - t.origin = append([]*originJoinIntermediateType{&originJoinIntermediateType{IRI: &v}}, t.origin...) +// PrependOriginIRI adds to the front of origin a *url.URL type +func (t *Join) PrependOriginIRI(v *url.URL) { + t.origin = append([]*originJoinIntermediateType{&originJoinIntermediateType{IRI: v}}, t.origin...) } @@ -172883,20 +172898,20 @@ func (t *Join) IsInstrumentIRI(index int) (ok bool) { } // GetInstrumentIRI returns the value safely if IsInstrumentIRI returned true for the specified index -func (t *Join) GetInstrumentIRI(index int) (v url.URL) { - return *t.instrument[index].IRI +func (t *Join) GetInstrumentIRI(index int) (v *url.URL) { + return t.instrument[index].IRI } -// AppendInstrumentIRI adds to the back of instrument a url.URL type -func (t *Join) AppendInstrumentIRI(v url.URL) { - t.instrument = append(t.instrument, &instrumentJoinIntermediateType{IRI: &v}) +// AppendInstrumentIRI adds to the back of instrument a *url.URL type +func (t *Join) AppendInstrumentIRI(v *url.URL) { + t.instrument = append(t.instrument, &instrumentJoinIntermediateType{IRI: v}) } -// PrependInstrumentIRI adds to the front of instrument a url.URL type -func (t *Join) PrependInstrumentIRI(v url.URL) { - t.instrument = append([]*instrumentJoinIntermediateType{&instrumentJoinIntermediateType{IRI: &v}}, t.instrument...) +// PrependInstrumentIRI adds to the front of instrument a *url.URL type +func (t *Join) PrependInstrumentIRI(v *url.URL) { + t.instrument = append([]*instrumentJoinIntermediateType{&instrumentJoinIntermediateType{IRI: v}}, t.instrument...) } @@ -172956,14 +172971,14 @@ func (t *Join) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Join) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Join) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Join) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeJoinIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Join) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeJoinIntermediateType{IRI: v} } @@ -173067,20 +173082,20 @@ func (t *Join) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Join) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Join) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Join) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentJoinIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Join) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentJoinIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Join) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentJoinIntermediateType{&attachmentJoinIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Join) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentJoinIntermediateType{&attachmentJoinIntermediateType{IRI: v}}, t.attachment...) } @@ -173192,20 +173207,20 @@ func (t *Join) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Join) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Join) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Join) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToJoinIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Join) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToJoinIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Join) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToJoinIntermediateType{&attributedToJoinIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Join) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToJoinIntermediateType{&attributedToJoinIntermediateType{IRI: v}}, t.attributedTo...) } @@ -173317,20 +173332,20 @@ func (t *Join) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Join) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Join) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Join) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceJoinIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Join) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceJoinIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Join) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceJoinIntermediateType{&audienceJoinIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Join) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceJoinIntermediateType{&audienceJoinIntermediateType{IRI: v}}, t.audience...) } @@ -173442,20 +173457,20 @@ func (t *Join) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Join) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Join) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Join) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentJoinIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Join) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentJoinIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Join) PrependContentIRI(v url.URL) { - t.content = append([]*contentJoinIntermediateType{&contentJoinIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Join) PrependContentIRI(v *url.URL) { + t.content = append([]*contentJoinIntermediateType{&contentJoinIntermediateType{IRI: v}}, t.content...) } @@ -173602,20 +173617,20 @@ func (t *Join) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Join) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Join) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Join) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextJoinIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Join) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextJoinIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Join) PrependContextIRI(v url.URL) { - t.context = append([]*contextJoinIntermediateType{&contextJoinIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Join) PrependContextIRI(v *url.URL) { + t.context = append([]*contextJoinIntermediateType{&contextJoinIntermediateType{IRI: v}}, t.context...) } @@ -173727,20 +173742,20 @@ func (t *Join) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Join) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Join) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Join) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameJoinIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Join) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameJoinIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Join) PrependNameIRI(v url.URL) { - t.name = append([]*nameJoinIntermediateType{&nameJoinIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Join) PrependNameIRI(v *url.URL) { + t.name = append([]*nameJoinIntermediateType{&nameJoinIntermediateType{IRI: v}}, t.name...) } @@ -173835,14 +173850,14 @@ func (t *Join) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Join) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Join) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Join) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeJoinIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Join) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeJoinIntermediateType{IRI: v} } @@ -173946,20 +173961,20 @@ func (t *Join) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Join) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Join) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Join) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorJoinIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Join) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorJoinIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Join) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorJoinIntermediateType{&generatorJoinIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Join) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorJoinIntermediateType{&generatorJoinIntermediateType{IRI: v}}, t.generator...) } @@ -174071,20 +174086,20 @@ func (t *Join) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Join) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Join) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Join) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconJoinIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Join) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconJoinIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Join) PrependIconIRI(v url.URL) { - t.icon = append([]*iconJoinIntermediateType{&iconJoinIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Join) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconJoinIntermediateType{&iconJoinIntermediateType{IRI: v}}, t.icon...) } @@ -174126,14 +174141,14 @@ func (t *Join) HasId() (ok bool) { } // GetId returns the value for id -func (t *Join) GetId() (v url.URL) { - return *t.id +func (t *Join) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Join) SetId(v url.URL) { - t.id = &v +func (t *Join) SetId(v *url.URL) { + t.id = v } @@ -174235,20 +174250,20 @@ func (t *Join) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Join) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Join) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Join) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageJoinIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Join) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageJoinIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Join) PrependImageIRI(v url.URL) { - t.image = append([]*imageJoinIntermediateType{&imageJoinIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Join) PrependImageIRI(v *url.URL) { + t.image = append([]*imageJoinIntermediateType{&imageJoinIntermediateType{IRI: v}}, t.image...) } @@ -174360,20 +174375,20 @@ func (t *Join) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Join) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Join) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Join) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToJoinIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Join) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToJoinIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Join) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToJoinIntermediateType{&inReplyToJoinIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Join) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToJoinIntermediateType{&inReplyToJoinIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -174485,20 +174500,20 @@ func (t *Join) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Join) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Join) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Join) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationJoinIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Join) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationJoinIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Join) PrependLocationIRI(v url.URL) { - t.location = append([]*locationJoinIntermediateType{&locationJoinIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Join) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationJoinIntermediateType{&locationJoinIntermediateType{IRI: v}}, t.location...) } @@ -174610,20 +174625,20 @@ func (t *Join) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Join) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Join) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Join) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewJoinIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Join) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewJoinIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Join) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewJoinIntermediateType{&previewJoinIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Join) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewJoinIntermediateType{&previewJoinIntermediateType{IRI: v}}, t.preview...) } @@ -174683,14 +174698,14 @@ func (t *Join) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Join) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Join) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Join) SetPublishedIRI(v url.URL) { - t.published = &publishedJoinIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Join) SetPublishedIRI(v *url.URL) { + t.published = &publishedJoinIntermediateType{IRI: v} } @@ -174742,14 +174757,14 @@ func (t *Join) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Join) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Join) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Join) SetRepliesIRI(v url.URL) { - t.replies = &repliesJoinIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Join) SetRepliesIRI(v *url.URL) { + t.replies = &repliesJoinIntermediateType{IRI: v} } @@ -174801,14 +174816,14 @@ func (t *Join) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Join) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Join) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Join) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeJoinIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Join) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeJoinIntermediateType{IRI: v} } @@ -174912,20 +174927,20 @@ func (t *Join) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Join) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Join) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Join) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryJoinIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Join) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryJoinIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Join) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryJoinIntermediateType{&summaryJoinIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Join) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryJoinIntermediateType{&summaryJoinIntermediateType{IRI: v}}, t.summary...) } @@ -175072,20 +175087,20 @@ func (t *Join) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Join) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Join) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Join) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagJoinIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Join) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagJoinIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Join) PrependTagIRI(v url.URL) { - t.tag = append([]*tagJoinIntermediateType{&tagJoinIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Join) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagJoinIntermediateType{&tagJoinIntermediateType{IRI: v}}, t.tag...) } @@ -175177,14 +175192,14 @@ func (t *Join) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Join) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Join) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Join) SetUpdatedIRI(v url.URL) { - t.updated = &updatedJoinIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Join) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedJoinIntermediateType{IRI: v} } @@ -175224,20 +175239,20 @@ func (t *Join) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Join) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Join) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Join) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlJoinIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Join) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlJoinIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Join) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlJoinIntermediateType{&urlJoinIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Join) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlJoinIntermediateType{&urlJoinIntermediateType{anyURI: v}}, t.url...) } @@ -175381,20 +175396,20 @@ func (t *Join) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Join) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Join) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Join) AppendToIRI(v url.URL) { - t.to = append(t.to, &toJoinIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Join) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toJoinIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Join) PrependToIRI(v url.URL) { - t.to = append([]*toJoinIntermediateType{&toJoinIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Join) PrependToIRI(v *url.URL) { + t.to = append([]*toJoinIntermediateType{&toJoinIntermediateType{IRI: v}}, t.to...) } @@ -175506,20 +175521,20 @@ func (t *Join) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Join) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Join) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Join) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoJoinIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Join) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoJoinIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Join) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoJoinIntermediateType{&btoJoinIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Join) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoJoinIntermediateType{&btoJoinIntermediateType{IRI: v}}, t.bto...) } @@ -175631,20 +175646,20 @@ func (t *Join) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Join) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Join) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Join) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccJoinIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Join) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccJoinIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Join) PrependCcIRI(v url.URL) { - t.cc = append([]*ccJoinIntermediateType{&ccJoinIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Join) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccJoinIntermediateType{&ccJoinIntermediateType{IRI: v}}, t.cc...) } @@ -175756,20 +175771,20 @@ func (t *Join) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Join) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Join) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Join) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccJoinIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Join) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccJoinIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Join) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccJoinIntermediateType{&bccJoinIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Join) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccJoinIntermediateType{&bccJoinIntermediateType{IRI: v}}, t.bcc...) } @@ -175829,14 +175844,14 @@ func (t *Join) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Join) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Join) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Join) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeJoinIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Join) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeJoinIntermediateType{IRI: v} } @@ -175888,14 +175903,14 @@ func (t *Join) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Join) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Join) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Join) SetDurationIRI(v url.URL) { - t.duration = &durationJoinIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Join) SetDurationIRI(v *url.URL) { + t.duration = &durationJoinIntermediateType{IRI: v} } @@ -175947,14 +175962,14 @@ func (t *Join) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Join) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Join) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Join) SetSourceIRI(v url.URL) { - t.source = &sourceJoinIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Join) SetSourceIRI(v *url.URL) { + t.source = &sourceJoinIntermediateType{IRI: v} } @@ -176006,14 +176021,14 @@ func (t *Join) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Join) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Join) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Join) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxJoinIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Join) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxJoinIntermediateType{anyURI: v} } @@ -176065,14 +176080,14 @@ func (t *Join) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Join) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Join) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Join) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxJoinIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Join) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxJoinIntermediateType{anyURI: v} } @@ -176142,14 +176157,14 @@ func (t *Join) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Join) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Join) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Join) SetFollowingAnyURI(v url.URL) { - t.following = &followingJoinIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Join) SetFollowingAnyURI(v *url.URL) { + t.following = &followingJoinIntermediateType{anyURI: v} } @@ -176219,14 +176234,14 @@ func (t *Join) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Join) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Join) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Join) SetFollowersAnyURI(v url.URL) { - t.followers = &followersJoinIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Join) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersJoinIntermediateType{anyURI: v} } @@ -176296,14 +176311,14 @@ func (t *Join) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Join) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Join) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Join) SetLikedAnyURI(v url.URL) { - t.liked = &likedJoinIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Join) SetLikedAnyURI(v *url.URL) { + t.liked = &likedJoinIntermediateType{anyURI: v} } @@ -176373,14 +176388,14 @@ func (t *Join) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Join) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Join) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Join) SetLikesAnyURI(v url.URL) { - t.likes = &likesJoinIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Join) SetLikesAnyURI(v *url.URL) { + t.likes = &likesJoinIntermediateType{anyURI: v} } @@ -176414,26 +176429,27 @@ func (t *Join) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Join) GetStreams(index int) (v url.URL) { +func (t *Join) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Join) AppendStreams(v url.URL) { +func (t *Join) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Join) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Join) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Join) 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] } @@ -176484,14 +176500,14 @@ func (t *Join) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Join) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Join) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Join) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameJoinIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Join) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameJoinIntermediateType{IRI: v} } @@ -176578,14 +176594,14 @@ func (t *Join) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Join) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Join) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Join) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsJoinIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Join) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsJoinIntermediateType{IRI: v} } @@ -176619,14 +176635,14 @@ func (t *Join) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Join) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Join) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Join) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Join) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -176658,14 +176674,14 @@ func (t *Join) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Join) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Join) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Join) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Join) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -176697,14 +176713,14 @@ func (t *Join) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Join) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Join) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Join) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Join) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -176736,14 +176752,14 @@ func (t *Join) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Join) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Join) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Join) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Join) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -176775,14 +176791,14 @@ func (t *Join) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Join) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Join) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Join) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Join) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -176814,14 +176830,14 @@ func (t *Join) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Join) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Join) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Join) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Join) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -177079,7 +177095,7 @@ func (t *Join) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -177385,7 +177401,7 @@ func (t *Join) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -177400,7 +177416,7 @@ func (t *Join) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -177415,7 +177431,7 @@ func (t *Join) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -177430,7 +177446,7 @@ func (t *Join) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -177445,7 +177461,7 @@ func (t *Join) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -177460,7 +177476,7 @@ func (t *Join) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -178426,7 +178442,7 @@ func (t *Join) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -178435,7 +178451,7 @@ func (t *Join) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -178649,7 +178665,7 @@ func (t *actorJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -178717,7 +178733,7 @@ func (t *objectJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -178800,7 +178816,7 @@ func (t *targetJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -178883,7 +178899,7 @@ func (t *resultJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -178966,7 +178982,7 @@ func (t *originJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -179049,7 +179065,7 @@ func (t *instrumentJoinIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -179103,7 +179119,7 @@ func (t *altitudeJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -179186,7 +179202,7 @@ func (t *attachmentJoinIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -179269,7 +179285,7 @@ func (t *attributedToJoinIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -179352,7 +179368,7 @@ func (t *audienceJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -179420,7 +179436,7 @@ func (t *contentJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -179503,7 +179519,7 @@ func (t *contextJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -179571,7 +179587,7 @@ func (t *nameJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -179625,7 +179641,7 @@ func (t *endTimeJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -179708,7 +179724,7 @@ func (t *generatorJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -179791,7 +179807,7 @@ func (t *iconJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -179874,7 +179890,7 @@ func (t *imageJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -179957,7 +179973,7 @@ func (t *inReplyToJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -180040,7 +180056,7 @@ func (t *locationJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -180123,7 +180139,7 @@ func (t *previewJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -180177,7 +180193,7 @@ func (t *publishedJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -180245,7 +180261,7 @@ func (t *repliesJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -180299,7 +180315,7 @@ func (t *startTimeJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -180367,7 +180383,7 @@ func (t *summaryJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -180450,7 +180466,7 @@ func (t *tagJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -180504,7 +180520,7 @@ func (t *updatedJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -180568,7 +180584,7 @@ func (t *urlJoinIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlJoinIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -180655,7 +180671,7 @@ func (t *toJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -180738,7 +180754,7 @@ func (t *btoJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -180821,7 +180837,7 @@ func (t *ccJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -180904,7 +180920,7 @@ func (t *bccJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -180958,7 +180974,7 @@ func (t *mediaTypeJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -181012,7 +181028,7 @@ func (t *durationJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -181080,7 +181096,7 @@ func (t *sourceJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -181148,7 +181164,7 @@ func (t *inboxJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -181216,7 +181232,7 @@ func (t *outboxJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -181299,7 +181315,7 @@ func (t *followingJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -181382,7 +181398,7 @@ func (t *followersJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -181465,7 +181481,7 @@ func (t *likedJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -181548,7 +181564,7 @@ func (t *likesJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -181602,7 +181618,7 @@ func (t *preferredUsernameJoinIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -181670,7 +181686,7 @@ func (t *endpointsJoinIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -181772,7 +181788,7 @@ type Leave struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesLeaveIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameLeaveIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -181870,20 +181886,20 @@ func (t *Leave) IsActorIRI(index int) (ok bool) { } // GetActorIRI returns the value safely if IsActorIRI returned true for the specified index -func (t *Leave) GetActorIRI(index int) (v url.URL) { - return *t.actor[index].IRI +func (t *Leave) GetActorIRI(index int) (v *url.URL) { + return t.actor[index].IRI } -// AppendActorIRI adds to the back of actor a url.URL type -func (t *Leave) AppendActorIRI(v url.URL) { - t.actor = append(t.actor, &actorLeaveIntermediateType{IRI: &v}) +// AppendActorIRI adds to the back of actor a *url.URL type +func (t *Leave) AppendActorIRI(v *url.URL) { + t.actor = append(t.actor, &actorLeaveIntermediateType{IRI: v}) } -// PrependActorIRI adds to the front of actor a url.URL type -func (t *Leave) PrependActorIRI(v url.URL) { - t.actor = append([]*actorLeaveIntermediateType{&actorLeaveIntermediateType{IRI: &v}}, t.actor...) +// PrependActorIRI adds to the front of actor a *url.URL type +func (t *Leave) PrependActorIRI(v *url.URL) { + t.actor = append([]*actorLeaveIntermediateType{&actorLeaveIntermediateType{IRI: v}}, t.actor...) } @@ -181963,20 +181979,20 @@ func (t *Leave) IsObjectIRI(index int) (ok bool) { } // GetObjectIRI returns the value safely if IsObjectIRI returned true for the specified index -func (t *Leave) GetObjectIRI(index int) (v url.URL) { - return *t.object[index].IRI +func (t *Leave) GetObjectIRI(index int) (v *url.URL) { + return t.object[index].IRI } -// AppendObjectIRI adds to the back of object a url.URL type -func (t *Leave) AppendObjectIRI(v url.URL) { - t.object = append(t.object, &objectLeaveIntermediateType{IRI: &v}) +// AppendObjectIRI adds to the back of object a *url.URL type +func (t *Leave) AppendObjectIRI(v *url.URL) { + t.object = append(t.object, &objectLeaveIntermediateType{IRI: v}) } -// PrependObjectIRI adds to the front of object a url.URL type -func (t *Leave) PrependObjectIRI(v url.URL) { - t.object = append([]*objectLeaveIntermediateType{&objectLeaveIntermediateType{IRI: &v}}, t.object...) +// PrependObjectIRI adds to the front of object a *url.URL type +func (t *Leave) PrependObjectIRI(v *url.URL) { + t.object = append([]*objectLeaveIntermediateType{&objectLeaveIntermediateType{IRI: v}}, t.object...) } @@ -182088,20 +182104,20 @@ func (t *Leave) IsTargetIRI(index int) (ok bool) { } // GetTargetIRI returns the value safely if IsTargetIRI returned true for the specified index -func (t *Leave) GetTargetIRI(index int) (v url.URL) { - return *t.target[index].IRI +func (t *Leave) GetTargetIRI(index int) (v *url.URL) { + return t.target[index].IRI } -// AppendTargetIRI adds to the back of target a url.URL type -func (t *Leave) AppendTargetIRI(v url.URL) { - t.target = append(t.target, &targetLeaveIntermediateType{IRI: &v}) +// AppendTargetIRI adds to the back of target a *url.URL type +func (t *Leave) AppendTargetIRI(v *url.URL) { + t.target = append(t.target, &targetLeaveIntermediateType{IRI: v}) } -// PrependTargetIRI adds to the front of target a url.URL type -func (t *Leave) PrependTargetIRI(v url.URL) { - t.target = append([]*targetLeaveIntermediateType{&targetLeaveIntermediateType{IRI: &v}}, t.target...) +// PrependTargetIRI adds to the front of target a *url.URL type +func (t *Leave) PrependTargetIRI(v *url.URL) { + t.target = append([]*targetLeaveIntermediateType{&targetLeaveIntermediateType{IRI: v}}, t.target...) } @@ -182213,20 +182229,20 @@ func (t *Leave) IsResultIRI(index int) (ok bool) { } // GetResultIRI returns the value safely if IsResultIRI returned true for the specified index -func (t *Leave) GetResultIRI(index int) (v url.URL) { - return *t.result[index].IRI +func (t *Leave) GetResultIRI(index int) (v *url.URL) { + return t.result[index].IRI } -// AppendResultIRI adds to the back of result a url.URL type -func (t *Leave) AppendResultIRI(v url.URL) { - t.result = append(t.result, &resultLeaveIntermediateType{IRI: &v}) +// AppendResultIRI adds to the back of result a *url.URL type +func (t *Leave) AppendResultIRI(v *url.URL) { + t.result = append(t.result, &resultLeaveIntermediateType{IRI: v}) } -// PrependResultIRI adds to the front of result a url.URL type -func (t *Leave) PrependResultIRI(v url.URL) { - t.result = append([]*resultLeaveIntermediateType{&resultLeaveIntermediateType{IRI: &v}}, t.result...) +// PrependResultIRI adds to the front of result a *url.URL type +func (t *Leave) PrependResultIRI(v *url.URL) { + t.result = append([]*resultLeaveIntermediateType{&resultLeaveIntermediateType{IRI: v}}, t.result...) } @@ -182338,20 +182354,20 @@ func (t *Leave) IsOriginIRI(index int) (ok bool) { } // GetOriginIRI returns the value safely if IsOriginIRI returned true for the specified index -func (t *Leave) GetOriginIRI(index int) (v url.URL) { - return *t.origin[index].IRI +func (t *Leave) GetOriginIRI(index int) (v *url.URL) { + return t.origin[index].IRI } -// AppendOriginIRI adds to the back of origin a url.URL type -func (t *Leave) AppendOriginIRI(v url.URL) { - t.origin = append(t.origin, &originLeaveIntermediateType{IRI: &v}) +// AppendOriginIRI adds to the back of origin a *url.URL type +func (t *Leave) AppendOriginIRI(v *url.URL) { + t.origin = append(t.origin, &originLeaveIntermediateType{IRI: v}) } -// PrependOriginIRI adds to the front of origin a url.URL type -func (t *Leave) PrependOriginIRI(v url.URL) { - t.origin = append([]*originLeaveIntermediateType{&originLeaveIntermediateType{IRI: &v}}, t.origin...) +// PrependOriginIRI adds to the front of origin a *url.URL type +func (t *Leave) PrependOriginIRI(v *url.URL) { + t.origin = append([]*originLeaveIntermediateType{&originLeaveIntermediateType{IRI: v}}, t.origin...) } @@ -182463,20 +182479,20 @@ func (t *Leave) IsInstrumentIRI(index int) (ok bool) { } // GetInstrumentIRI returns the value safely if IsInstrumentIRI returned true for the specified index -func (t *Leave) GetInstrumentIRI(index int) (v url.URL) { - return *t.instrument[index].IRI +func (t *Leave) GetInstrumentIRI(index int) (v *url.URL) { + return t.instrument[index].IRI } -// AppendInstrumentIRI adds to the back of instrument a url.URL type -func (t *Leave) AppendInstrumentIRI(v url.URL) { - t.instrument = append(t.instrument, &instrumentLeaveIntermediateType{IRI: &v}) +// AppendInstrumentIRI adds to the back of instrument a *url.URL type +func (t *Leave) AppendInstrumentIRI(v *url.URL) { + t.instrument = append(t.instrument, &instrumentLeaveIntermediateType{IRI: v}) } -// PrependInstrumentIRI adds to the front of instrument a url.URL type -func (t *Leave) PrependInstrumentIRI(v url.URL) { - t.instrument = append([]*instrumentLeaveIntermediateType{&instrumentLeaveIntermediateType{IRI: &v}}, t.instrument...) +// PrependInstrumentIRI adds to the front of instrument a *url.URL type +func (t *Leave) PrependInstrumentIRI(v *url.URL) { + t.instrument = append([]*instrumentLeaveIntermediateType{&instrumentLeaveIntermediateType{IRI: v}}, t.instrument...) } @@ -182536,14 +182552,14 @@ func (t *Leave) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Leave) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Leave) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Leave) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeLeaveIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Leave) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeLeaveIntermediateType{IRI: v} } @@ -182647,20 +182663,20 @@ func (t *Leave) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Leave) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Leave) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Leave) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentLeaveIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Leave) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentLeaveIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Leave) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentLeaveIntermediateType{&attachmentLeaveIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Leave) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentLeaveIntermediateType{&attachmentLeaveIntermediateType{IRI: v}}, t.attachment...) } @@ -182772,20 +182788,20 @@ func (t *Leave) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Leave) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Leave) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Leave) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToLeaveIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Leave) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToLeaveIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Leave) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToLeaveIntermediateType{&attributedToLeaveIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Leave) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToLeaveIntermediateType{&attributedToLeaveIntermediateType{IRI: v}}, t.attributedTo...) } @@ -182897,20 +182913,20 @@ func (t *Leave) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Leave) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Leave) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Leave) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceLeaveIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Leave) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceLeaveIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Leave) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceLeaveIntermediateType{&audienceLeaveIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Leave) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceLeaveIntermediateType{&audienceLeaveIntermediateType{IRI: v}}, t.audience...) } @@ -183022,20 +183038,20 @@ func (t *Leave) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Leave) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Leave) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Leave) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentLeaveIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Leave) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentLeaveIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Leave) PrependContentIRI(v url.URL) { - t.content = append([]*contentLeaveIntermediateType{&contentLeaveIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Leave) PrependContentIRI(v *url.URL) { + t.content = append([]*contentLeaveIntermediateType{&contentLeaveIntermediateType{IRI: v}}, t.content...) } @@ -183182,20 +183198,20 @@ func (t *Leave) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Leave) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Leave) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Leave) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextLeaveIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Leave) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextLeaveIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Leave) PrependContextIRI(v url.URL) { - t.context = append([]*contextLeaveIntermediateType{&contextLeaveIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Leave) PrependContextIRI(v *url.URL) { + t.context = append([]*contextLeaveIntermediateType{&contextLeaveIntermediateType{IRI: v}}, t.context...) } @@ -183307,20 +183323,20 @@ func (t *Leave) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Leave) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Leave) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Leave) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameLeaveIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Leave) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameLeaveIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Leave) PrependNameIRI(v url.URL) { - t.name = append([]*nameLeaveIntermediateType{&nameLeaveIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Leave) PrependNameIRI(v *url.URL) { + t.name = append([]*nameLeaveIntermediateType{&nameLeaveIntermediateType{IRI: v}}, t.name...) } @@ -183415,14 +183431,14 @@ func (t *Leave) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Leave) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Leave) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Leave) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeLeaveIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Leave) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeLeaveIntermediateType{IRI: v} } @@ -183526,20 +183542,20 @@ func (t *Leave) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Leave) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Leave) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Leave) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorLeaveIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Leave) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorLeaveIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Leave) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorLeaveIntermediateType{&generatorLeaveIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Leave) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorLeaveIntermediateType{&generatorLeaveIntermediateType{IRI: v}}, t.generator...) } @@ -183651,20 +183667,20 @@ func (t *Leave) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Leave) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Leave) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Leave) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconLeaveIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Leave) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconLeaveIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Leave) PrependIconIRI(v url.URL) { - t.icon = append([]*iconLeaveIntermediateType{&iconLeaveIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Leave) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconLeaveIntermediateType{&iconLeaveIntermediateType{IRI: v}}, t.icon...) } @@ -183706,14 +183722,14 @@ func (t *Leave) HasId() (ok bool) { } // GetId returns the value for id -func (t *Leave) GetId() (v url.URL) { - return *t.id +func (t *Leave) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Leave) SetId(v url.URL) { - t.id = &v +func (t *Leave) SetId(v *url.URL) { + t.id = v } @@ -183815,20 +183831,20 @@ func (t *Leave) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Leave) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Leave) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Leave) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageLeaveIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Leave) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageLeaveIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Leave) PrependImageIRI(v url.URL) { - t.image = append([]*imageLeaveIntermediateType{&imageLeaveIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Leave) PrependImageIRI(v *url.URL) { + t.image = append([]*imageLeaveIntermediateType{&imageLeaveIntermediateType{IRI: v}}, t.image...) } @@ -183940,20 +183956,20 @@ func (t *Leave) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Leave) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Leave) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Leave) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToLeaveIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Leave) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToLeaveIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Leave) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToLeaveIntermediateType{&inReplyToLeaveIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Leave) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToLeaveIntermediateType{&inReplyToLeaveIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -184065,20 +184081,20 @@ func (t *Leave) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Leave) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Leave) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Leave) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationLeaveIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Leave) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationLeaveIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Leave) PrependLocationIRI(v url.URL) { - t.location = append([]*locationLeaveIntermediateType{&locationLeaveIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Leave) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationLeaveIntermediateType{&locationLeaveIntermediateType{IRI: v}}, t.location...) } @@ -184190,20 +184206,20 @@ func (t *Leave) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Leave) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Leave) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Leave) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewLeaveIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Leave) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewLeaveIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Leave) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewLeaveIntermediateType{&previewLeaveIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Leave) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewLeaveIntermediateType{&previewLeaveIntermediateType{IRI: v}}, t.preview...) } @@ -184263,14 +184279,14 @@ func (t *Leave) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Leave) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Leave) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Leave) SetPublishedIRI(v url.URL) { - t.published = &publishedLeaveIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Leave) SetPublishedIRI(v *url.URL) { + t.published = &publishedLeaveIntermediateType{IRI: v} } @@ -184322,14 +184338,14 @@ func (t *Leave) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Leave) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Leave) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Leave) SetRepliesIRI(v url.URL) { - t.replies = &repliesLeaveIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Leave) SetRepliesIRI(v *url.URL) { + t.replies = &repliesLeaveIntermediateType{IRI: v} } @@ -184381,14 +184397,14 @@ func (t *Leave) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Leave) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Leave) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Leave) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeLeaveIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Leave) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeLeaveIntermediateType{IRI: v} } @@ -184492,20 +184508,20 @@ func (t *Leave) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Leave) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Leave) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Leave) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryLeaveIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Leave) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryLeaveIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Leave) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryLeaveIntermediateType{&summaryLeaveIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Leave) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryLeaveIntermediateType{&summaryLeaveIntermediateType{IRI: v}}, t.summary...) } @@ -184652,20 +184668,20 @@ func (t *Leave) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Leave) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Leave) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Leave) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagLeaveIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Leave) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagLeaveIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Leave) PrependTagIRI(v url.URL) { - t.tag = append([]*tagLeaveIntermediateType{&tagLeaveIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Leave) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagLeaveIntermediateType{&tagLeaveIntermediateType{IRI: v}}, t.tag...) } @@ -184757,14 +184773,14 @@ func (t *Leave) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Leave) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Leave) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Leave) SetUpdatedIRI(v url.URL) { - t.updated = &updatedLeaveIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Leave) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedLeaveIntermediateType{IRI: v} } @@ -184804,20 +184820,20 @@ func (t *Leave) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Leave) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Leave) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Leave) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlLeaveIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Leave) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlLeaveIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Leave) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlLeaveIntermediateType{&urlLeaveIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Leave) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlLeaveIntermediateType{&urlLeaveIntermediateType{anyURI: v}}, t.url...) } @@ -184961,20 +184977,20 @@ func (t *Leave) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Leave) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Leave) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Leave) AppendToIRI(v url.URL) { - t.to = append(t.to, &toLeaveIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Leave) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toLeaveIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Leave) PrependToIRI(v url.URL) { - t.to = append([]*toLeaveIntermediateType{&toLeaveIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Leave) PrependToIRI(v *url.URL) { + t.to = append([]*toLeaveIntermediateType{&toLeaveIntermediateType{IRI: v}}, t.to...) } @@ -185086,20 +185102,20 @@ func (t *Leave) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Leave) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Leave) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Leave) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoLeaveIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Leave) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoLeaveIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Leave) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoLeaveIntermediateType{&btoLeaveIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Leave) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoLeaveIntermediateType{&btoLeaveIntermediateType{IRI: v}}, t.bto...) } @@ -185211,20 +185227,20 @@ func (t *Leave) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Leave) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Leave) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Leave) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccLeaveIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Leave) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccLeaveIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Leave) PrependCcIRI(v url.URL) { - t.cc = append([]*ccLeaveIntermediateType{&ccLeaveIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Leave) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccLeaveIntermediateType{&ccLeaveIntermediateType{IRI: v}}, t.cc...) } @@ -185336,20 +185352,20 @@ func (t *Leave) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Leave) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Leave) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Leave) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccLeaveIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Leave) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccLeaveIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Leave) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccLeaveIntermediateType{&bccLeaveIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Leave) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccLeaveIntermediateType{&bccLeaveIntermediateType{IRI: v}}, t.bcc...) } @@ -185409,14 +185425,14 @@ func (t *Leave) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Leave) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Leave) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Leave) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeLeaveIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Leave) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeLeaveIntermediateType{IRI: v} } @@ -185468,14 +185484,14 @@ func (t *Leave) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Leave) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Leave) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Leave) SetDurationIRI(v url.URL) { - t.duration = &durationLeaveIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Leave) SetDurationIRI(v *url.URL) { + t.duration = &durationLeaveIntermediateType{IRI: v} } @@ -185527,14 +185543,14 @@ func (t *Leave) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Leave) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Leave) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Leave) SetSourceIRI(v url.URL) { - t.source = &sourceLeaveIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Leave) SetSourceIRI(v *url.URL) { + t.source = &sourceLeaveIntermediateType{IRI: v} } @@ -185586,14 +185602,14 @@ func (t *Leave) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Leave) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Leave) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Leave) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxLeaveIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Leave) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxLeaveIntermediateType{anyURI: v} } @@ -185645,14 +185661,14 @@ func (t *Leave) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Leave) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Leave) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Leave) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxLeaveIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Leave) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxLeaveIntermediateType{anyURI: v} } @@ -185722,14 +185738,14 @@ func (t *Leave) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Leave) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Leave) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Leave) SetFollowingAnyURI(v url.URL) { - t.following = &followingLeaveIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Leave) SetFollowingAnyURI(v *url.URL) { + t.following = &followingLeaveIntermediateType{anyURI: v} } @@ -185799,14 +185815,14 @@ func (t *Leave) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Leave) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Leave) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Leave) SetFollowersAnyURI(v url.URL) { - t.followers = &followersLeaveIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Leave) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersLeaveIntermediateType{anyURI: v} } @@ -185876,14 +185892,14 @@ func (t *Leave) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Leave) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Leave) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Leave) SetLikedAnyURI(v url.URL) { - t.liked = &likedLeaveIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Leave) SetLikedAnyURI(v *url.URL) { + t.liked = &likedLeaveIntermediateType{anyURI: v} } @@ -185953,14 +185969,14 @@ func (t *Leave) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Leave) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Leave) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Leave) SetLikesAnyURI(v url.URL) { - t.likes = &likesLeaveIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Leave) SetLikesAnyURI(v *url.URL) { + t.likes = &likesLeaveIntermediateType{anyURI: v} } @@ -185994,26 +186010,27 @@ func (t *Leave) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Leave) GetStreams(index int) (v url.URL) { +func (t *Leave) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Leave) AppendStreams(v url.URL) { +func (t *Leave) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Leave) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Leave) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Leave) 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] } @@ -186064,14 +186081,14 @@ func (t *Leave) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Leave) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Leave) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Leave) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameLeaveIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Leave) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameLeaveIntermediateType{IRI: v} } @@ -186158,14 +186175,14 @@ func (t *Leave) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Leave) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Leave) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Leave) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsLeaveIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Leave) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsLeaveIntermediateType{IRI: v} } @@ -186199,14 +186216,14 @@ func (t *Leave) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Leave) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Leave) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Leave) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Leave) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -186238,14 +186255,14 @@ func (t *Leave) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Leave) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Leave) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Leave) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Leave) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -186277,14 +186294,14 @@ func (t *Leave) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Leave) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Leave) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Leave) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Leave) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -186316,14 +186333,14 @@ func (t *Leave) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Leave) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Leave) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Leave) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Leave) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -186355,14 +186372,14 @@ func (t *Leave) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Leave) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Leave) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Leave) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Leave) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -186394,14 +186411,14 @@ func (t *Leave) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Leave) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Leave) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Leave) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Leave) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -186659,7 +186676,7 @@ func (t *Leave) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -186965,7 +186982,7 @@ func (t *Leave) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -186980,7 +186997,7 @@ func (t *Leave) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -186995,7 +187012,7 @@ func (t *Leave) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -187010,7 +187027,7 @@ func (t *Leave) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -187025,7 +187042,7 @@ func (t *Leave) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -187040,7 +187057,7 @@ func (t *Leave) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -188006,7 +188023,7 @@ func (t *Leave) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -188015,7 +188032,7 @@ func (t *Leave) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -188229,7 +188246,7 @@ func (t *actorLeaveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -188297,7 +188314,7 @@ func (t *objectLeaveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -188380,7 +188397,7 @@ func (t *targetLeaveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -188463,7 +188480,7 @@ func (t *resultLeaveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -188546,7 +188563,7 @@ func (t *originLeaveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -188629,7 +188646,7 @@ func (t *instrumentLeaveIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -188683,7 +188700,7 @@ func (t *altitudeLeaveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -188766,7 +188783,7 @@ func (t *attachmentLeaveIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -188849,7 +188866,7 @@ func (t *attributedToLeaveIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -188932,7 +188949,7 @@ func (t *audienceLeaveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -189000,7 +189017,7 @@ func (t *contentLeaveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -189083,7 +189100,7 @@ func (t *contextLeaveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -189151,7 +189168,7 @@ func (t *nameLeaveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -189205,7 +189222,7 @@ func (t *endTimeLeaveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -189288,7 +189305,7 @@ func (t *generatorLeaveIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -189371,7 +189388,7 @@ func (t *iconLeaveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -189454,7 +189471,7 @@ func (t *imageLeaveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -189537,7 +189554,7 @@ func (t *inReplyToLeaveIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -189620,7 +189637,7 @@ func (t *locationLeaveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -189703,7 +189720,7 @@ func (t *previewLeaveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -189757,7 +189774,7 @@ func (t *publishedLeaveIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -189825,7 +189842,7 @@ func (t *repliesLeaveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -189879,7 +189896,7 @@ func (t *startTimeLeaveIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -189947,7 +189964,7 @@ func (t *summaryLeaveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -190030,7 +190047,7 @@ func (t *tagLeaveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -190084,7 +190101,7 @@ func (t *updatedLeaveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -190148,7 +190165,7 @@ func (t *urlLeaveIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlLeaveIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -190235,7 +190252,7 @@ func (t *toLeaveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -190318,7 +190335,7 @@ func (t *btoLeaveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -190401,7 +190418,7 @@ func (t *ccLeaveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -190484,7 +190501,7 @@ func (t *bccLeaveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -190538,7 +190555,7 @@ func (t *mediaTypeLeaveIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -190592,7 +190609,7 @@ func (t *durationLeaveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -190660,7 +190677,7 @@ func (t *sourceLeaveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -190728,7 +190745,7 @@ func (t *inboxLeaveIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -190796,7 +190813,7 @@ func (t *outboxLeaveIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -190879,7 +190896,7 @@ func (t *followingLeaveIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -190962,7 +190979,7 @@ func (t *followersLeaveIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -191045,7 +191062,7 @@ func (t *likedLeaveIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -191128,7 +191145,7 @@ func (t *likesLeaveIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -191182,7 +191199,7 @@ func (t *preferredUsernameLeaveIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -191250,7 +191267,7 @@ func (t *endpointsLeaveIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -191352,7 +191369,7 @@ type Like struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesLikeIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameLikeIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -191450,20 +191467,20 @@ func (t *Like) IsActorIRI(index int) (ok bool) { } // GetActorIRI returns the value safely if IsActorIRI returned true for the specified index -func (t *Like) GetActorIRI(index int) (v url.URL) { - return *t.actor[index].IRI +func (t *Like) GetActorIRI(index int) (v *url.URL) { + return t.actor[index].IRI } -// AppendActorIRI adds to the back of actor a url.URL type -func (t *Like) AppendActorIRI(v url.URL) { - t.actor = append(t.actor, &actorLikeIntermediateType{IRI: &v}) +// AppendActorIRI adds to the back of actor a *url.URL type +func (t *Like) AppendActorIRI(v *url.URL) { + t.actor = append(t.actor, &actorLikeIntermediateType{IRI: v}) } -// PrependActorIRI adds to the front of actor a url.URL type -func (t *Like) PrependActorIRI(v url.URL) { - t.actor = append([]*actorLikeIntermediateType{&actorLikeIntermediateType{IRI: &v}}, t.actor...) +// PrependActorIRI adds to the front of actor a *url.URL type +func (t *Like) PrependActorIRI(v *url.URL) { + t.actor = append([]*actorLikeIntermediateType{&actorLikeIntermediateType{IRI: v}}, t.actor...) } @@ -191543,20 +191560,20 @@ func (t *Like) IsObjectIRI(index int) (ok bool) { } // GetObjectIRI returns the value safely if IsObjectIRI returned true for the specified index -func (t *Like) GetObjectIRI(index int) (v url.URL) { - return *t.object[index].IRI +func (t *Like) GetObjectIRI(index int) (v *url.URL) { + return t.object[index].IRI } -// AppendObjectIRI adds to the back of object a url.URL type -func (t *Like) AppendObjectIRI(v url.URL) { - t.object = append(t.object, &objectLikeIntermediateType{IRI: &v}) +// AppendObjectIRI adds to the back of object a *url.URL type +func (t *Like) AppendObjectIRI(v *url.URL) { + t.object = append(t.object, &objectLikeIntermediateType{IRI: v}) } -// PrependObjectIRI adds to the front of object a url.URL type -func (t *Like) PrependObjectIRI(v url.URL) { - t.object = append([]*objectLikeIntermediateType{&objectLikeIntermediateType{IRI: &v}}, t.object...) +// PrependObjectIRI adds to the front of object a *url.URL type +func (t *Like) PrependObjectIRI(v *url.URL) { + t.object = append([]*objectLikeIntermediateType{&objectLikeIntermediateType{IRI: v}}, t.object...) } @@ -191668,20 +191685,20 @@ func (t *Like) IsTargetIRI(index int) (ok bool) { } // GetTargetIRI returns the value safely if IsTargetIRI returned true for the specified index -func (t *Like) GetTargetIRI(index int) (v url.URL) { - return *t.target[index].IRI +func (t *Like) GetTargetIRI(index int) (v *url.URL) { + return t.target[index].IRI } -// AppendTargetIRI adds to the back of target a url.URL type -func (t *Like) AppendTargetIRI(v url.URL) { - t.target = append(t.target, &targetLikeIntermediateType{IRI: &v}) +// AppendTargetIRI adds to the back of target a *url.URL type +func (t *Like) AppendTargetIRI(v *url.URL) { + t.target = append(t.target, &targetLikeIntermediateType{IRI: v}) } -// PrependTargetIRI adds to the front of target a url.URL type -func (t *Like) PrependTargetIRI(v url.URL) { - t.target = append([]*targetLikeIntermediateType{&targetLikeIntermediateType{IRI: &v}}, t.target...) +// PrependTargetIRI adds to the front of target a *url.URL type +func (t *Like) PrependTargetIRI(v *url.URL) { + t.target = append([]*targetLikeIntermediateType{&targetLikeIntermediateType{IRI: v}}, t.target...) } @@ -191793,20 +191810,20 @@ func (t *Like) IsResultIRI(index int) (ok bool) { } // GetResultIRI returns the value safely if IsResultIRI returned true for the specified index -func (t *Like) GetResultIRI(index int) (v url.URL) { - return *t.result[index].IRI +func (t *Like) GetResultIRI(index int) (v *url.URL) { + return t.result[index].IRI } -// AppendResultIRI adds to the back of result a url.URL type -func (t *Like) AppendResultIRI(v url.URL) { - t.result = append(t.result, &resultLikeIntermediateType{IRI: &v}) +// AppendResultIRI adds to the back of result a *url.URL type +func (t *Like) AppendResultIRI(v *url.URL) { + t.result = append(t.result, &resultLikeIntermediateType{IRI: v}) } -// PrependResultIRI adds to the front of result a url.URL type -func (t *Like) PrependResultIRI(v url.URL) { - t.result = append([]*resultLikeIntermediateType{&resultLikeIntermediateType{IRI: &v}}, t.result...) +// PrependResultIRI adds to the front of result a *url.URL type +func (t *Like) PrependResultIRI(v *url.URL) { + t.result = append([]*resultLikeIntermediateType{&resultLikeIntermediateType{IRI: v}}, t.result...) } @@ -191918,20 +191935,20 @@ func (t *Like) IsOriginIRI(index int) (ok bool) { } // GetOriginIRI returns the value safely if IsOriginIRI returned true for the specified index -func (t *Like) GetOriginIRI(index int) (v url.URL) { - return *t.origin[index].IRI +func (t *Like) GetOriginIRI(index int) (v *url.URL) { + return t.origin[index].IRI } -// AppendOriginIRI adds to the back of origin a url.URL type -func (t *Like) AppendOriginIRI(v url.URL) { - t.origin = append(t.origin, &originLikeIntermediateType{IRI: &v}) +// AppendOriginIRI adds to the back of origin a *url.URL type +func (t *Like) AppendOriginIRI(v *url.URL) { + t.origin = append(t.origin, &originLikeIntermediateType{IRI: v}) } -// PrependOriginIRI adds to the front of origin a url.URL type -func (t *Like) PrependOriginIRI(v url.URL) { - t.origin = append([]*originLikeIntermediateType{&originLikeIntermediateType{IRI: &v}}, t.origin...) +// PrependOriginIRI adds to the front of origin a *url.URL type +func (t *Like) PrependOriginIRI(v *url.URL) { + t.origin = append([]*originLikeIntermediateType{&originLikeIntermediateType{IRI: v}}, t.origin...) } @@ -192043,20 +192060,20 @@ func (t *Like) IsInstrumentIRI(index int) (ok bool) { } // GetInstrumentIRI returns the value safely if IsInstrumentIRI returned true for the specified index -func (t *Like) GetInstrumentIRI(index int) (v url.URL) { - return *t.instrument[index].IRI +func (t *Like) GetInstrumentIRI(index int) (v *url.URL) { + return t.instrument[index].IRI } -// AppendInstrumentIRI adds to the back of instrument a url.URL type -func (t *Like) AppendInstrumentIRI(v url.URL) { - t.instrument = append(t.instrument, &instrumentLikeIntermediateType{IRI: &v}) +// AppendInstrumentIRI adds to the back of instrument a *url.URL type +func (t *Like) AppendInstrumentIRI(v *url.URL) { + t.instrument = append(t.instrument, &instrumentLikeIntermediateType{IRI: v}) } -// PrependInstrumentIRI adds to the front of instrument a url.URL type -func (t *Like) PrependInstrumentIRI(v url.URL) { - t.instrument = append([]*instrumentLikeIntermediateType{&instrumentLikeIntermediateType{IRI: &v}}, t.instrument...) +// PrependInstrumentIRI adds to the front of instrument a *url.URL type +func (t *Like) PrependInstrumentIRI(v *url.URL) { + t.instrument = append([]*instrumentLikeIntermediateType{&instrumentLikeIntermediateType{IRI: v}}, t.instrument...) } @@ -192116,14 +192133,14 @@ func (t *Like) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Like) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Like) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Like) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeLikeIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Like) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeLikeIntermediateType{IRI: v} } @@ -192227,20 +192244,20 @@ func (t *Like) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Like) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Like) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Like) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentLikeIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Like) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentLikeIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Like) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentLikeIntermediateType{&attachmentLikeIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Like) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentLikeIntermediateType{&attachmentLikeIntermediateType{IRI: v}}, t.attachment...) } @@ -192352,20 +192369,20 @@ func (t *Like) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Like) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Like) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Like) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToLikeIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Like) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToLikeIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Like) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToLikeIntermediateType{&attributedToLikeIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Like) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToLikeIntermediateType{&attributedToLikeIntermediateType{IRI: v}}, t.attributedTo...) } @@ -192477,20 +192494,20 @@ func (t *Like) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Like) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Like) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Like) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceLikeIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Like) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceLikeIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Like) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceLikeIntermediateType{&audienceLikeIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Like) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceLikeIntermediateType{&audienceLikeIntermediateType{IRI: v}}, t.audience...) } @@ -192602,20 +192619,20 @@ func (t *Like) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Like) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Like) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Like) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentLikeIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Like) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentLikeIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Like) PrependContentIRI(v url.URL) { - t.content = append([]*contentLikeIntermediateType{&contentLikeIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Like) PrependContentIRI(v *url.URL) { + t.content = append([]*contentLikeIntermediateType{&contentLikeIntermediateType{IRI: v}}, t.content...) } @@ -192762,20 +192779,20 @@ func (t *Like) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Like) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Like) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Like) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextLikeIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Like) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextLikeIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Like) PrependContextIRI(v url.URL) { - t.context = append([]*contextLikeIntermediateType{&contextLikeIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Like) PrependContextIRI(v *url.URL) { + t.context = append([]*contextLikeIntermediateType{&contextLikeIntermediateType{IRI: v}}, t.context...) } @@ -192887,20 +192904,20 @@ func (t *Like) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Like) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Like) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Like) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameLikeIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Like) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameLikeIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Like) PrependNameIRI(v url.URL) { - t.name = append([]*nameLikeIntermediateType{&nameLikeIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Like) PrependNameIRI(v *url.URL) { + t.name = append([]*nameLikeIntermediateType{&nameLikeIntermediateType{IRI: v}}, t.name...) } @@ -192995,14 +193012,14 @@ func (t *Like) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Like) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Like) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Like) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeLikeIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Like) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeLikeIntermediateType{IRI: v} } @@ -193106,20 +193123,20 @@ func (t *Like) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Like) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Like) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Like) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorLikeIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Like) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorLikeIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Like) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorLikeIntermediateType{&generatorLikeIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Like) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorLikeIntermediateType{&generatorLikeIntermediateType{IRI: v}}, t.generator...) } @@ -193231,20 +193248,20 @@ func (t *Like) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Like) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Like) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Like) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconLikeIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Like) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconLikeIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Like) PrependIconIRI(v url.URL) { - t.icon = append([]*iconLikeIntermediateType{&iconLikeIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Like) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconLikeIntermediateType{&iconLikeIntermediateType{IRI: v}}, t.icon...) } @@ -193286,14 +193303,14 @@ func (t *Like) HasId() (ok bool) { } // GetId returns the value for id -func (t *Like) GetId() (v url.URL) { - return *t.id +func (t *Like) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Like) SetId(v url.URL) { - t.id = &v +func (t *Like) SetId(v *url.URL) { + t.id = v } @@ -193395,20 +193412,20 @@ func (t *Like) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Like) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Like) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Like) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageLikeIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Like) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageLikeIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Like) PrependImageIRI(v url.URL) { - t.image = append([]*imageLikeIntermediateType{&imageLikeIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Like) PrependImageIRI(v *url.URL) { + t.image = append([]*imageLikeIntermediateType{&imageLikeIntermediateType{IRI: v}}, t.image...) } @@ -193520,20 +193537,20 @@ func (t *Like) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Like) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Like) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Like) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToLikeIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Like) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToLikeIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Like) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToLikeIntermediateType{&inReplyToLikeIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Like) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToLikeIntermediateType{&inReplyToLikeIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -193645,20 +193662,20 @@ func (t *Like) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Like) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Like) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Like) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationLikeIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Like) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationLikeIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Like) PrependLocationIRI(v url.URL) { - t.location = append([]*locationLikeIntermediateType{&locationLikeIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Like) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationLikeIntermediateType{&locationLikeIntermediateType{IRI: v}}, t.location...) } @@ -193770,20 +193787,20 @@ func (t *Like) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Like) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Like) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Like) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewLikeIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Like) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewLikeIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Like) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewLikeIntermediateType{&previewLikeIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Like) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewLikeIntermediateType{&previewLikeIntermediateType{IRI: v}}, t.preview...) } @@ -193843,14 +193860,14 @@ func (t *Like) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Like) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Like) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Like) SetPublishedIRI(v url.URL) { - t.published = &publishedLikeIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Like) SetPublishedIRI(v *url.URL) { + t.published = &publishedLikeIntermediateType{IRI: v} } @@ -193902,14 +193919,14 @@ func (t *Like) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Like) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Like) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Like) SetRepliesIRI(v url.URL) { - t.replies = &repliesLikeIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Like) SetRepliesIRI(v *url.URL) { + t.replies = &repliesLikeIntermediateType{IRI: v} } @@ -193961,14 +193978,14 @@ func (t *Like) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Like) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Like) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Like) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeLikeIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Like) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeLikeIntermediateType{IRI: v} } @@ -194072,20 +194089,20 @@ func (t *Like) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Like) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Like) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Like) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryLikeIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Like) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryLikeIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Like) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryLikeIntermediateType{&summaryLikeIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Like) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryLikeIntermediateType{&summaryLikeIntermediateType{IRI: v}}, t.summary...) } @@ -194232,20 +194249,20 @@ func (t *Like) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Like) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Like) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Like) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagLikeIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Like) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagLikeIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Like) PrependTagIRI(v url.URL) { - t.tag = append([]*tagLikeIntermediateType{&tagLikeIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Like) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagLikeIntermediateType{&tagLikeIntermediateType{IRI: v}}, t.tag...) } @@ -194337,14 +194354,14 @@ func (t *Like) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Like) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Like) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Like) SetUpdatedIRI(v url.URL) { - t.updated = &updatedLikeIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Like) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedLikeIntermediateType{IRI: v} } @@ -194384,20 +194401,20 @@ func (t *Like) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Like) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Like) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Like) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlLikeIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Like) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlLikeIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Like) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlLikeIntermediateType{&urlLikeIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Like) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlLikeIntermediateType{&urlLikeIntermediateType{anyURI: v}}, t.url...) } @@ -194541,20 +194558,20 @@ func (t *Like) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Like) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Like) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Like) AppendToIRI(v url.URL) { - t.to = append(t.to, &toLikeIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Like) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toLikeIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Like) PrependToIRI(v url.URL) { - t.to = append([]*toLikeIntermediateType{&toLikeIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Like) PrependToIRI(v *url.URL) { + t.to = append([]*toLikeIntermediateType{&toLikeIntermediateType{IRI: v}}, t.to...) } @@ -194666,20 +194683,20 @@ func (t *Like) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Like) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Like) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Like) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoLikeIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Like) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoLikeIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Like) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoLikeIntermediateType{&btoLikeIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Like) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoLikeIntermediateType{&btoLikeIntermediateType{IRI: v}}, t.bto...) } @@ -194791,20 +194808,20 @@ func (t *Like) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Like) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Like) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Like) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccLikeIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Like) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccLikeIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Like) PrependCcIRI(v url.URL) { - t.cc = append([]*ccLikeIntermediateType{&ccLikeIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Like) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccLikeIntermediateType{&ccLikeIntermediateType{IRI: v}}, t.cc...) } @@ -194916,20 +194933,20 @@ func (t *Like) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Like) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Like) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Like) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccLikeIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Like) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccLikeIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Like) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccLikeIntermediateType{&bccLikeIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Like) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccLikeIntermediateType{&bccLikeIntermediateType{IRI: v}}, t.bcc...) } @@ -194989,14 +195006,14 @@ func (t *Like) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Like) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Like) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Like) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeLikeIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Like) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeLikeIntermediateType{IRI: v} } @@ -195048,14 +195065,14 @@ func (t *Like) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Like) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Like) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Like) SetDurationIRI(v url.URL) { - t.duration = &durationLikeIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Like) SetDurationIRI(v *url.URL) { + t.duration = &durationLikeIntermediateType{IRI: v} } @@ -195107,14 +195124,14 @@ func (t *Like) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Like) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Like) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Like) SetSourceIRI(v url.URL) { - t.source = &sourceLikeIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Like) SetSourceIRI(v *url.URL) { + t.source = &sourceLikeIntermediateType{IRI: v} } @@ -195166,14 +195183,14 @@ func (t *Like) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Like) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Like) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Like) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxLikeIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Like) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxLikeIntermediateType{anyURI: v} } @@ -195225,14 +195242,14 @@ func (t *Like) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Like) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Like) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Like) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxLikeIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Like) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxLikeIntermediateType{anyURI: v} } @@ -195302,14 +195319,14 @@ func (t *Like) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Like) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Like) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Like) SetFollowingAnyURI(v url.URL) { - t.following = &followingLikeIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Like) SetFollowingAnyURI(v *url.URL) { + t.following = &followingLikeIntermediateType{anyURI: v} } @@ -195379,14 +195396,14 @@ func (t *Like) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Like) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Like) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Like) SetFollowersAnyURI(v url.URL) { - t.followers = &followersLikeIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Like) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersLikeIntermediateType{anyURI: v} } @@ -195456,14 +195473,14 @@ func (t *Like) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Like) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Like) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Like) SetLikedAnyURI(v url.URL) { - t.liked = &likedLikeIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Like) SetLikedAnyURI(v *url.URL) { + t.liked = &likedLikeIntermediateType{anyURI: v} } @@ -195533,14 +195550,14 @@ func (t *Like) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Like) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Like) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Like) SetLikesAnyURI(v url.URL) { - t.likes = &likesLikeIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Like) SetLikesAnyURI(v *url.URL) { + t.likes = &likesLikeIntermediateType{anyURI: v} } @@ -195574,26 +195591,27 @@ func (t *Like) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Like) GetStreams(index int) (v url.URL) { +func (t *Like) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Like) AppendStreams(v url.URL) { +func (t *Like) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Like) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Like) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Like) 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] } @@ -195644,14 +195662,14 @@ func (t *Like) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Like) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Like) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Like) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameLikeIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Like) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameLikeIntermediateType{IRI: v} } @@ -195738,14 +195756,14 @@ func (t *Like) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Like) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Like) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Like) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsLikeIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Like) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsLikeIntermediateType{IRI: v} } @@ -195779,14 +195797,14 @@ func (t *Like) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Like) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Like) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Like) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Like) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -195818,14 +195836,14 @@ func (t *Like) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Like) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Like) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Like) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Like) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -195857,14 +195875,14 @@ func (t *Like) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Like) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Like) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Like) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Like) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -195896,14 +195914,14 @@ func (t *Like) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Like) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Like) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Like) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Like) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -195935,14 +195953,14 @@ func (t *Like) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Like) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Like) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Like) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Like) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -195974,14 +195992,14 @@ func (t *Like) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Like) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Like) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Like) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Like) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -196239,7 +196257,7 @@ func (t *Like) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -196545,7 +196563,7 @@ func (t *Like) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -196560,7 +196578,7 @@ func (t *Like) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -196575,7 +196593,7 @@ func (t *Like) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -196590,7 +196608,7 @@ func (t *Like) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -196605,7 +196623,7 @@ func (t *Like) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -196620,7 +196638,7 @@ func (t *Like) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -197586,7 +197604,7 @@ func (t *Like) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -197595,7 +197613,7 @@ func (t *Like) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -197809,7 +197827,7 @@ func (t *actorLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -197877,7 +197895,7 @@ func (t *objectLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -197960,7 +197978,7 @@ func (t *targetLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -198043,7 +198061,7 @@ func (t *resultLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -198126,7 +198144,7 @@ func (t *originLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -198209,7 +198227,7 @@ func (t *instrumentLikeIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -198263,7 +198281,7 @@ func (t *altitudeLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -198346,7 +198364,7 @@ func (t *attachmentLikeIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -198429,7 +198447,7 @@ func (t *attributedToLikeIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -198512,7 +198530,7 @@ func (t *audienceLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -198580,7 +198598,7 @@ func (t *contentLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -198663,7 +198681,7 @@ func (t *contextLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -198731,7 +198749,7 @@ func (t *nameLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -198785,7 +198803,7 @@ func (t *endTimeLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -198868,7 +198886,7 @@ func (t *generatorLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -198951,7 +198969,7 @@ func (t *iconLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -199034,7 +199052,7 @@ func (t *imageLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -199117,7 +199135,7 @@ func (t *inReplyToLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -199200,7 +199218,7 @@ func (t *locationLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -199283,7 +199301,7 @@ func (t *previewLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -199337,7 +199355,7 @@ func (t *publishedLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -199405,7 +199423,7 @@ func (t *repliesLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -199459,7 +199477,7 @@ func (t *startTimeLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -199527,7 +199545,7 @@ func (t *summaryLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -199610,7 +199628,7 @@ func (t *tagLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -199664,7 +199682,7 @@ func (t *updatedLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -199728,7 +199746,7 @@ func (t *urlLikeIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlLikeIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -199815,7 +199833,7 @@ func (t *toLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -199898,7 +199916,7 @@ func (t *btoLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -199981,7 +199999,7 @@ func (t *ccLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -200064,7 +200082,7 @@ func (t *bccLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -200118,7 +200136,7 @@ func (t *mediaTypeLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -200172,7 +200190,7 @@ func (t *durationLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -200240,7 +200258,7 @@ func (t *sourceLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -200308,7 +200326,7 @@ func (t *inboxLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -200376,7 +200394,7 @@ func (t *outboxLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -200459,7 +200477,7 @@ func (t *followingLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -200542,7 +200560,7 @@ func (t *followersLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -200625,7 +200643,7 @@ func (t *likedLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -200708,7 +200726,7 @@ func (t *likesLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -200762,7 +200780,7 @@ func (t *preferredUsernameLikeIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -200830,7 +200848,7 @@ func (t *endpointsLikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -200932,7 +200950,7 @@ type Offer struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesOfferIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameOfferIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -201030,20 +201048,20 @@ func (t *Offer) IsActorIRI(index int) (ok bool) { } // GetActorIRI returns the value safely if IsActorIRI returned true for the specified index -func (t *Offer) GetActorIRI(index int) (v url.URL) { - return *t.actor[index].IRI +func (t *Offer) GetActorIRI(index int) (v *url.URL) { + return t.actor[index].IRI } -// AppendActorIRI adds to the back of actor a url.URL type -func (t *Offer) AppendActorIRI(v url.URL) { - t.actor = append(t.actor, &actorOfferIntermediateType{IRI: &v}) +// AppendActorIRI adds to the back of actor a *url.URL type +func (t *Offer) AppendActorIRI(v *url.URL) { + t.actor = append(t.actor, &actorOfferIntermediateType{IRI: v}) } -// PrependActorIRI adds to the front of actor a url.URL type -func (t *Offer) PrependActorIRI(v url.URL) { - t.actor = append([]*actorOfferIntermediateType{&actorOfferIntermediateType{IRI: &v}}, t.actor...) +// PrependActorIRI adds to the front of actor a *url.URL type +func (t *Offer) PrependActorIRI(v *url.URL) { + t.actor = append([]*actorOfferIntermediateType{&actorOfferIntermediateType{IRI: v}}, t.actor...) } @@ -201123,20 +201141,20 @@ func (t *Offer) IsObjectIRI(index int) (ok bool) { } // GetObjectIRI returns the value safely if IsObjectIRI returned true for the specified index -func (t *Offer) GetObjectIRI(index int) (v url.URL) { - return *t.object[index].IRI +func (t *Offer) GetObjectIRI(index int) (v *url.URL) { + return t.object[index].IRI } -// AppendObjectIRI adds to the back of object a url.URL type -func (t *Offer) AppendObjectIRI(v url.URL) { - t.object = append(t.object, &objectOfferIntermediateType{IRI: &v}) +// AppendObjectIRI adds to the back of object a *url.URL type +func (t *Offer) AppendObjectIRI(v *url.URL) { + t.object = append(t.object, &objectOfferIntermediateType{IRI: v}) } -// PrependObjectIRI adds to the front of object a url.URL type -func (t *Offer) PrependObjectIRI(v url.URL) { - t.object = append([]*objectOfferIntermediateType{&objectOfferIntermediateType{IRI: &v}}, t.object...) +// PrependObjectIRI adds to the front of object a *url.URL type +func (t *Offer) PrependObjectIRI(v *url.URL) { + t.object = append([]*objectOfferIntermediateType{&objectOfferIntermediateType{IRI: v}}, t.object...) } @@ -201248,20 +201266,20 @@ func (t *Offer) IsTargetIRI(index int) (ok bool) { } // GetTargetIRI returns the value safely if IsTargetIRI returned true for the specified index -func (t *Offer) GetTargetIRI(index int) (v url.URL) { - return *t.target[index].IRI +func (t *Offer) GetTargetIRI(index int) (v *url.URL) { + return t.target[index].IRI } -// AppendTargetIRI adds to the back of target a url.URL type -func (t *Offer) AppendTargetIRI(v url.URL) { - t.target = append(t.target, &targetOfferIntermediateType{IRI: &v}) +// AppendTargetIRI adds to the back of target a *url.URL type +func (t *Offer) AppendTargetIRI(v *url.URL) { + t.target = append(t.target, &targetOfferIntermediateType{IRI: v}) } -// PrependTargetIRI adds to the front of target a url.URL type -func (t *Offer) PrependTargetIRI(v url.URL) { - t.target = append([]*targetOfferIntermediateType{&targetOfferIntermediateType{IRI: &v}}, t.target...) +// PrependTargetIRI adds to the front of target a *url.URL type +func (t *Offer) PrependTargetIRI(v *url.URL) { + t.target = append([]*targetOfferIntermediateType{&targetOfferIntermediateType{IRI: v}}, t.target...) } @@ -201373,20 +201391,20 @@ func (t *Offer) IsResultIRI(index int) (ok bool) { } // GetResultIRI returns the value safely if IsResultIRI returned true for the specified index -func (t *Offer) GetResultIRI(index int) (v url.URL) { - return *t.result[index].IRI +func (t *Offer) GetResultIRI(index int) (v *url.URL) { + return t.result[index].IRI } -// AppendResultIRI adds to the back of result a url.URL type -func (t *Offer) AppendResultIRI(v url.URL) { - t.result = append(t.result, &resultOfferIntermediateType{IRI: &v}) +// AppendResultIRI adds to the back of result a *url.URL type +func (t *Offer) AppendResultIRI(v *url.URL) { + t.result = append(t.result, &resultOfferIntermediateType{IRI: v}) } -// PrependResultIRI adds to the front of result a url.URL type -func (t *Offer) PrependResultIRI(v url.URL) { - t.result = append([]*resultOfferIntermediateType{&resultOfferIntermediateType{IRI: &v}}, t.result...) +// PrependResultIRI adds to the front of result a *url.URL type +func (t *Offer) PrependResultIRI(v *url.URL) { + t.result = append([]*resultOfferIntermediateType{&resultOfferIntermediateType{IRI: v}}, t.result...) } @@ -201498,20 +201516,20 @@ func (t *Offer) IsOriginIRI(index int) (ok bool) { } // GetOriginIRI returns the value safely if IsOriginIRI returned true for the specified index -func (t *Offer) GetOriginIRI(index int) (v url.URL) { - return *t.origin[index].IRI +func (t *Offer) GetOriginIRI(index int) (v *url.URL) { + return t.origin[index].IRI } -// AppendOriginIRI adds to the back of origin a url.URL type -func (t *Offer) AppendOriginIRI(v url.URL) { - t.origin = append(t.origin, &originOfferIntermediateType{IRI: &v}) +// AppendOriginIRI adds to the back of origin a *url.URL type +func (t *Offer) AppendOriginIRI(v *url.URL) { + t.origin = append(t.origin, &originOfferIntermediateType{IRI: v}) } -// PrependOriginIRI adds to the front of origin a url.URL type -func (t *Offer) PrependOriginIRI(v url.URL) { - t.origin = append([]*originOfferIntermediateType{&originOfferIntermediateType{IRI: &v}}, t.origin...) +// PrependOriginIRI adds to the front of origin a *url.URL type +func (t *Offer) PrependOriginIRI(v *url.URL) { + t.origin = append([]*originOfferIntermediateType{&originOfferIntermediateType{IRI: v}}, t.origin...) } @@ -201623,20 +201641,20 @@ func (t *Offer) IsInstrumentIRI(index int) (ok bool) { } // GetInstrumentIRI returns the value safely if IsInstrumentIRI returned true for the specified index -func (t *Offer) GetInstrumentIRI(index int) (v url.URL) { - return *t.instrument[index].IRI +func (t *Offer) GetInstrumentIRI(index int) (v *url.URL) { + return t.instrument[index].IRI } -// AppendInstrumentIRI adds to the back of instrument a url.URL type -func (t *Offer) AppendInstrumentIRI(v url.URL) { - t.instrument = append(t.instrument, &instrumentOfferIntermediateType{IRI: &v}) +// AppendInstrumentIRI adds to the back of instrument a *url.URL type +func (t *Offer) AppendInstrumentIRI(v *url.URL) { + t.instrument = append(t.instrument, &instrumentOfferIntermediateType{IRI: v}) } -// PrependInstrumentIRI adds to the front of instrument a url.URL type -func (t *Offer) PrependInstrumentIRI(v url.URL) { - t.instrument = append([]*instrumentOfferIntermediateType{&instrumentOfferIntermediateType{IRI: &v}}, t.instrument...) +// PrependInstrumentIRI adds to the front of instrument a *url.URL type +func (t *Offer) PrependInstrumentIRI(v *url.URL) { + t.instrument = append([]*instrumentOfferIntermediateType{&instrumentOfferIntermediateType{IRI: v}}, t.instrument...) } @@ -201696,14 +201714,14 @@ func (t *Offer) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Offer) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Offer) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Offer) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeOfferIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Offer) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeOfferIntermediateType{IRI: v} } @@ -201807,20 +201825,20 @@ func (t *Offer) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Offer) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Offer) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Offer) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentOfferIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Offer) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentOfferIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Offer) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentOfferIntermediateType{&attachmentOfferIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Offer) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentOfferIntermediateType{&attachmentOfferIntermediateType{IRI: v}}, t.attachment...) } @@ -201932,20 +201950,20 @@ func (t *Offer) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Offer) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Offer) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Offer) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToOfferIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Offer) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToOfferIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Offer) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToOfferIntermediateType{&attributedToOfferIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Offer) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToOfferIntermediateType{&attributedToOfferIntermediateType{IRI: v}}, t.attributedTo...) } @@ -202057,20 +202075,20 @@ func (t *Offer) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Offer) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Offer) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Offer) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceOfferIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Offer) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceOfferIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Offer) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceOfferIntermediateType{&audienceOfferIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Offer) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceOfferIntermediateType{&audienceOfferIntermediateType{IRI: v}}, t.audience...) } @@ -202182,20 +202200,20 @@ func (t *Offer) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Offer) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Offer) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Offer) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentOfferIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Offer) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentOfferIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Offer) PrependContentIRI(v url.URL) { - t.content = append([]*contentOfferIntermediateType{&contentOfferIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Offer) PrependContentIRI(v *url.URL) { + t.content = append([]*contentOfferIntermediateType{&contentOfferIntermediateType{IRI: v}}, t.content...) } @@ -202342,20 +202360,20 @@ func (t *Offer) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Offer) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Offer) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Offer) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextOfferIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Offer) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextOfferIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Offer) PrependContextIRI(v url.URL) { - t.context = append([]*contextOfferIntermediateType{&contextOfferIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Offer) PrependContextIRI(v *url.URL) { + t.context = append([]*contextOfferIntermediateType{&contextOfferIntermediateType{IRI: v}}, t.context...) } @@ -202467,20 +202485,20 @@ func (t *Offer) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Offer) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Offer) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Offer) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameOfferIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Offer) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameOfferIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Offer) PrependNameIRI(v url.URL) { - t.name = append([]*nameOfferIntermediateType{&nameOfferIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Offer) PrependNameIRI(v *url.URL) { + t.name = append([]*nameOfferIntermediateType{&nameOfferIntermediateType{IRI: v}}, t.name...) } @@ -202575,14 +202593,14 @@ func (t *Offer) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Offer) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Offer) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Offer) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeOfferIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Offer) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeOfferIntermediateType{IRI: v} } @@ -202686,20 +202704,20 @@ func (t *Offer) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Offer) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Offer) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Offer) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorOfferIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Offer) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorOfferIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Offer) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorOfferIntermediateType{&generatorOfferIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Offer) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorOfferIntermediateType{&generatorOfferIntermediateType{IRI: v}}, t.generator...) } @@ -202811,20 +202829,20 @@ func (t *Offer) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Offer) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Offer) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Offer) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconOfferIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Offer) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconOfferIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Offer) PrependIconIRI(v url.URL) { - t.icon = append([]*iconOfferIntermediateType{&iconOfferIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Offer) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconOfferIntermediateType{&iconOfferIntermediateType{IRI: v}}, t.icon...) } @@ -202866,14 +202884,14 @@ func (t *Offer) HasId() (ok bool) { } // GetId returns the value for id -func (t *Offer) GetId() (v url.URL) { - return *t.id +func (t *Offer) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Offer) SetId(v url.URL) { - t.id = &v +func (t *Offer) SetId(v *url.URL) { + t.id = v } @@ -202975,20 +202993,20 @@ func (t *Offer) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Offer) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Offer) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Offer) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageOfferIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Offer) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageOfferIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Offer) PrependImageIRI(v url.URL) { - t.image = append([]*imageOfferIntermediateType{&imageOfferIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Offer) PrependImageIRI(v *url.URL) { + t.image = append([]*imageOfferIntermediateType{&imageOfferIntermediateType{IRI: v}}, t.image...) } @@ -203100,20 +203118,20 @@ func (t *Offer) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Offer) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Offer) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Offer) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToOfferIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Offer) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToOfferIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Offer) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToOfferIntermediateType{&inReplyToOfferIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Offer) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToOfferIntermediateType{&inReplyToOfferIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -203225,20 +203243,20 @@ func (t *Offer) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Offer) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Offer) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Offer) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationOfferIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Offer) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationOfferIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Offer) PrependLocationIRI(v url.URL) { - t.location = append([]*locationOfferIntermediateType{&locationOfferIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Offer) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationOfferIntermediateType{&locationOfferIntermediateType{IRI: v}}, t.location...) } @@ -203350,20 +203368,20 @@ func (t *Offer) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Offer) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Offer) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Offer) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewOfferIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Offer) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewOfferIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Offer) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewOfferIntermediateType{&previewOfferIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Offer) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewOfferIntermediateType{&previewOfferIntermediateType{IRI: v}}, t.preview...) } @@ -203423,14 +203441,14 @@ func (t *Offer) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Offer) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Offer) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Offer) SetPublishedIRI(v url.URL) { - t.published = &publishedOfferIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Offer) SetPublishedIRI(v *url.URL) { + t.published = &publishedOfferIntermediateType{IRI: v} } @@ -203482,14 +203500,14 @@ func (t *Offer) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Offer) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Offer) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Offer) SetRepliesIRI(v url.URL) { - t.replies = &repliesOfferIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Offer) SetRepliesIRI(v *url.URL) { + t.replies = &repliesOfferIntermediateType{IRI: v} } @@ -203541,14 +203559,14 @@ func (t *Offer) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Offer) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Offer) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Offer) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeOfferIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Offer) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeOfferIntermediateType{IRI: v} } @@ -203652,20 +203670,20 @@ func (t *Offer) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Offer) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Offer) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Offer) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryOfferIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Offer) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryOfferIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Offer) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryOfferIntermediateType{&summaryOfferIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Offer) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryOfferIntermediateType{&summaryOfferIntermediateType{IRI: v}}, t.summary...) } @@ -203812,20 +203830,20 @@ func (t *Offer) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Offer) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Offer) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Offer) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagOfferIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Offer) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagOfferIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Offer) PrependTagIRI(v url.URL) { - t.tag = append([]*tagOfferIntermediateType{&tagOfferIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Offer) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagOfferIntermediateType{&tagOfferIntermediateType{IRI: v}}, t.tag...) } @@ -203917,14 +203935,14 @@ func (t *Offer) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Offer) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Offer) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Offer) SetUpdatedIRI(v url.URL) { - t.updated = &updatedOfferIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Offer) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedOfferIntermediateType{IRI: v} } @@ -203964,20 +203982,20 @@ func (t *Offer) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Offer) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Offer) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Offer) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlOfferIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Offer) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlOfferIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Offer) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlOfferIntermediateType{&urlOfferIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Offer) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlOfferIntermediateType{&urlOfferIntermediateType{anyURI: v}}, t.url...) } @@ -204121,20 +204139,20 @@ func (t *Offer) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Offer) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Offer) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Offer) AppendToIRI(v url.URL) { - t.to = append(t.to, &toOfferIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Offer) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toOfferIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Offer) PrependToIRI(v url.URL) { - t.to = append([]*toOfferIntermediateType{&toOfferIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Offer) PrependToIRI(v *url.URL) { + t.to = append([]*toOfferIntermediateType{&toOfferIntermediateType{IRI: v}}, t.to...) } @@ -204246,20 +204264,20 @@ func (t *Offer) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Offer) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Offer) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Offer) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoOfferIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Offer) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoOfferIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Offer) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoOfferIntermediateType{&btoOfferIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Offer) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoOfferIntermediateType{&btoOfferIntermediateType{IRI: v}}, t.bto...) } @@ -204371,20 +204389,20 @@ func (t *Offer) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Offer) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Offer) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Offer) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccOfferIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Offer) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccOfferIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Offer) PrependCcIRI(v url.URL) { - t.cc = append([]*ccOfferIntermediateType{&ccOfferIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Offer) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccOfferIntermediateType{&ccOfferIntermediateType{IRI: v}}, t.cc...) } @@ -204496,20 +204514,20 @@ func (t *Offer) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Offer) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Offer) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Offer) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccOfferIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Offer) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccOfferIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Offer) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccOfferIntermediateType{&bccOfferIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Offer) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccOfferIntermediateType{&bccOfferIntermediateType{IRI: v}}, t.bcc...) } @@ -204569,14 +204587,14 @@ func (t *Offer) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Offer) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Offer) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Offer) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeOfferIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Offer) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeOfferIntermediateType{IRI: v} } @@ -204628,14 +204646,14 @@ func (t *Offer) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Offer) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Offer) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Offer) SetDurationIRI(v url.URL) { - t.duration = &durationOfferIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Offer) SetDurationIRI(v *url.URL) { + t.duration = &durationOfferIntermediateType{IRI: v} } @@ -204687,14 +204705,14 @@ func (t *Offer) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Offer) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Offer) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Offer) SetSourceIRI(v url.URL) { - t.source = &sourceOfferIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Offer) SetSourceIRI(v *url.URL) { + t.source = &sourceOfferIntermediateType{IRI: v} } @@ -204746,14 +204764,14 @@ func (t *Offer) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Offer) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Offer) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Offer) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxOfferIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Offer) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxOfferIntermediateType{anyURI: v} } @@ -204805,14 +204823,14 @@ func (t *Offer) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Offer) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Offer) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Offer) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxOfferIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Offer) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxOfferIntermediateType{anyURI: v} } @@ -204882,14 +204900,14 @@ func (t *Offer) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Offer) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Offer) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Offer) SetFollowingAnyURI(v url.URL) { - t.following = &followingOfferIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Offer) SetFollowingAnyURI(v *url.URL) { + t.following = &followingOfferIntermediateType{anyURI: v} } @@ -204959,14 +204977,14 @@ func (t *Offer) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Offer) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Offer) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Offer) SetFollowersAnyURI(v url.URL) { - t.followers = &followersOfferIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Offer) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersOfferIntermediateType{anyURI: v} } @@ -205036,14 +205054,14 @@ func (t *Offer) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Offer) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Offer) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Offer) SetLikedAnyURI(v url.URL) { - t.liked = &likedOfferIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Offer) SetLikedAnyURI(v *url.URL) { + t.liked = &likedOfferIntermediateType{anyURI: v} } @@ -205113,14 +205131,14 @@ func (t *Offer) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Offer) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Offer) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Offer) SetLikesAnyURI(v url.URL) { - t.likes = &likesOfferIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Offer) SetLikesAnyURI(v *url.URL) { + t.likes = &likesOfferIntermediateType{anyURI: v} } @@ -205154,26 +205172,27 @@ func (t *Offer) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Offer) GetStreams(index int) (v url.URL) { +func (t *Offer) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Offer) AppendStreams(v url.URL) { +func (t *Offer) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Offer) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Offer) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Offer) 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] } @@ -205224,14 +205243,14 @@ func (t *Offer) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Offer) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Offer) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Offer) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameOfferIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Offer) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameOfferIntermediateType{IRI: v} } @@ -205318,14 +205337,14 @@ func (t *Offer) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Offer) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Offer) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Offer) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsOfferIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Offer) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsOfferIntermediateType{IRI: v} } @@ -205359,14 +205378,14 @@ func (t *Offer) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Offer) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Offer) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Offer) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Offer) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -205398,14 +205417,14 @@ func (t *Offer) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Offer) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Offer) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Offer) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Offer) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -205437,14 +205456,14 @@ func (t *Offer) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Offer) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Offer) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Offer) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Offer) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -205476,14 +205495,14 @@ func (t *Offer) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Offer) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Offer) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Offer) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Offer) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -205515,14 +205534,14 @@ func (t *Offer) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Offer) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Offer) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Offer) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Offer) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -205554,14 +205573,14 @@ func (t *Offer) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Offer) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Offer) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Offer) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Offer) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -205819,7 +205838,7 @@ func (t *Offer) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -206125,7 +206144,7 @@ func (t *Offer) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -206140,7 +206159,7 @@ func (t *Offer) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -206155,7 +206174,7 @@ func (t *Offer) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -206170,7 +206189,7 @@ func (t *Offer) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -206185,7 +206204,7 @@ func (t *Offer) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -206200,7 +206219,7 @@ func (t *Offer) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -207166,7 +207185,7 @@ func (t *Offer) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -207175,7 +207194,7 @@ func (t *Offer) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -207389,7 +207408,7 @@ func (t *actorOfferIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -207457,7 +207476,7 @@ func (t *objectOfferIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -207540,7 +207559,7 @@ func (t *targetOfferIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -207623,7 +207642,7 @@ func (t *resultOfferIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -207706,7 +207725,7 @@ func (t *originOfferIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -207789,7 +207808,7 @@ func (t *instrumentOfferIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -207843,7 +207862,7 @@ func (t *altitudeOfferIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -207926,7 +207945,7 @@ func (t *attachmentOfferIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -208009,7 +208028,7 @@ func (t *attributedToOfferIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -208092,7 +208111,7 @@ func (t *audienceOfferIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -208160,7 +208179,7 @@ func (t *contentOfferIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -208243,7 +208262,7 @@ func (t *contextOfferIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -208311,7 +208330,7 @@ func (t *nameOfferIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -208365,7 +208384,7 @@ func (t *endTimeOfferIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -208448,7 +208467,7 @@ func (t *generatorOfferIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -208531,7 +208550,7 @@ func (t *iconOfferIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -208614,7 +208633,7 @@ func (t *imageOfferIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -208697,7 +208716,7 @@ func (t *inReplyToOfferIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -208780,7 +208799,7 @@ func (t *locationOfferIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -208863,7 +208882,7 @@ func (t *previewOfferIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -208917,7 +208936,7 @@ func (t *publishedOfferIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -208985,7 +209004,7 @@ func (t *repliesOfferIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -209039,7 +209058,7 @@ func (t *startTimeOfferIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -209107,7 +209126,7 @@ func (t *summaryOfferIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -209190,7 +209209,7 @@ func (t *tagOfferIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -209244,7 +209263,7 @@ func (t *updatedOfferIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -209308,7 +209327,7 @@ func (t *urlOfferIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlOfferIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -209395,7 +209414,7 @@ func (t *toOfferIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -209478,7 +209497,7 @@ func (t *btoOfferIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -209561,7 +209580,7 @@ func (t *ccOfferIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -209644,7 +209663,7 @@ func (t *bccOfferIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -209698,7 +209717,7 @@ func (t *mediaTypeOfferIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -209752,7 +209771,7 @@ func (t *durationOfferIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -209820,7 +209839,7 @@ func (t *sourceOfferIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -209888,7 +209907,7 @@ func (t *inboxOfferIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -209956,7 +209975,7 @@ func (t *outboxOfferIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -210039,7 +210058,7 @@ func (t *followingOfferIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -210122,7 +210141,7 @@ func (t *followersOfferIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -210205,7 +210224,7 @@ func (t *likedOfferIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -210288,7 +210307,7 @@ func (t *likesOfferIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -210342,7 +210361,7 @@ func (t *preferredUsernameOfferIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -210410,7 +210429,7 @@ func (t *endpointsOfferIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -210512,7 +210531,7 @@ type Invite struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesInviteIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameInviteIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -210610,20 +210629,20 @@ func (t *Invite) IsActorIRI(index int) (ok bool) { } // GetActorIRI returns the value safely if IsActorIRI returned true for the specified index -func (t *Invite) GetActorIRI(index int) (v url.URL) { - return *t.actor[index].IRI +func (t *Invite) GetActorIRI(index int) (v *url.URL) { + return t.actor[index].IRI } -// AppendActorIRI adds to the back of actor a url.URL type -func (t *Invite) AppendActorIRI(v url.URL) { - t.actor = append(t.actor, &actorInviteIntermediateType{IRI: &v}) +// AppendActorIRI adds to the back of actor a *url.URL type +func (t *Invite) AppendActorIRI(v *url.URL) { + t.actor = append(t.actor, &actorInviteIntermediateType{IRI: v}) } -// PrependActorIRI adds to the front of actor a url.URL type -func (t *Invite) PrependActorIRI(v url.URL) { - t.actor = append([]*actorInviteIntermediateType{&actorInviteIntermediateType{IRI: &v}}, t.actor...) +// PrependActorIRI adds to the front of actor a *url.URL type +func (t *Invite) PrependActorIRI(v *url.URL) { + t.actor = append([]*actorInviteIntermediateType{&actorInviteIntermediateType{IRI: v}}, t.actor...) } @@ -210703,20 +210722,20 @@ func (t *Invite) IsObjectIRI(index int) (ok bool) { } // GetObjectIRI returns the value safely if IsObjectIRI returned true for the specified index -func (t *Invite) GetObjectIRI(index int) (v url.URL) { - return *t.object[index].IRI +func (t *Invite) GetObjectIRI(index int) (v *url.URL) { + return t.object[index].IRI } -// AppendObjectIRI adds to the back of object a url.URL type -func (t *Invite) AppendObjectIRI(v url.URL) { - t.object = append(t.object, &objectInviteIntermediateType{IRI: &v}) +// AppendObjectIRI adds to the back of object a *url.URL type +func (t *Invite) AppendObjectIRI(v *url.URL) { + t.object = append(t.object, &objectInviteIntermediateType{IRI: v}) } -// PrependObjectIRI adds to the front of object a url.URL type -func (t *Invite) PrependObjectIRI(v url.URL) { - t.object = append([]*objectInviteIntermediateType{&objectInviteIntermediateType{IRI: &v}}, t.object...) +// PrependObjectIRI adds to the front of object a *url.URL type +func (t *Invite) PrependObjectIRI(v *url.URL) { + t.object = append([]*objectInviteIntermediateType{&objectInviteIntermediateType{IRI: v}}, t.object...) } @@ -210828,20 +210847,20 @@ func (t *Invite) IsTargetIRI(index int) (ok bool) { } // GetTargetIRI returns the value safely if IsTargetIRI returned true for the specified index -func (t *Invite) GetTargetIRI(index int) (v url.URL) { - return *t.target[index].IRI +func (t *Invite) GetTargetIRI(index int) (v *url.URL) { + return t.target[index].IRI } -// AppendTargetIRI adds to the back of target a url.URL type -func (t *Invite) AppendTargetIRI(v url.URL) { - t.target = append(t.target, &targetInviteIntermediateType{IRI: &v}) +// AppendTargetIRI adds to the back of target a *url.URL type +func (t *Invite) AppendTargetIRI(v *url.URL) { + t.target = append(t.target, &targetInviteIntermediateType{IRI: v}) } -// PrependTargetIRI adds to the front of target a url.URL type -func (t *Invite) PrependTargetIRI(v url.URL) { - t.target = append([]*targetInviteIntermediateType{&targetInviteIntermediateType{IRI: &v}}, t.target...) +// PrependTargetIRI adds to the front of target a *url.URL type +func (t *Invite) PrependTargetIRI(v *url.URL) { + t.target = append([]*targetInviteIntermediateType{&targetInviteIntermediateType{IRI: v}}, t.target...) } @@ -210953,20 +210972,20 @@ func (t *Invite) IsResultIRI(index int) (ok bool) { } // GetResultIRI returns the value safely if IsResultIRI returned true for the specified index -func (t *Invite) GetResultIRI(index int) (v url.URL) { - return *t.result[index].IRI +func (t *Invite) GetResultIRI(index int) (v *url.URL) { + return t.result[index].IRI } -// AppendResultIRI adds to the back of result a url.URL type -func (t *Invite) AppendResultIRI(v url.URL) { - t.result = append(t.result, &resultInviteIntermediateType{IRI: &v}) +// AppendResultIRI adds to the back of result a *url.URL type +func (t *Invite) AppendResultIRI(v *url.URL) { + t.result = append(t.result, &resultInviteIntermediateType{IRI: v}) } -// PrependResultIRI adds to the front of result a url.URL type -func (t *Invite) PrependResultIRI(v url.URL) { - t.result = append([]*resultInviteIntermediateType{&resultInviteIntermediateType{IRI: &v}}, t.result...) +// PrependResultIRI adds to the front of result a *url.URL type +func (t *Invite) PrependResultIRI(v *url.URL) { + t.result = append([]*resultInviteIntermediateType{&resultInviteIntermediateType{IRI: v}}, t.result...) } @@ -211078,20 +211097,20 @@ func (t *Invite) IsOriginIRI(index int) (ok bool) { } // GetOriginIRI returns the value safely if IsOriginIRI returned true for the specified index -func (t *Invite) GetOriginIRI(index int) (v url.URL) { - return *t.origin[index].IRI +func (t *Invite) GetOriginIRI(index int) (v *url.URL) { + return t.origin[index].IRI } -// AppendOriginIRI adds to the back of origin a url.URL type -func (t *Invite) AppendOriginIRI(v url.URL) { - t.origin = append(t.origin, &originInviteIntermediateType{IRI: &v}) +// AppendOriginIRI adds to the back of origin a *url.URL type +func (t *Invite) AppendOriginIRI(v *url.URL) { + t.origin = append(t.origin, &originInviteIntermediateType{IRI: v}) } -// PrependOriginIRI adds to the front of origin a url.URL type -func (t *Invite) PrependOriginIRI(v url.URL) { - t.origin = append([]*originInviteIntermediateType{&originInviteIntermediateType{IRI: &v}}, t.origin...) +// PrependOriginIRI adds to the front of origin a *url.URL type +func (t *Invite) PrependOriginIRI(v *url.URL) { + t.origin = append([]*originInviteIntermediateType{&originInviteIntermediateType{IRI: v}}, t.origin...) } @@ -211203,20 +211222,20 @@ func (t *Invite) IsInstrumentIRI(index int) (ok bool) { } // GetInstrumentIRI returns the value safely if IsInstrumentIRI returned true for the specified index -func (t *Invite) GetInstrumentIRI(index int) (v url.URL) { - return *t.instrument[index].IRI +func (t *Invite) GetInstrumentIRI(index int) (v *url.URL) { + return t.instrument[index].IRI } -// AppendInstrumentIRI adds to the back of instrument a url.URL type -func (t *Invite) AppendInstrumentIRI(v url.URL) { - t.instrument = append(t.instrument, &instrumentInviteIntermediateType{IRI: &v}) +// AppendInstrumentIRI adds to the back of instrument a *url.URL type +func (t *Invite) AppendInstrumentIRI(v *url.URL) { + t.instrument = append(t.instrument, &instrumentInviteIntermediateType{IRI: v}) } -// PrependInstrumentIRI adds to the front of instrument a url.URL type -func (t *Invite) PrependInstrumentIRI(v url.URL) { - t.instrument = append([]*instrumentInviteIntermediateType{&instrumentInviteIntermediateType{IRI: &v}}, t.instrument...) +// PrependInstrumentIRI adds to the front of instrument a *url.URL type +func (t *Invite) PrependInstrumentIRI(v *url.URL) { + t.instrument = append([]*instrumentInviteIntermediateType{&instrumentInviteIntermediateType{IRI: v}}, t.instrument...) } @@ -211276,14 +211295,14 @@ func (t *Invite) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Invite) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Invite) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Invite) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeInviteIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Invite) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeInviteIntermediateType{IRI: v} } @@ -211387,20 +211406,20 @@ func (t *Invite) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Invite) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Invite) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Invite) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentInviteIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Invite) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentInviteIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Invite) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentInviteIntermediateType{&attachmentInviteIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Invite) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentInviteIntermediateType{&attachmentInviteIntermediateType{IRI: v}}, t.attachment...) } @@ -211512,20 +211531,20 @@ func (t *Invite) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Invite) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Invite) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Invite) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToInviteIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Invite) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToInviteIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Invite) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToInviteIntermediateType{&attributedToInviteIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Invite) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToInviteIntermediateType{&attributedToInviteIntermediateType{IRI: v}}, t.attributedTo...) } @@ -211637,20 +211656,20 @@ func (t *Invite) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Invite) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Invite) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Invite) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceInviteIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Invite) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceInviteIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Invite) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceInviteIntermediateType{&audienceInviteIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Invite) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceInviteIntermediateType{&audienceInviteIntermediateType{IRI: v}}, t.audience...) } @@ -211762,20 +211781,20 @@ func (t *Invite) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Invite) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Invite) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Invite) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentInviteIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Invite) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentInviteIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Invite) PrependContentIRI(v url.URL) { - t.content = append([]*contentInviteIntermediateType{&contentInviteIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Invite) PrependContentIRI(v *url.URL) { + t.content = append([]*contentInviteIntermediateType{&contentInviteIntermediateType{IRI: v}}, t.content...) } @@ -211922,20 +211941,20 @@ func (t *Invite) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Invite) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Invite) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Invite) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextInviteIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Invite) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextInviteIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Invite) PrependContextIRI(v url.URL) { - t.context = append([]*contextInviteIntermediateType{&contextInviteIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Invite) PrependContextIRI(v *url.URL) { + t.context = append([]*contextInviteIntermediateType{&contextInviteIntermediateType{IRI: v}}, t.context...) } @@ -212047,20 +212066,20 @@ func (t *Invite) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Invite) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Invite) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Invite) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameInviteIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Invite) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameInviteIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Invite) PrependNameIRI(v url.URL) { - t.name = append([]*nameInviteIntermediateType{&nameInviteIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Invite) PrependNameIRI(v *url.URL) { + t.name = append([]*nameInviteIntermediateType{&nameInviteIntermediateType{IRI: v}}, t.name...) } @@ -212155,14 +212174,14 @@ func (t *Invite) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Invite) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Invite) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Invite) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeInviteIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Invite) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeInviteIntermediateType{IRI: v} } @@ -212266,20 +212285,20 @@ func (t *Invite) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Invite) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Invite) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Invite) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorInviteIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Invite) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorInviteIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Invite) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorInviteIntermediateType{&generatorInviteIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Invite) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorInviteIntermediateType{&generatorInviteIntermediateType{IRI: v}}, t.generator...) } @@ -212391,20 +212410,20 @@ func (t *Invite) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Invite) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Invite) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Invite) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconInviteIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Invite) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconInviteIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Invite) PrependIconIRI(v url.URL) { - t.icon = append([]*iconInviteIntermediateType{&iconInviteIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Invite) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconInviteIntermediateType{&iconInviteIntermediateType{IRI: v}}, t.icon...) } @@ -212446,14 +212465,14 @@ func (t *Invite) HasId() (ok bool) { } // GetId returns the value for id -func (t *Invite) GetId() (v url.URL) { - return *t.id +func (t *Invite) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Invite) SetId(v url.URL) { - t.id = &v +func (t *Invite) SetId(v *url.URL) { + t.id = v } @@ -212555,20 +212574,20 @@ func (t *Invite) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Invite) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Invite) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Invite) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageInviteIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Invite) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageInviteIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Invite) PrependImageIRI(v url.URL) { - t.image = append([]*imageInviteIntermediateType{&imageInviteIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Invite) PrependImageIRI(v *url.URL) { + t.image = append([]*imageInviteIntermediateType{&imageInviteIntermediateType{IRI: v}}, t.image...) } @@ -212680,20 +212699,20 @@ func (t *Invite) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Invite) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Invite) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Invite) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToInviteIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Invite) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToInviteIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Invite) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToInviteIntermediateType{&inReplyToInviteIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Invite) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToInviteIntermediateType{&inReplyToInviteIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -212805,20 +212824,20 @@ func (t *Invite) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Invite) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Invite) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Invite) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationInviteIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Invite) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationInviteIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Invite) PrependLocationIRI(v url.URL) { - t.location = append([]*locationInviteIntermediateType{&locationInviteIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Invite) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationInviteIntermediateType{&locationInviteIntermediateType{IRI: v}}, t.location...) } @@ -212930,20 +212949,20 @@ func (t *Invite) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Invite) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Invite) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Invite) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewInviteIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Invite) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewInviteIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Invite) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewInviteIntermediateType{&previewInviteIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Invite) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewInviteIntermediateType{&previewInviteIntermediateType{IRI: v}}, t.preview...) } @@ -213003,14 +213022,14 @@ func (t *Invite) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Invite) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Invite) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Invite) SetPublishedIRI(v url.URL) { - t.published = &publishedInviteIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Invite) SetPublishedIRI(v *url.URL) { + t.published = &publishedInviteIntermediateType{IRI: v} } @@ -213062,14 +213081,14 @@ func (t *Invite) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Invite) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Invite) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Invite) SetRepliesIRI(v url.URL) { - t.replies = &repliesInviteIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Invite) SetRepliesIRI(v *url.URL) { + t.replies = &repliesInviteIntermediateType{IRI: v} } @@ -213121,14 +213140,14 @@ func (t *Invite) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Invite) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Invite) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Invite) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeInviteIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Invite) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeInviteIntermediateType{IRI: v} } @@ -213232,20 +213251,20 @@ func (t *Invite) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Invite) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Invite) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Invite) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryInviteIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Invite) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryInviteIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Invite) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryInviteIntermediateType{&summaryInviteIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Invite) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryInviteIntermediateType{&summaryInviteIntermediateType{IRI: v}}, t.summary...) } @@ -213392,20 +213411,20 @@ func (t *Invite) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Invite) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Invite) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Invite) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagInviteIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Invite) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagInviteIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Invite) PrependTagIRI(v url.URL) { - t.tag = append([]*tagInviteIntermediateType{&tagInviteIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Invite) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagInviteIntermediateType{&tagInviteIntermediateType{IRI: v}}, t.tag...) } @@ -213497,14 +213516,14 @@ func (t *Invite) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Invite) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Invite) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Invite) SetUpdatedIRI(v url.URL) { - t.updated = &updatedInviteIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Invite) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedInviteIntermediateType{IRI: v} } @@ -213544,20 +213563,20 @@ func (t *Invite) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Invite) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Invite) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Invite) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlInviteIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Invite) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlInviteIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Invite) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlInviteIntermediateType{&urlInviteIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Invite) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlInviteIntermediateType{&urlInviteIntermediateType{anyURI: v}}, t.url...) } @@ -213701,20 +213720,20 @@ func (t *Invite) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Invite) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Invite) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Invite) AppendToIRI(v url.URL) { - t.to = append(t.to, &toInviteIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Invite) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toInviteIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Invite) PrependToIRI(v url.URL) { - t.to = append([]*toInviteIntermediateType{&toInviteIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Invite) PrependToIRI(v *url.URL) { + t.to = append([]*toInviteIntermediateType{&toInviteIntermediateType{IRI: v}}, t.to...) } @@ -213826,20 +213845,20 @@ func (t *Invite) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Invite) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Invite) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Invite) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoInviteIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Invite) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoInviteIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Invite) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoInviteIntermediateType{&btoInviteIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Invite) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoInviteIntermediateType{&btoInviteIntermediateType{IRI: v}}, t.bto...) } @@ -213951,20 +213970,20 @@ func (t *Invite) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Invite) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Invite) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Invite) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccInviteIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Invite) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccInviteIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Invite) PrependCcIRI(v url.URL) { - t.cc = append([]*ccInviteIntermediateType{&ccInviteIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Invite) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccInviteIntermediateType{&ccInviteIntermediateType{IRI: v}}, t.cc...) } @@ -214076,20 +214095,20 @@ func (t *Invite) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Invite) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Invite) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Invite) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccInviteIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Invite) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccInviteIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Invite) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccInviteIntermediateType{&bccInviteIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Invite) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccInviteIntermediateType{&bccInviteIntermediateType{IRI: v}}, t.bcc...) } @@ -214149,14 +214168,14 @@ func (t *Invite) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Invite) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Invite) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Invite) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeInviteIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Invite) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeInviteIntermediateType{IRI: v} } @@ -214208,14 +214227,14 @@ func (t *Invite) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Invite) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Invite) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Invite) SetDurationIRI(v url.URL) { - t.duration = &durationInviteIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Invite) SetDurationIRI(v *url.URL) { + t.duration = &durationInviteIntermediateType{IRI: v} } @@ -214267,14 +214286,14 @@ func (t *Invite) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Invite) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Invite) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Invite) SetSourceIRI(v url.URL) { - t.source = &sourceInviteIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Invite) SetSourceIRI(v *url.URL) { + t.source = &sourceInviteIntermediateType{IRI: v} } @@ -214326,14 +214345,14 @@ func (t *Invite) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Invite) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Invite) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Invite) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxInviteIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Invite) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxInviteIntermediateType{anyURI: v} } @@ -214385,14 +214404,14 @@ func (t *Invite) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Invite) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Invite) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Invite) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxInviteIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Invite) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxInviteIntermediateType{anyURI: v} } @@ -214462,14 +214481,14 @@ func (t *Invite) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Invite) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Invite) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Invite) SetFollowingAnyURI(v url.URL) { - t.following = &followingInviteIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Invite) SetFollowingAnyURI(v *url.URL) { + t.following = &followingInviteIntermediateType{anyURI: v} } @@ -214539,14 +214558,14 @@ func (t *Invite) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Invite) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Invite) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Invite) SetFollowersAnyURI(v url.URL) { - t.followers = &followersInviteIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Invite) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersInviteIntermediateType{anyURI: v} } @@ -214616,14 +214635,14 @@ func (t *Invite) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Invite) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Invite) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Invite) SetLikedAnyURI(v url.URL) { - t.liked = &likedInviteIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Invite) SetLikedAnyURI(v *url.URL) { + t.liked = &likedInviteIntermediateType{anyURI: v} } @@ -214693,14 +214712,14 @@ func (t *Invite) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Invite) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Invite) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Invite) SetLikesAnyURI(v url.URL) { - t.likes = &likesInviteIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Invite) SetLikesAnyURI(v *url.URL) { + t.likes = &likesInviteIntermediateType{anyURI: v} } @@ -214734,26 +214753,27 @@ func (t *Invite) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Invite) GetStreams(index int) (v url.URL) { +func (t *Invite) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Invite) AppendStreams(v url.URL) { +func (t *Invite) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Invite) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Invite) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Invite) 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] } @@ -214804,14 +214824,14 @@ func (t *Invite) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Invite) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Invite) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Invite) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameInviteIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Invite) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameInviteIntermediateType{IRI: v} } @@ -214898,14 +214918,14 @@ func (t *Invite) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Invite) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Invite) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Invite) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsInviteIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Invite) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsInviteIntermediateType{IRI: v} } @@ -214939,14 +214959,14 @@ func (t *Invite) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Invite) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Invite) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Invite) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Invite) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -214978,14 +214998,14 @@ func (t *Invite) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Invite) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Invite) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Invite) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Invite) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -215017,14 +215037,14 @@ func (t *Invite) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Invite) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Invite) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Invite) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Invite) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -215056,14 +215076,14 @@ func (t *Invite) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Invite) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Invite) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Invite) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Invite) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -215095,14 +215115,14 @@ func (t *Invite) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Invite) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Invite) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Invite) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Invite) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -215134,14 +215154,14 @@ func (t *Invite) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Invite) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Invite) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Invite) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Invite) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -215399,7 +215419,7 @@ func (t *Invite) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -215705,7 +215725,7 @@ func (t *Invite) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -215720,7 +215740,7 @@ func (t *Invite) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -215735,7 +215755,7 @@ func (t *Invite) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -215750,7 +215770,7 @@ func (t *Invite) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -215765,7 +215785,7 @@ func (t *Invite) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -215780,7 +215800,7 @@ func (t *Invite) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -216746,7 +216766,7 @@ func (t *Invite) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -216755,7 +216775,7 @@ func (t *Invite) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -216969,7 +216989,7 @@ func (t *actorInviteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -217037,7 +217057,7 @@ func (t *objectInviteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -217120,7 +217140,7 @@ func (t *targetInviteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -217203,7 +217223,7 @@ func (t *resultInviteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -217286,7 +217306,7 @@ func (t *originInviteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -217369,7 +217389,7 @@ func (t *instrumentInviteIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -217423,7 +217443,7 @@ func (t *altitudeInviteIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -217506,7 +217526,7 @@ func (t *attachmentInviteIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -217589,7 +217609,7 @@ func (t *attributedToInviteIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -217672,7 +217692,7 @@ func (t *audienceInviteIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -217740,7 +217760,7 @@ func (t *contentInviteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -217823,7 +217843,7 @@ func (t *contextInviteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -217891,7 +217911,7 @@ func (t *nameInviteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -217945,7 +217965,7 @@ func (t *endTimeInviteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -218028,7 +218048,7 @@ func (t *generatorInviteIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -218111,7 +218131,7 @@ func (t *iconInviteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -218194,7 +218214,7 @@ func (t *imageInviteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -218277,7 +218297,7 @@ func (t *inReplyToInviteIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -218360,7 +218380,7 @@ func (t *locationInviteIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -218443,7 +218463,7 @@ func (t *previewInviteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -218497,7 +218517,7 @@ func (t *publishedInviteIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -218565,7 +218585,7 @@ func (t *repliesInviteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -218619,7 +218639,7 @@ func (t *startTimeInviteIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -218687,7 +218707,7 @@ func (t *summaryInviteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -218770,7 +218790,7 @@ func (t *tagInviteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -218824,7 +218844,7 @@ func (t *updatedInviteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -218888,7 +218908,7 @@ func (t *urlInviteIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlInviteIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -218975,7 +218995,7 @@ func (t *toInviteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -219058,7 +219078,7 @@ func (t *btoInviteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -219141,7 +219161,7 @@ func (t *ccInviteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -219224,7 +219244,7 @@ func (t *bccInviteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -219278,7 +219298,7 @@ func (t *mediaTypeInviteIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -219332,7 +219352,7 @@ func (t *durationInviteIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -219400,7 +219420,7 @@ func (t *sourceInviteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -219468,7 +219488,7 @@ func (t *inboxInviteIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -219536,7 +219556,7 @@ func (t *outboxInviteIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -219619,7 +219639,7 @@ func (t *followingInviteIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -219702,7 +219722,7 @@ func (t *followersInviteIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -219785,7 +219805,7 @@ func (t *likedInviteIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -219868,7 +219888,7 @@ func (t *likesInviteIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -219922,7 +219942,7 @@ func (t *preferredUsernameInviteIntermediateType) Serialize() (i interface{}, er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -219990,7 +220010,7 @@ func (t *endpointsInviteIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -220092,7 +220112,7 @@ type Reject struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesRejectIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameRejectIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -220190,20 +220210,20 @@ func (t *Reject) IsActorIRI(index int) (ok bool) { } // GetActorIRI returns the value safely if IsActorIRI returned true for the specified index -func (t *Reject) GetActorIRI(index int) (v url.URL) { - return *t.actor[index].IRI +func (t *Reject) GetActorIRI(index int) (v *url.URL) { + return t.actor[index].IRI } -// AppendActorIRI adds to the back of actor a url.URL type -func (t *Reject) AppendActorIRI(v url.URL) { - t.actor = append(t.actor, &actorRejectIntermediateType{IRI: &v}) +// AppendActorIRI adds to the back of actor a *url.URL type +func (t *Reject) AppendActorIRI(v *url.URL) { + t.actor = append(t.actor, &actorRejectIntermediateType{IRI: v}) } -// PrependActorIRI adds to the front of actor a url.URL type -func (t *Reject) PrependActorIRI(v url.URL) { - t.actor = append([]*actorRejectIntermediateType{&actorRejectIntermediateType{IRI: &v}}, t.actor...) +// PrependActorIRI adds to the front of actor a *url.URL type +func (t *Reject) PrependActorIRI(v *url.URL) { + t.actor = append([]*actorRejectIntermediateType{&actorRejectIntermediateType{IRI: v}}, t.actor...) } @@ -220283,20 +220303,20 @@ func (t *Reject) IsObjectIRI(index int) (ok bool) { } // GetObjectIRI returns the value safely if IsObjectIRI returned true for the specified index -func (t *Reject) GetObjectIRI(index int) (v url.URL) { - return *t.object[index].IRI +func (t *Reject) GetObjectIRI(index int) (v *url.URL) { + return t.object[index].IRI } -// AppendObjectIRI adds to the back of object a url.URL type -func (t *Reject) AppendObjectIRI(v url.URL) { - t.object = append(t.object, &objectRejectIntermediateType{IRI: &v}) +// AppendObjectIRI adds to the back of object a *url.URL type +func (t *Reject) AppendObjectIRI(v *url.URL) { + t.object = append(t.object, &objectRejectIntermediateType{IRI: v}) } -// PrependObjectIRI adds to the front of object a url.URL type -func (t *Reject) PrependObjectIRI(v url.URL) { - t.object = append([]*objectRejectIntermediateType{&objectRejectIntermediateType{IRI: &v}}, t.object...) +// PrependObjectIRI adds to the front of object a *url.URL type +func (t *Reject) PrependObjectIRI(v *url.URL) { + t.object = append([]*objectRejectIntermediateType{&objectRejectIntermediateType{IRI: v}}, t.object...) } @@ -220408,20 +220428,20 @@ func (t *Reject) IsTargetIRI(index int) (ok bool) { } // GetTargetIRI returns the value safely if IsTargetIRI returned true for the specified index -func (t *Reject) GetTargetIRI(index int) (v url.URL) { - return *t.target[index].IRI +func (t *Reject) GetTargetIRI(index int) (v *url.URL) { + return t.target[index].IRI } -// AppendTargetIRI adds to the back of target a url.URL type -func (t *Reject) AppendTargetIRI(v url.URL) { - t.target = append(t.target, &targetRejectIntermediateType{IRI: &v}) +// AppendTargetIRI adds to the back of target a *url.URL type +func (t *Reject) AppendTargetIRI(v *url.URL) { + t.target = append(t.target, &targetRejectIntermediateType{IRI: v}) } -// PrependTargetIRI adds to the front of target a url.URL type -func (t *Reject) PrependTargetIRI(v url.URL) { - t.target = append([]*targetRejectIntermediateType{&targetRejectIntermediateType{IRI: &v}}, t.target...) +// PrependTargetIRI adds to the front of target a *url.URL type +func (t *Reject) PrependTargetIRI(v *url.URL) { + t.target = append([]*targetRejectIntermediateType{&targetRejectIntermediateType{IRI: v}}, t.target...) } @@ -220533,20 +220553,20 @@ func (t *Reject) IsResultIRI(index int) (ok bool) { } // GetResultIRI returns the value safely if IsResultIRI returned true for the specified index -func (t *Reject) GetResultIRI(index int) (v url.URL) { - return *t.result[index].IRI +func (t *Reject) GetResultIRI(index int) (v *url.URL) { + return t.result[index].IRI } -// AppendResultIRI adds to the back of result a url.URL type -func (t *Reject) AppendResultIRI(v url.URL) { - t.result = append(t.result, &resultRejectIntermediateType{IRI: &v}) +// AppendResultIRI adds to the back of result a *url.URL type +func (t *Reject) AppendResultIRI(v *url.URL) { + t.result = append(t.result, &resultRejectIntermediateType{IRI: v}) } -// PrependResultIRI adds to the front of result a url.URL type -func (t *Reject) PrependResultIRI(v url.URL) { - t.result = append([]*resultRejectIntermediateType{&resultRejectIntermediateType{IRI: &v}}, t.result...) +// PrependResultIRI adds to the front of result a *url.URL type +func (t *Reject) PrependResultIRI(v *url.URL) { + t.result = append([]*resultRejectIntermediateType{&resultRejectIntermediateType{IRI: v}}, t.result...) } @@ -220658,20 +220678,20 @@ func (t *Reject) IsOriginIRI(index int) (ok bool) { } // GetOriginIRI returns the value safely if IsOriginIRI returned true for the specified index -func (t *Reject) GetOriginIRI(index int) (v url.URL) { - return *t.origin[index].IRI +func (t *Reject) GetOriginIRI(index int) (v *url.URL) { + return t.origin[index].IRI } -// AppendOriginIRI adds to the back of origin a url.URL type -func (t *Reject) AppendOriginIRI(v url.URL) { - t.origin = append(t.origin, &originRejectIntermediateType{IRI: &v}) +// AppendOriginIRI adds to the back of origin a *url.URL type +func (t *Reject) AppendOriginIRI(v *url.URL) { + t.origin = append(t.origin, &originRejectIntermediateType{IRI: v}) } -// PrependOriginIRI adds to the front of origin a url.URL type -func (t *Reject) PrependOriginIRI(v url.URL) { - t.origin = append([]*originRejectIntermediateType{&originRejectIntermediateType{IRI: &v}}, t.origin...) +// PrependOriginIRI adds to the front of origin a *url.URL type +func (t *Reject) PrependOriginIRI(v *url.URL) { + t.origin = append([]*originRejectIntermediateType{&originRejectIntermediateType{IRI: v}}, t.origin...) } @@ -220783,20 +220803,20 @@ func (t *Reject) IsInstrumentIRI(index int) (ok bool) { } // GetInstrumentIRI returns the value safely if IsInstrumentIRI returned true for the specified index -func (t *Reject) GetInstrumentIRI(index int) (v url.URL) { - return *t.instrument[index].IRI +func (t *Reject) GetInstrumentIRI(index int) (v *url.URL) { + return t.instrument[index].IRI } -// AppendInstrumentIRI adds to the back of instrument a url.URL type -func (t *Reject) AppendInstrumentIRI(v url.URL) { - t.instrument = append(t.instrument, &instrumentRejectIntermediateType{IRI: &v}) +// AppendInstrumentIRI adds to the back of instrument a *url.URL type +func (t *Reject) AppendInstrumentIRI(v *url.URL) { + t.instrument = append(t.instrument, &instrumentRejectIntermediateType{IRI: v}) } -// PrependInstrumentIRI adds to the front of instrument a url.URL type -func (t *Reject) PrependInstrumentIRI(v url.URL) { - t.instrument = append([]*instrumentRejectIntermediateType{&instrumentRejectIntermediateType{IRI: &v}}, t.instrument...) +// PrependInstrumentIRI adds to the front of instrument a *url.URL type +func (t *Reject) PrependInstrumentIRI(v *url.URL) { + t.instrument = append([]*instrumentRejectIntermediateType{&instrumentRejectIntermediateType{IRI: v}}, t.instrument...) } @@ -220856,14 +220876,14 @@ func (t *Reject) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Reject) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Reject) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Reject) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeRejectIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Reject) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeRejectIntermediateType{IRI: v} } @@ -220967,20 +220987,20 @@ func (t *Reject) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Reject) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Reject) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Reject) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentRejectIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Reject) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentRejectIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Reject) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentRejectIntermediateType{&attachmentRejectIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Reject) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentRejectIntermediateType{&attachmentRejectIntermediateType{IRI: v}}, t.attachment...) } @@ -221092,20 +221112,20 @@ func (t *Reject) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Reject) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Reject) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Reject) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToRejectIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Reject) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToRejectIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Reject) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToRejectIntermediateType{&attributedToRejectIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Reject) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToRejectIntermediateType{&attributedToRejectIntermediateType{IRI: v}}, t.attributedTo...) } @@ -221217,20 +221237,20 @@ func (t *Reject) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Reject) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Reject) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Reject) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceRejectIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Reject) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceRejectIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Reject) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceRejectIntermediateType{&audienceRejectIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Reject) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceRejectIntermediateType{&audienceRejectIntermediateType{IRI: v}}, t.audience...) } @@ -221342,20 +221362,20 @@ func (t *Reject) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Reject) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Reject) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Reject) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentRejectIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Reject) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentRejectIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Reject) PrependContentIRI(v url.URL) { - t.content = append([]*contentRejectIntermediateType{&contentRejectIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Reject) PrependContentIRI(v *url.URL) { + t.content = append([]*contentRejectIntermediateType{&contentRejectIntermediateType{IRI: v}}, t.content...) } @@ -221502,20 +221522,20 @@ func (t *Reject) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Reject) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Reject) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Reject) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextRejectIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Reject) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextRejectIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Reject) PrependContextIRI(v url.URL) { - t.context = append([]*contextRejectIntermediateType{&contextRejectIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Reject) PrependContextIRI(v *url.URL) { + t.context = append([]*contextRejectIntermediateType{&contextRejectIntermediateType{IRI: v}}, t.context...) } @@ -221627,20 +221647,20 @@ func (t *Reject) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Reject) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Reject) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Reject) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameRejectIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Reject) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameRejectIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Reject) PrependNameIRI(v url.URL) { - t.name = append([]*nameRejectIntermediateType{&nameRejectIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Reject) PrependNameIRI(v *url.URL) { + t.name = append([]*nameRejectIntermediateType{&nameRejectIntermediateType{IRI: v}}, t.name...) } @@ -221735,14 +221755,14 @@ func (t *Reject) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Reject) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Reject) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Reject) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeRejectIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Reject) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeRejectIntermediateType{IRI: v} } @@ -221846,20 +221866,20 @@ func (t *Reject) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Reject) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Reject) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Reject) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorRejectIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Reject) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorRejectIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Reject) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorRejectIntermediateType{&generatorRejectIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Reject) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorRejectIntermediateType{&generatorRejectIntermediateType{IRI: v}}, t.generator...) } @@ -221971,20 +221991,20 @@ func (t *Reject) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Reject) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Reject) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Reject) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconRejectIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Reject) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconRejectIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Reject) PrependIconIRI(v url.URL) { - t.icon = append([]*iconRejectIntermediateType{&iconRejectIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Reject) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconRejectIntermediateType{&iconRejectIntermediateType{IRI: v}}, t.icon...) } @@ -222026,14 +222046,14 @@ func (t *Reject) HasId() (ok bool) { } // GetId returns the value for id -func (t *Reject) GetId() (v url.URL) { - return *t.id +func (t *Reject) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Reject) SetId(v url.URL) { - t.id = &v +func (t *Reject) SetId(v *url.URL) { + t.id = v } @@ -222135,20 +222155,20 @@ func (t *Reject) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Reject) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Reject) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Reject) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageRejectIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Reject) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageRejectIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Reject) PrependImageIRI(v url.URL) { - t.image = append([]*imageRejectIntermediateType{&imageRejectIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Reject) PrependImageIRI(v *url.URL) { + t.image = append([]*imageRejectIntermediateType{&imageRejectIntermediateType{IRI: v}}, t.image...) } @@ -222260,20 +222280,20 @@ func (t *Reject) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Reject) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Reject) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Reject) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToRejectIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Reject) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToRejectIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Reject) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToRejectIntermediateType{&inReplyToRejectIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Reject) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToRejectIntermediateType{&inReplyToRejectIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -222385,20 +222405,20 @@ func (t *Reject) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Reject) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Reject) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Reject) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationRejectIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Reject) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationRejectIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Reject) PrependLocationIRI(v url.URL) { - t.location = append([]*locationRejectIntermediateType{&locationRejectIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Reject) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationRejectIntermediateType{&locationRejectIntermediateType{IRI: v}}, t.location...) } @@ -222510,20 +222530,20 @@ func (t *Reject) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Reject) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Reject) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Reject) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewRejectIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Reject) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewRejectIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Reject) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewRejectIntermediateType{&previewRejectIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Reject) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewRejectIntermediateType{&previewRejectIntermediateType{IRI: v}}, t.preview...) } @@ -222583,14 +222603,14 @@ func (t *Reject) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Reject) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Reject) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Reject) SetPublishedIRI(v url.URL) { - t.published = &publishedRejectIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Reject) SetPublishedIRI(v *url.URL) { + t.published = &publishedRejectIntermediateType{IRI: v} } @@ -222642,14 +222662,14 @@ func (t *Reject) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Reject) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Reject) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Reject) SetRepliesIRI(v url.URL) { - t.replies = &repliesRejectIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Reject) SetRepliesIRI(v *url.URL) { + t.replies = &repliesRejectIntermediateType{IRI: v} } @@ -222701,14 +222721,14 @@ func (t *Reject) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Reject) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Reject) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Reject) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeRejectIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Reject) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeRejectIntermediateType{IRI: v} } @@ -222812,20 +222832,20 @@ func (t *Reject) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Reject) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Reject) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Reject) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryRejectIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Reject) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryRejectIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Reject) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryRejectIntermediateType{&summaryRejectIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Reject) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryRejectIntermediateType{&summaryRejectIntermediateType{IRI: v}}, t.summary...) } @@ -222972,20 +222992,20 @@ func (t *Reject) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Reject) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Reject) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Reject) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagRejectIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Reject) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagRejectIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Reject) PrependTagIRI(v url.URL) { - t.tag = append([]*tagRejectIntermediateType{&tagRejectIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Reject) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagRejectIntermediateType{&tagRejectIntermediateType{IRI: v}}, t.tag...) } @@ -223077,14 +223097,14 @@ func (t *Reject) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Reject) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Reject) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Reject) SetUpdatedIRI(v url.URL) { - t.updated = &updatedRejectIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Reject) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedRejectIntermediateType{IRI: v} } @@ -223124,20 +223144,20 @@ func (t *Reject) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Reject) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Reject) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Reject) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlRejectIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Reject) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlRejectIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Reject) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlRejectIntermediateType{&urlRejectIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Reject) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlRejectIntermediateType{&urlRejectIntermediateType{anyURI: v}}, t.url...) } @@ -223281,20 +223301,20 @@ func (t *Reject) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Reject) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Reject) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Reject) AppendToIRI(v url.URL) { - t.to = append(t.to, &toRejectIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Reject) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toRejectIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Reject) PrependToIRI(v url.URL) { - t.to = append([]*toRejectIntermediateType{&toRejectIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Reject) PrependToIRI(v *url.URL) { + t.to = append([]*toRejectIntermediateType{&toRejectIntermediateType{IRI: v}}, t.to...) } @@ -223406,20 +223426,20 @@ func (t *Reject) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Reject) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Reject) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Reject) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoRejectIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Reject) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoRejectIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Reject) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoRejectIntermediateType{&btoRejectIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Reject) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoRejectIntermediateType{&btoRejectIntermediateType{IRI: v}}, t.bto...) } @@ -223531,20 +223551,20 @@ func (t *Reject) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Reject) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Reject) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Reject) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccRejectIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Reject) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccRejectIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Reject) PrependCcIRI(v url.URL) { - t.cc = append([]*ccRejectIntermediateType{&ccRejectIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Reject) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccRejectIntermediateType{&ccRejectIntermediateType{IRI: v}}, t.cc...) } @@ -223656,20 +223676,20 @@ func (t *Reject) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Reject) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Reject) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Reject) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccRejectIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Reject) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccRejectIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Reject) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccRejectIntermediateType{&bccRejectIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Reject) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccRejectIntermediateType{&bccRejectIntermediateType{IRI: v}}, t.bcc...) } @@ -223729,14 +223749,14 @@ func (t *Reject) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Reject) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Reject) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Reject) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeRejectIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Reject) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeRejectIntermediateType{IRI: v} } @@ -223788,14 +223808,14 @@ func (t *Reject) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Reject) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Reject) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Reject) SetDurationIRI(v url.URL) { - t.duration = &durationRejectIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Reject) SetDurationIRI(v *url.URL) { + t.duration = &durationRejectIntermediateType{IRI: v} } @@ -223847,14 +223867,14 @@ func (t *Reject) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Reject) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Reject) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Reject) SetSourceIRI(v url.URL) { - t.source = &sourceRejectIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Reject) SetSourceIRI(v *url.URL) { + t.source = &sourceRejectIntermediateType{IRI: v} } @@ -223906,14 +223926,14 @@ func (t *Reject) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Reject) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Reject) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Reject) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxRejectIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Reject) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxRejectIntermediateType{anyURI: v} } @@ -223965,14 +223985,14 @@ func (t *Reject) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Reject) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Reject) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Reject) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxRejectIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Reject) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxRejectIntermediateType{anyURI: v} } @@ -224042,14 +224062,14 @@ func (t *Reject) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Reject) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Reject) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Reject) SetFollowingAnyURI(v url.URL) { - t.following = &followingRejectIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Reject) SetFollowingAnyURI(v *url.URL) { + t.following = &followingRejectIntermediateType{anyURI: v} } @@ -224119,14 +224139,14 @@ func (t *Reject) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Reject) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Reject) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Reject) SetFollowersAnyURI(v url.URL) { - t.followers = &followersRejectIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Reject) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersRejectIntermediateType{anyURI: v} } @@ -224196,14 +224216,14 @@ func (t *Reject) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Reject) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Reject) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Reject) SetLikedAnyURI(v url.URL) { - t.liked = &likedRejectIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Reject) SetLikedAnyURI(v *url.URL) { + t.liked = &likedRejectIntermediateType{anyURI: v} } @@ -224273,14 +224293,14 @@ func (t *Reject) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Reject) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Reject) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Reject) SetLikesAnyURI(v url.URL) { - t.likes = &likesRejectIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Reject) SetLikesAnyURI(v *url.URL) { + t.likes = &likesRejectIntermediateType{anyURI: v} } @@ -224314,26 +224334,27 @@ func (t *Reject) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Reject) GetStreams(index int) (v url.URL) { +func (t *Reject) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Reject) AppendStreams(v url.URL) { +func (t *Reject) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Reject) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Reject) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Reject) 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] } @@ -224384,14 +224405,14 @@ func (t *Reject) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Reject) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Reject) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Reject) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameRejectIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Reject) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameRejectIntermediateType{IRI: v} } @@ -224478,14 +224499,14 @@ func (t *Reject) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Reject) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Reject) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Reject) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsRejectIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Reject) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsRejectIntermediateType{IRI: v} } @@ -224519,14 +224540,14 @@ func (t *Reject) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Reject) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Reject) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Reject) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Reject) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -224558,14 +224579,14 @@ func (t *Reject) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Reject) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Reject) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Reject) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Reject) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -224597,14 +224618,14 @@ func (t *Reject) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Reject) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Reject) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Reject) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Reject) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -224636,14 +224657,14 @@ func (t *Reject) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Reject) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Reject) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Reject) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Reject) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -224675,14 +224696,14 @@ func (t *Reject) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Reject) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Reject) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Reject) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Reject) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -224714,14 +224735,14 @@ func (t *Reject) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Reject) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Reject) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Reject) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Reject) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -224979,7 +225000,7 @@ func (t *Reject) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -225285,7 +225306,7 @@ func (t *Reject) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -225300,7 +225321,7 @@ func (t *Reject) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -225315,7 +225336,7 @@ func (t *Reject) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -225330,7 +225351,7 @@ func (t *Reject) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -225345,7 +225366,7 @@ func (t *Reject) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -225360,7 +225381,7 @@ func (t *Reject) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -226326,7 +226347,7 @@ func (t *Reject) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -226335,7 +226356,7 @@ func (t *Reject) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -226549,7 +226570,7 @@ func (t *actorRejectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -226617,7 +226638,7 @@ func (t *objectRejectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -226700,7 +226721,7 @@ func (t *targetRejectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -226783,7 +226804,7 @@ func (t *resultRejectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -226866,7 +226887,7 @@ func (t *originRejectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -226949,7 +226970,7 @@ func (t *instrumentRejectIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -227003,7 +227024,7 @@ func (t *altitudeRejectIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -227086,7 +227107,7 @@ func (t *attachmentRejectIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -227169,7 +227190,7 @@ func (t *attributedToRejectIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -227252,7 +227273,7 @@ func (t *audienceRejectIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -227320,7 +227341,7 @@ func (t *contentRejectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -227403,7 +227424,7 @@ func (t *contextRejectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -227471,7 +227492,7 @@ func (t *nameRejectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -227525,7 +227546,7 @@ func (t *endTimeRejectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -227608,7 +227629,7 @@ func (t *generatorRejectIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -227691,7 +227712,7 @@ func (t *iconRejectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -227774,7 +227795,7 @@ func (t *imageRejectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -227857,7 +227878,7 @@ func (t *inReplyToRejectIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -227940,7 +227961,7 @@ func (t *locationRejectIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -228023,7 +228044,7 @@ func (t *previewRejectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -228077,7 +228098,7 @@ func (t *publishedRejectIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -228145,7 +228166,7 @@ func (t *repliesRejectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -228199,7 +228220,7 @@ func (t *startTimeRejectIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -228267,7 +228288,7 @@ func (t *summaryRejectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -228350,7 +228371,7 @@ func (t *tagRejectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -228404,7 +228425,7 @@ func (t *updatedRejectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -228468,7 +228489,7 @@ func (t *urlRejectIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlRejectIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -228555,7 +228576,7 @@ func (t *toRejectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -228638,7 +228659,7 @@ func (t *btoRejectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -228721,7 +228742,7 @@ func (t *ccRejectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -228804,7 +228825,7 @@ func (t *bccRejectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -228858,7 +228879,7 @@ func (t *mediaTypeRejectIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -228912,7 +228933,7 @@ func (t *durationRejectIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -228980,7 +229001,7 @@ func (t *sourceRejectIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -229048,7 +229069,7 @@ func (t *inboxRejectIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -229116,7 +229137,7 @@ func (t *outboxRejectIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -229199,7 +229220,7 @@ func (t *followingRejectIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -229282,7 +229303,7 @@ func (t *followersRejectIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -229365,7 +229386,7 @@ func (t *likedRejectIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -229448,7 +229469,7 @@ func (t *likesRejectIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -229502,7 +229523,7 @@ func (t *preferredUsernameRejectIntermediateType) Serialize() (i interface{}, er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -229570,7 +229591,7 @@ func (t *endpointsRejectIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -229672,7 +229693,7 @@ type TentativeReject struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesTentativeRejectIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameTentativeRejectIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -229770,20 +229791,20 @@ func (t *TentativeReject) IsActorIRI(index int) (ok bool) { } // GetActorIRI returns the value safely if IsActorIRI returned true for the specified index -func (t *TentativeReject) GetActorIRI(index int) (v url.URL) { - return *t.actor[index].IRI +func (t *TentativeReject) GetActorIRI(index int) (v *url.URL) { + return t.actor[index].IRI } -// AppendActorIRI adds to the back of actor a url.URL type -func (t *TentativeReject) AppendActorIRI(v url.URL) { - t.actor = append(t.actor, &actorTentativeRejectIntermediateType{IRI: &v}) +// AppendActorIRI adds to the back of actor a *url.URL type +func (t *TentativeReject) AppendActorIRI(v *url.URL) { + t.actor = append(t.actor, &actorTentativeRejectIntermediateType{IRI: v}) } -// PrependActorIRI adds to the front of actor a url.URL type -func (t *TentativeReject) PrependActorIRI(v url.URL) { - t.actor = append([]*actorTentativeRejectIntermediateType{&actorTentativeRejectIntermediateType{IRI: &v}}, t.actor...) +// PrependActorIRI adds to the front of actor a *url.URL type +func (t *TentativeReject) PrependActorIRI(v *url.URL) { + t.actor = append([]*actorTentativeRejectIntermediateType{&actorTentativeRejectIntermediateType{IRI: v}}, t.actor...) } @@ -229863,20 +229884,20 @@ func (t *TentativeReject) IsObjectIRI(index int) (ok bool) { } // GetObjectIRI returns the value safely if IsObjectIRI returned true for the specified index -func (t *TentativeReject) GetObjectIRI(index int) (v url.URL) { - return *t.object[index].IRI +func (t *TentativeReject) GetObjectIRI(index int) (v *url.URL) { + return t.object[index].IRI } -// AppendObjectIRI adds to the back of object a url.URL type -func (t *TentativeReject) AppendObjectIRI(v url.URL) { - t.object = append(t.object, &objectTentativeRejectIntermediateType{IRI: &v}) +// AppendObjectIRI adds to the back of object a *url.URL type +func (t *TentativeReject) AppendObjectIRI(v *url.URL) { + t.object = append(t.object, &objectTentativeRejectIntermediateType{IRI: v}) } -// PrependObjectIRI adds to the front of object a url.URL type -func (t *TentativeReject) PrependObjectIRI(v url.URL) { - t.object = append([]*objectTentativeRejectIntermediateType{&objectTentativeRejectIntermediateType{IRI: &v}}, t.object...) +// PrependObjectIRI adds to the front of object a *url.URL type +func (t *TentativeReject) PrependObjectIRI(v *url.URL) { + t.object = append([]*objectTentativeRejectIntermediateType{&objectTentativeRejectIntermediateType{IRI: v}}, t.object...) } @@ -229988,20 +230009,20 @@ func (t *TentativeReject) IsTargetIRI(index int) (ok bool) { } // GetTargetIRI returns the value safely if IsTargetIRI returned true for the specified index -func (t *TentativeReject) GetTargetIRI(index int) (v url.URL) { - return *t.target[index].IRI +func (t *TentativeReject) GetTargetIRI(index int) (v *url.URL) { + return t.target[index].IRI } -// AppendTargetIRI adds to the back of target a url.URL type -func (t *TentativeReject) AppendTargetIRI(v url.URL) { - t.target = append(t.target, &targetTentativeRejectIntermediateType{IRI: &v}) +// AppendTargetIRI adds to the back of target a *url.URL type +func (t *TentativeReject) AppendTargetIRI(v *url.URL) { + t.target = append(t.target, &targetTentativeRejectIntermediateType{IRI: v}) } -// PrependTargetIRI adds to the front of target a url.URL type -func (t *TentativeReject) PrependTargetIRI(v url.URL) { - t.target = append([]*targetTentativeRejectIntermediateType{&targetTentativeRejectIntermediateType{IRI: &v}}, t.target...) +// PrependTargetIRI adds to the front of target a *url.URL type +func (t *TentativeReject) PrependTargetIRI(v *url.URL) { + t.target = append([]*targetTentativeRejectIntermediateType{&targetTentativeRejectIntermediateType{IRI: v}}, t.target...) } @@ -230113,20 +230134,20 @@ func (t *TentativeReject) IsResultIRI(index int) (ok bool) { } // GetResultIRI returns the value safely if IsResultIRI returned true for the specified index -func (t *TentativeReject) GetResultIRI(index int) (v url.URL) { - return *t.result[index].IRI +func (t *TentativeReject) GetResultIRI(index int) (v *url.URL) { + return t.result[index].IRI } -// AppendResultIRI adds to the back of result a url.URL type -func (t *TentativeReject) AppendResultIRI(v url.URL) { - t.result = append(t.result, &resultTentativeRejectIntermediateType{IRI: &v}) +// AppendResultIRI adds to the back of result a *url.URL type +func (t *TentativeReject) AppendResultIRI(v *url.URL) { + t.result = append(t.result, &resultTentativeRejectIntermediateType{IRI: v}) } -// PrependResultIRI adds to the front of result a url.URL type -func (t *TentativeReject) PrependResultIRI(v url.URL) { - t.result = append([]*resultTentativeRejectIntermediateType{&resultTentativeRejectIntermediateType{IRI: &v}}, t.result...) +// PrependResultIRI adds to the front of result a *url.URL type +func (t *TentativeReject) PrependResultIRI(v *url.URL) { + t.result = append([]*resultTentativeRejectIntermediateType{&resultTentativeRejectIntermediateType{IRI: v}}, t.result...) } @@ -230238,20 +230259,20 @@ func (t *TentativeReject) IsOriginIRI(index int) (ok bool) { } // GetOriginIRI returns the value safely if IsOriginIRI returned true for the specified index -func (t *TentativeReject) GetOriginIRI(index int) (v url.URL) { - return *t.origin[index].IRI +func (t *TentativeReject) GetOriginIRI(index int) (v *url.URL) { + return t.origin[index].IRI } -// AppendOriginIRI adds to the back of origin a url.URL type -func (t *TentativeReject) AppendOriginIRI(v url.URL) { - t.origin = append(t.origin, &originTentativeRejectIntermediateType{IRI: &v}) +// AppendOriginIRI adds to the back of origin a *url.URL type +func (t *TentativeReject) AppendOriginIRI(v *url.URL) { + t.origin = append(t.origin, &originTentativeRejectIntermediateType{IRI: v}) } -// PrependOriginIRI adds to the front of origin a url.URL type -func (t *TentativeReject) PrependOriginIRI(v url.URL) { - t.origin = append([]*originTentativeRejectIntermediateType{&originTentativeRejectIntermediateType{IRI: &v}}, t.origin...) +// PrependOriginIRI adds to the front of origin a *url.URL type +func (t *TentativeReject) PrependOriginIRI(v *url.URL) { + t.origin = append([]*originTentativeRejectIntermediateType{&originTentativeRejectIntermediateType{IRI: v}}, t.origin...) } @@ -230363,20 +230384,20 @@ func (t *TentativeReject) IsInstrumentIRI(index int) (ok bool) { } // GetInstrumentIRI returns the value safely if IsInstrumentIRI returned true for the specified index -func (t *TentativeReject) GetInstrumentIRI(index int) (v url.URL) { - return *t.instrument[index].IRI +func (t *TentativeReject) GetInstrumentIRI(index int) (v *url.URL) { + return t.instrument[index].IRI } -// AppendInstrumentIRI adds to the back of instrument a url.URL type -func (t *TentativeReject) AppendInstrumentIRI(v url.URL) { - t.instrument = append(t.instrument, &instrumentTentativeRejectIntermediateType{IRI: &v}) +// AppendInstrumentIRI adds to the back of instrument a *url.URL type +func (t *TentativeReject) AppendInstrumentIRI(v *url.URL) { + t.instrument = append(t.instrument, &instrumentTentativeRejectIntermediateType{IRI: v}) } -// PrependInstrumentIRI adds to the front of instrument a url.URL type -func (t *TentativeReject) PrependInstrumentIRI(v url.URL) { - t.instrument = append([]*instrumentTentativeRejectIntermediateType{&instrumentTentativeRejectIntermediateType{IRI: &v}}, t.instrument...) +// PrependInstrumentIRI adds to the front of instrument a *url.URL type +func (t *TentativeReject) PrependInstrumentIRI(v *url.URL) { + t.instrument = append([]*instrumentTentativeRejectIntermediateType{&instrumentTentativeRejectIntermediateType{IRI: v}}, t.instrument...) } @@ -230436,14 +230457,14 @@ func (t *TentativeReject) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *TentativeReject) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *TentativeReject) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *TentativeReject) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeTentativeRejectIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *TentativeReject) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeTentativeRejectIntermediateType{IRI: v} } @@ -230547,20 +230568,20 @@ func (t *TentativeReject) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *TentativeReject) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *TentativeReject) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *TentativeReject) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentTentativeRejectIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *TentativeReject) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentTentativeRejectIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *TentativeReject) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentTentativeRejectIntermediateType{&attachmentTentativeRejectIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *TentativeReject) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentTentativeRejectIntermediateType{&attachmentTentativeRejectIntermediateType{IRI: v}}, t.attachment...) } @@ -230672,20 +230693,20 @@ func (t *TentativeReject) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *TentativeReject) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *TentativeReject) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *TentativeReject) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToTentativeRejectIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *TentativeReject) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToTentativeRejectIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *TentativeReject) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToTentativeRejectIntermediateType{&attributedToTentativeRejectIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *TentativeReject) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToTentativeRejectIntermediateType{&attributedToTentativeRejectIntermediateType{IRI: v}}, t.attributedTo...) } @@ -230797,20 +230818,20 @@ func (t *TentativeReject) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *TentativeReject) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *TentativeReject) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *TentativeReject) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceTentativeRejectIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *TentativeReject) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceTentativeRejectIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *TentativeReject) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceTentativeRejectIntermediateType{&audienceTentativeRejectIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *TentativeReject) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceTentativeRejectIntermediateType{&audienceTentativeRejectIntermediateType{IRI: v}}, t.audience...) } @@ -230922,20 +230943,20 @@ func (t *TentativeReject) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *TentativeReject) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *TentativeReject) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *TentativeReject) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentTentativeRejectIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *TentativeReject) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentTentativeRejectIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *TentativeReject) PrependContentIRI(v url.URL) { - t.content = append([]*contentTentativeRejectIntermediateType{&contentTentativeRejectIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *TentativeReject) PrependContentIRI(v *url.URL) { + t.content = append([]*contentTentativeRejectIntermediateType{&contentTentativeRejectIntermediateType{IRI: v}}, t.content...) } @@ -231082,20 +231103,20 @@ func (t *TentativeReject) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *TentativeReject) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *TentativeReject) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *TentativeReject) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextTentativeRejectIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *TentativeReject) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextTentativeRejectIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *TentativeReject) PrependContextIRI(v url.URL) { - t.context = append([]*contextTentativeRejectIntermediateType{&contextTentativeRejectIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *TentativeReject) PrependContextIRI(v *url.URL) { + t.context = append([]*contextTentativeRejectIntermediateType{&contextTentativeRejectIntermediateType{IRI: v}}, t.context...) } @@ -231207,20 +231228,20 @@ func (t *TentativeReject) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *TentativeReject) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *TentativeReject) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *TentativeReject) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameTentativeRejectIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *TentativeReject) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameTentativeRejectIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *TentativeReject) PrependNameIRI(v url.URL) { - t.name = append([]*nameTentativeRejectIntermediateType{&nameTentativeRejectIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *TentativeReject) PrependNameIRI(v *url.URL) { + t.name = append([]*nameTentativeRejectIntermediateType{&nameTentativeRejectIntermediateType{IRI: v}}, t.name...) } @@ -231315,14 +231336,14 @@ func (t *TentativeReject) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *TentativeReject) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *TentativeReject) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *TentativeReject) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeTentativeRejectIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *TentativeReject) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeTentativeRejectIntermediateType{IRI: v} } @@ -231426,20 +231447,20 @@ func (t *TentativeReject) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *TentativeReject) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *TentativeReject) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *TentativeReject) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorTentativeRejectIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *TentativeReject) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorTentativeRejectIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *TentativeReject) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorTentativeRejectIntermediateType{&generatorTentativeRejectIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *TentativeReject) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorTentativeRejectIntermediateType{&generatorTentativeRejectIntermediateType{IRI: v}}, t.generator...) } @@ -231551,20 +231572,20 @@ func (t *TentativeReject) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *TentativeReject) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *TentativeReject) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *TentativeReject) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconTentativeRejectIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *TentativeReject) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconTentativeRejectIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *TentativeReject) PrependIconIRI(v url.URL) { - t.icon = append([]*iconTentativeRejectIntermediateType{&iconTentativeRejectIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *TentativeReject) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconTentativeRejectIntermediateType{&iconTentativeRejectIntermediateType{IRI: v}}, t.icon...) } @@ -231606,14 +231627,14 @@ func (t *TentativeReject) HasId() (ok bool) { } // GetId returns the value for id -func (t *TentativeReject) GetId() (v url.URL) { - return *t.id +func (t *TentativeReject) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *TentativeReject) SetId(v url.URL) { - t.id = &v +func (t *TentativeReject) SetId(v *url.URL) { + t.id = v } @@ -231715,20 +231736,20 @@ func (t *TentativeReject) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *TentativeReject) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *TentativeReject) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *TentativeReject) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageTentativeRejectIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *TentativeReject) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageTentativeRejectIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *TentativeReject) PrependImageIRI(v url.URL) { - t.image = append([]*imageTentativeRejectIntermediateType{&imageTentativeRejectIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *TentativeReject) PrependImageIRI(v *url.URL) { + t.image = append([]*imageTentativeRejectIntermediateType{&imageTentativeRejectIntermediateType{IRI: v}}, t.image...) } @@ -231840,20 +231861,20 @@ func (t *TentativeReject) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *TentativeReject) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *TentativeReject) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *TentativeReject) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToTentativeRejectIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *TentativeReject) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToTentativeRejectIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *TentativeReject) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToTentativeRejectIntermediateType{&inReplyToTentativeRejectIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *TentativeReject) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToTentativeRejectIntermediateType{&inReplyToTentativeRejectIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -231965,20 +231986,20 @@ func (t *TentativeReject) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *TentativeReject) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *TentativeReject) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *TentativeReject) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationTentativeRejectIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *TentativeReject) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationTentativeRejectIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *TentativeReject) PrependLocationIRI(v url.URL) { - t.location = append([]*locationTentativeRejectIntermediateType{&locationTentativeRejectIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *TentativeReject) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationTentativeRejectIntermediateType{&locationTentativeRejectIntermediateType{IRI: v}}, t.location...) } @@ -232090,20 +232111,20 @@ func (t *TentativeReject) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *TentativeReject) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *TentativeReject) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *TentativeReject) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewTentativeRejectIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *TentativeReject) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewTentativeRejectIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *TentativeReject) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewTentativeRejectIntermediateType{&previewTentativeRejectIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *TentativeReject) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewTentativeRejectIntermediateType{&previewTentativeRejectIntermediateType{IRI: v}}, t.preview...) } @@ -232163,14 +232184,14 @@ func (t *TentativeReject) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *TentativeReject) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *TentativeReject) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *TentativeReject) SetPublishedIRI(v url.URL) { - t.published = &publishedTentativeRejectIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *TentativeReject) SetPublishedIRI(v *url.URL) { + t.published = &publishedTentativeRejectIntermediateType{IRI: v} } @@ -232222,14 +232243,14 @@ func (t *TentativeReject) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *TentativeReject) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *TentativeReject) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *TentativeReject) SetRepliesIRI(v url.URL) { - t.replies = &repliesTentativeRejectIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *TentativeReject) SetRepliesIRI(v *url.URL) { + t.replies = &repliesTentativeRejectIntermediateType{IRI: v} } @@ -232281,14 +232302,14 @@ func (t *TentativeReject) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *TentativeReject) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *TentativeReject) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *TentativeReject) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeTentativeRejectIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *TentativeReject) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeTentativeRejectIntermediateType{IRI: v} } @@ -232392,20 +232413,20 @@ func (t *TentativeReject) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *TentativeReject) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *TentativeReject) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *TentativeReject) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryTentativeRejectIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *TentativeReject) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryTentativeRejectIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *TentativeReject) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryTentativeRejectIntermediateType{&summaryTentativeRejectIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *TentativeReject) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryTentativeRejectIntermediateType{&summaryTentativeRejectIntermediateType{IRI: v}}, t.summary...) } @@ -232552,20 +232573,20 @@ func (t *TentativeReject) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *TentativeReject) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *TentativeReject) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *TentativeReject) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagTentativeRejectIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *TentativeReject) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagTentativeRejectIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *TentativeReject) PrependTagIRI(v url.URL) { - t.tag = append([]*tagTentativeRejectIntermediateType{&tagTentativeRejectIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *TentativeReject) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagTentativeRejectIntermediateType{&tagTentativeRejectIntermediateType{IRI: v}}, t.tag...) } @@ -232657,14 +232678,14 @@ func (t *TentativeReject) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *TentativeReject) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *TentativeReject) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *TentativeReject) SetUpdatedIRI(v url.URL) { - t.updated = &updatedTentativeRejectIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *TentativeReject) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedTentativeRejectIntermediateType{IRI: v} } @@ -232704,20 +232725,20 @@ func (t *TentativeReject) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *TentativeReject) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *TentativeReject) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *TentativeReject) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlTentativeRejectIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *TentativeReject) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlTentativeRejectIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *TentativeReject) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlTentativeRejectIntermediateType{&urlTentativeRejectIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *TentativeReject) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlTentativeRejectIntermediateType{&urlTentativeRejectIntermediateType{anyURI: v}}, t.url...) } @@ -232861,20 +232882,20 @@ func (t *TentativeReject) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *TentativeReject) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *TentativeReject) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *TentativeReject) AppendToIRI(v url.URL) { - t.to = append(t.to, &toTentativeRejectIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *TentativeReject) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toTentativeRejectIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *TentativeReject) PrependToIRI(v url.URL) { - t.to = append([]*toTentativeRejectIntermediateType{&toTentativeRejectIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *TentativeReject) PrependToIRI(v *url.URL) { + t.to = append([]*toTentativeRejectIntermediateType{&toTentativeRejectIntermediateType{IRI: v}}, t.to...) } @@ -232986,20 +233007,20 @@ func (t *TentativeReject) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *TentativeReject) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *TentativeReject) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *TentativeReject) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoTentativeRejectIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *TentativeReject) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoTentativeRejectIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *TentativeReject) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoTentativeRejectIntermediateType{&btoTentativeRejectIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *TentativeReject) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoTentativeRejectIntermediateType{&btoTentativeRejectIntermediateType{IRI: v}}, t.bto...) } @@ -233111,20 +233132,20 @@ func (t *TentativeReject) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *TentativeReject) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *TentativeReject) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *TentativeReject) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccTentativeRejectIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *TentativeReject) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccTentativeRejectIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *TentativeReject) PrependCcIRI(v url.URL) { - t.cc = append([]*ccTentativeRejectIntermediateType{&ccTentativeRejectIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *TentativeReject) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccTentativeRejectIntermediateType{&ccTentativeRejectIntermediateType{IRI: v}}, t.cc...) } @@ -233236,20 +233257,20 @@ func (t *TentativeReject) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *TentativeReject) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *TentativeReject) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *TentativeReject) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccTentativeRejectIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *TentativeReject) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccTentativeRejectIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *TentativeReject) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccTentativeRejectIntermediateType{&bccTentativeRejectIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *TentativeReject) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccTentativeRejectIntermediateType{&bccTentativeRejectIntermediateType{IRI: v}}, t.bcc...) } @@ -233309,14 +233330,14 @@ func (t *TentativeReject) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *TentativeReject) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *TentativeReject) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *TentativeReject) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeTentativeRejectIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *TentativeReject) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeTentativeRejectIntermediateType{IRI: v} } @@ -233368,14 +233389,14 @@ func (t *TentativeReject) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *TentativeReject) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *TentativeReject) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *TentativeReject) SetDurationIRI(v url.URL) { - t.duration = &durationTentativeRejectIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *TentativeReject) SetDurationIRI(v *url.URL) { + t.duration = &durationTentativeRejectIntermediateType{IRI: v} } @@ -233427,14 +233448,14 @@ func (t *TentativeReject) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *TentativeReject) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *TentativeReject) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *TentativeReject) SetSourceIRI(v url.URL) { - t.source = &sourceTentativeRejectIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *TentativeReject) SetSourceIRI(v *url.URL) { + t.source = &sourceTentativeRejectIntermediateType{IRI: v} } @@ -233486,14 +233507,14 @@ func (t *TentativeReject) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *TentativeReject) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *TentativeReject) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *TentativeReject) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxTentativeRejectIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *TentativeReject) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxTentativeRejectIntermediateType{anyURI: v} } @@ -233545,14 +233566,14 @@ func (t *TentativeReject) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *TentativeReject) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *TentativeReject) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *TentativeReject) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxTentativeRejectIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *TentativeReject) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxTentativeRejectIntermediateType{anyURI: v} } @@ -233622,14 +233643,14 @@ func (t *TentativeReject) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *TentativeReject) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *TentativeReject) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *TentativeReject) SetFollowingAnyURI(v url.URL) { - t.following = &followingTentativeRejectIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *TentativeReject) SetFollowingAnyURI(v *url.URL) { + t.following = &followingTentativeRejectIntermediateType{anyURI: v} } @@ -233699,14 +233720,14 @@ func (t *TentativeReject) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *TentativeReject) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *TentativeReject) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *TentativeReject) SetFollowersAnyURI(v url.URL) { - t.followers = &followersTentativeRejectIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *TentativeReject) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersTentativeRejectIntermediateType{anyURI: v} } @@ -233776,14 +233797,14 @@ func (t *TentativeReject) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *TentativeReject) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *TentativeReject) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *TentativeReject) SetLikedAnyURI(v url.URL) { - t.liked = &likedTentativeRejectIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *TentativeReject) SetLikedAnyURI(v *url.URL) { + t.liked = &likedTentativeRejectIntermediateType{anyURI: v} } @@ -233853,14 +233874,14 @@ func (t *TentativeReject) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *TentativeReject) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *TentativeReject) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *TentativeReject) SetLikesAnyURI(v url.URL) { - t.likes = &likesTentativeRejectIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *TentativeReject) SetLikesAnyURI(v *url.URL) { + t.likes = &likesTentativeRejectIntermediateType{anyURI: v} } @@ -233894,26 +233915,27 @@ func (t *TentativeReject) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *TentativeReject) GetStreams(index int) (v url.URL) { +func (t *TentativeReject) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *TentativeReject) AppendStreams(v url.URL) { +func (t *TentativeReject) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *TentativeReject) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *TentativeReject) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *TentativeReject) 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] } @@ -233964,14 +233986,14 @@ func (t *TentativeReject) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *TentativeReject) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *TentativeReject) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *TentativeReject) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameTentativeRejectIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *TentativeReject) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameTentativeRejectIntermediateType{IRI: v} } @@ -234058,14 +234080,14 @@ func (t *TentativeReject) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *TentativeReject) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *TentativeReject) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *TentativeReject) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsTentativeRejectIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *TentativeReject) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsTentativeRejectIntermediateType{IRI: v} } @@ -234099,14 +234121,14 @@ func (t *TentativeReject) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *TentativeReject) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *TentativeReject) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *TentativeReject) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *TentativeReject) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -234138,14 +234160,14 @@ func (t *TentativeReject) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *TentativeReject) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *TentativeReject) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *TentativeReject) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *TentativeReject) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -234177,14 +234199,14 @@ func (t *TentativeReject) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *TentativeReject) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *TentativeReject) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *TentativeReject) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *TentativeReject) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -234216,14 +234238,14 @@ func (t *TentativeReject) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *TentativeReject) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *TentativeReject) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *TentativeReject) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *TentativeReject) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -234255,14 +234277,14 @@ func (t *TentativeReject) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *TentativeReject) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *TentativeReject) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *TentativeReject) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *TentativeReject) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -234294,14 +234316,14 @@ func (t *TentativeReject) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *TentativeReject) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *TentativeReject) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *TentativeReject) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *TentativeReject) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -234559,7 +234581,7 @@ func (t *TentativeReject) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -234865,7 +234887,7 @@ func (t *TentativeReject) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -234880,7 +234902,7 @@ func (t *TentativeReject) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -234895,7 +234917,7 @@ func (t *TentativeReject) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -234910,7 +234932,7 @@ func (t *TentativeReject) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -234925,7 +234947,7 @@ func (t *TentativeReject) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -234940,7 +234962,7 @@ func (t *TentativeReject) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -235906,7 +235928,7 @@ func (t *TentativeReject) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -235915,7 +235937,7 @@ func (t *TentativeReject) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -236129,7 +236151,7 @@ func (t *actorTentativeRejectIntermediateType) Serialize() (i interface{}, err e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -236197,7 +236219,7 @@ func (t *objectTentativeRejectIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -236280,7 +236302,7 @@ func (t *targetTentativeRejectIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -236363,7 +236385,7 @@ func (t *resultTentativeRejectIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -236446,7 +236468,7 @@ func (t *originTentativeRejectIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -236529,7 +236551,7 @@ func (t *instrumentTentativeRejectIntermediateType) Serialize() (i interface{}, return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -236583,7 +236605,7 @@ func (t *altitudeTentativeRejectIntermediateType) Serialize() (i interface{}, er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -236666,7 +236688,7 @@ func (t *attachmentTentativeRejectIntermediateType) Serialize() (i interface{}, return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -236749,7 +236771,7 @@ func (t *attributedToTentativeRejectIntermediateType) Serialize() (i interface{} return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -236832,7 +236854,7 @@ func (t *audienceTentativeRejectIntermediateType) Serialize() (i interface{}, er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -236900,7 +236922,7 @@ func (t *contentTentativeRejectIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -236983,7 +237005,7 @@ func (t *contextTentativeRejectIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -237051,7 +237073,7 @@ func (t *nameTentativeRejectIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -237105,7 +237127,7 @@ func (t *endTimeTentativeRejectIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -237188,7 +237210,7 @@ func (t *generatorTentativeRejectIntermediateType) Serialize() (i interface{}, e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -237271,7 +237293,7 @@ func (t *iconTentativeRejectIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -237354,7 +237376,7 @@ func (t *imageTentativeRejectIntermediateType) Serialize() (i interface{}, err e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -237437,7 +237459,7 @@ func (t *inReplyToTentativeRejectIntermediateType) Serialize() (i interface{}, e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -237520,7 +237542,7 @@ func (t *locationTentativeRejectIntermediateType) Serialize() (i interface{}, er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -237603,7 +237625,7 @@ func (t *previewTentativeRejectIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -237657,7 +237679,7 @@ func (t *publishedTentativeRejectIntermediateType) Serialize() (i interface{}, e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -237725,7 +237747,7 @@ func (t *repliesTentativeRejectIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -237779,7 +237801,7 @@ func (t *startTimeTentativeRejectIntermediateType) Serialize() (i interface{}, e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -237847,7 +237869,7 @@ func (t *summaryTentativeRejectIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -237930,7 +237952,7 @@ func (t *tagTentativeRejectIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -237984,7 +238006,7 @@ func (t *updatedTentativeRejectIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -238048,7 +238070,7 @@ func (t *urlTentativeRejectIntermediateType) Deserialize(i interface{}) (err err // Serialize turns this object into an interface{}. func (t *urlTentativeRejectIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -238135,7 +238157,7 @@ func (t *toTentativeRejectIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -238218,7 +238240,7 @@ func (t *btoTentativeRejectIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -238301,7 +238323,7 @@ func (t *ccTentativeRejectIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -238384,7 +238406,7 @@ func (t *bccTentativeRejectIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -238438,7 +238460,7 @@ func (t *mediaTypeTentativeRejectIntermediateType) Serialize() (i interface{}, e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -238492,7 +238514,7 @@ func (t *durationTentativeRejectIntermediateType) Serialize() (i interface{}, er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -238560,7 +238582,7 @@ func (t *sourceTentativeRejectIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -238628,7 +238650,7 @@ func (t *inboxTentativeRejectIntermediateType) Serialize() (i interface{}, err e return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -238696,7 +238718,7 @@ func (t *outboxTentativeRejectIntermediateType) Serialize() (i interface{}, err return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -238779,7 +238801,7 @@ func (t *followingTentativeRejectIntermediateType) Serialize() (i interface{}, e return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -238862,7 +238884,7 @@ func (t *followersTentativeRejectIntermediateType) Serialize() (i interface{}, e return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -238945,7 +238967,7 @@ func (t *likedTentativeRejectIntermediateType) Serialize() (i interface{}, err e return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -239028,7 +239050,7 @@ func (t *likesTentativeRejectIntermediateType) Serialize() (i interface{}, err e return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -239082,7 +239104,7 @@ func (t *preferredUsernameTentativeRejectIntermediateType) Serialize() (i interf return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -239150,7 +239172,7 @@ func (t *endpointsTentativeRejectIntermediateType) Serialize() (i interface{}, e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -239252,7 +239274,7 @@ type Remove struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesRemoveIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameRemoveIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -239350,20 +239372,20 @@ func (t *Remove) IsActorIRI(index int) (ok bool) { } // GetActorIRI returns the value safely if IsActorIRI returned true for the specified index -func (t *Remove) GetActorIRI(index int) (v url.URL) { - return *t.actor[index].IRI +func (t *Remove) GetActorIRI(index int) (v *url.URL) { + return t.actor[index].IRI } -// AppendActorIRI adds to the back of actor a url.URL type -func (t *Remove) AppendActorIRI(v url.URL) { - t.actor = append(t.actor, &actorRemoveIntermediateType{IRI: &v}) +// AppendActorIRI adds to the back of actor a *url.URL type +func (t *Remove) AppendActorIRI(v *url.URL) { + t.actor = append(t.actor, &actorRemoveIntermediateType{IRI: v}) } -// PrependActorIRI adds to the front of actor a url.URL type -func (t *Remove) PrependActorIRI(v url.URL) { - t.actor = append([]*actorRemoveIntermediateType{&actorRemoveIntermediateType{IRI: &v}}, t.actor...) +// PrependActorIRI adds to the front of actor a *url.URL type +func (t *Remove) PrependActorIRI(v *url.URL) { + t.actor = append([]*actorRemoveIntermediateType{&actorRemoveIntermediateType{IRI: v}}, t.actor...) } @@ -239443,20 +239465,20 @@ func (t *Remove) IsObjectIRI(index int) (ok bool) { } // GetObjectIRI returns the value safely if IsObjectIRI returned true for the specified index -func (t *Remove) GetObjectIRI(index int) (v url.URL) { - return *t.object[index].IRI +func (t *Remove) GetObjectIRI(index int) (v *url.URL) { + return t.object[index].IRI } -// AppendObjectIRI adds to the back of object a url.URL type -func (t *Remove) AppendObjectIRI(v url.URL) { - t.object = append(t.object, &objectRemoveIntermediateType{IRI: &v}) +// AppendObjectIRI adds to the back of object a *url.URL type +func (t *Remove) AppendObjectIRI(v *url.URL) { + t.object = append(t.object, &objectRemoveIntermediateType{IRI: v}) } -// PrependObjectIRI adds to the front of object a url.URL type -func (t *Remove) PrependObjectIRI(v url.URL) { - t.object = append([]*objectRemoveIntermediateType{&objectRemoveIntermediateType{IRI: &v}}, t.object...) +// PrependObjectIRI adds to the front of object a *url.URL type +func (t *Remove) PrependObjectIRI(v *url.URL) { + t.object = append([]*objectRemoveIntermediateType{&objectRemoveIntermediateType{IRI: v}}, t.object...) } @@ -239568,20 +239590,20 @@ func (t *Remove) IsTargetIRI(index int) (ok bool) { } // GetTargetIRI returns the value safely if IsTargetIRI returned true for the specified index -func (t *Remove) GetTargetIRI(index int) (v url.URL) { - return *t.target[index].IRI +func (t *Remove) GetTargetIRI(index int) (v *url.URL) { + return t.target[index].IRI } -// AppendTargetIRI adds to the back of target a url.URL type -func (t *Remove) AppendTargetIRI(v url.URL) { - t.target = append(t.target, &targetRemoveIntermediateType{IRI: &v}) +// AppendTargetIRI adds to the back of target a *url.URL type +func (t *Remove) AppendTargetIRI(v *url.URL) { + t.target = append(t.target, &targetRemoveIntermediateType{IRI: v}) } -// PrependTargetIRI adds to the front of target a url.URL type -func (t *Remove) PrependTargetIRI(v url.URL) { - t.target = append([]*targetRemoveIntermediateType{&targetRemoveIntermediateType{IRI: &v}}, t.target...) +// PrependTargetIRI adds to the front of target a *url.URL type +func (t *Remove) PrependTargetIRI(v *url.URL) { + t.target = append([]*targetRemoveIntermediateType{&targetRemoveIntermediateType{IRI: v}}, t.target...) } @@ -239693,20 +239715,20 @@ func (t *Remove) IsResultIRI(index int) (ok bool) { } // GetResultIRI returns the value safely if IsResultIRI returned true for the specified index -func (t *Remove) GetResultIRI(index int) (v url.URL) { - return *t.result[index].IRI +func (t *Remove) GetResultIRI(index int) (v *url.URL) { + return t.result[index].IRI } -// AppendResultIRI adds to the back of result a url.URL type -func (t *Remove) AppendResultIRI(v url.URL) { - t.result = append(t.result, &resultRemoveIntermediateType{IRI: &v}) +// AppendResultIRI adds to the back of result a *url.URL type +func (t *Remove) AppendResultIRI(v *url.URL) { + t.result = append(t.result, &resultRemoveIntermediateType{IRI: v}) } -// PrependResultIRI adds to the front of result a url.URL type -func (t *Remove) PrependResultIRI(v url.URL) { - t.result = append([]*resultRemoveIntermediateType{&resultRemoveIntermediateType{IRI: &v}}, t.result...) +// PrependResultIRI adds to the front of result a *url.URL type +func (t *Remove) PrependResultIRI(v *url.URL) { + t.result = append([]*resultRemoveIntermediateType{&resultRemoveIntermediateType{IRI: v}}, t.result...) } @@ -239818,20 +239840,20 @@ func (t *Remove) IsOriginIRI(index int) (ok bool) { } // GetOriginIRI returns the value safely if IsOriginIRI returned true for the specified index -func (t *Remove) GetOriginIRI(index int) (v url.URL) { - return *t.origin[index].IRI +func (t *Remove) GetOriginIRI(index int) (v *url.URL) { + return t.origin[index].IRI } -// AppendOriginIRI adds to the back of origin a url.URL type -func (t *Remove) AppendOriginIRI(v url.URL) { - t.origin = append(t.origin, &originRemoveIntermediateType{IRI: &v}) +// AppendOriginIRI adds to the back of origin a *url.URL type +func (t *Remove) AppendOriginIRI(v *url.URL) { + t.origin = append(t.origin, &originRemoveIntermediateType{IRI: v}) } -// PrependOriginIRI adds to the front of origin a url.URL type -func (t *Remove) PrependOriginIRI(v url.URL) { - t.origin = append([]*originRemoveIntermediateType{&originRemoveIntermediateType{IRI: &v}}, t.origin...) +// PrependOriginIRI adds to the front of origin a *url.URL type +func (t *Remove) PrependOriginIRI(v *url.URL) { + t.origin = append([]*originRemoveIntermediateType{&originRemoveIntermediateType{IRI: v}}, t.origin...) } @@ -239943,20 +239965,20 @@ func (t *Remove) IsInstrumentIRI(index int) (ok bool) { } // GetInstrumentIRI returns the value safely if IsInstrumentIRI returned true for the specified index -func (t *Remove) GetInstrumentIRI(index int) (v url.URL) { - return *t.instrument[index].IRI +func (t *Remove) GetInstrumentIRI(index int) (v *url.URL) { + return t.instrument[index].IRI } -// AppendInstrumentIRI adds to the back of instrument a url.URL type -func (t *Remove) AppendInstrumentIRI(v url.URL) { - t.instrument = append(t.instrument, &instrumentRemoveIntermediateType{IRI: &v}) +// AppendInstrumentIRI adds to the back of instrument a *url.URL type +func (t *Remove) AppendInstrumentIRI(v *url.URL) { + t.instrument = append(t.instrument, &instrumentRemoveIntermediateType{IRI: v}) } -// PrependInstrumentIRI adds to the front of instrument a url.URL type -func (t *Remove) PrependInstrumentIRI(v url.URL) { - t.instrument = append([]*instrumentRemoveIntermediateType{&instrumentRemoveIntermediateType{IRI: &v}}, t.instrument...) +// PrependInstrumentIRI adds to the front of instrument a *url.URL type +func (t *Remove) PrependInstrumentIRI(v *url.URL) { + t.instrument = append([]*instrumentRemoveIntermediateType{&instrumentRemoveIntermediateType{IRI: v}}, t.instrument...) } @@ -240016,14 +240038,14 @@ func (t *Remove) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Remove) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Remove) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Remove) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeRemoveIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Remove) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeRemoveIntermediateType{IRI: v} } @@ -240127,20 +240149,20 @@ func (t *Remove) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Remove) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Remove) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Remove) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentRemoveIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Remove) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentRemoveIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Remove) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentRemoveIntermediateType{&attachmentRemoveIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Remove) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentRemoveIntermediateType{&attachmentRemoveIntermediateType{IRI: v}}, t.attachment...) } @@ -240252,20 +240274,20 @@ func (t *Remove) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Remove) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Remove) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Remove) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToRemoveIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Remove) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToRemoveIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Remove) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToRemoveIntermediateType{&attributedToRemoveIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Remove) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToRemoveIntermediateType{&attributedToRemoveIntermediateType{IRI: v}}, t.attributedTo...) } @@ -240377,20 +240399,20 @@ func (t *Remove) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Remove) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Remove) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Remove) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceRemoveIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Remove) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceRemoveIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Remove) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceRemoveIntermediateType{&audienceRemoveIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Remove) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceRemoveIntermediateType{&audienceRemoveIntermediateType{IRI: v}}, t.audience...) } @@ -240502,20 +240524,20 @@ func (t *Remove) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Remove) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Remove) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Remove) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentRemoveIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Remove) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentRemoveIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Remove) PrependContentIRI(v url.URL) { - t.content = append([]*contentRemoveIntermediateType{&contentRemoveIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Remove) PrependContentIRI(v *url.URL) { + t.content = append([]*contentRemoveIntermediateType{&contentRemoveIntermediateType{IRI: v}}, t.content...) } @@ -240662,20 +240684,20 @@ func (t *Remove) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Remove) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Remove) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Remove) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextRemoveIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Remove) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextRemoveIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Remove) PrependContextIRI(v url.URL) { - t.context = append([]*contextRemoveIntermediateType{&contextRemoveIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Remove) PrependContextIRI(v *url.URL) { + t.context = append([]*contextRemoveIntermediateType{&contextRemoveIntermediateType{IRI: v}}, t.context...) } @@ -240787,20 +240809,20 @@ func (t *Remove) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Remove) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Remove) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Remove) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameRemoveIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Remove) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameRemoveIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Remove) PrependNameIRI(v url.URL) { - t.name = append([]*nameRemoveIntermediateType{&nameRemoveIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Remove) PrependNameIRI(v *url.URL) { + t.name = append([]*nameRemoveIntermediateType{&nameRemoveIntermediateType{IRI: v}}, t.name...) } @@ -240895,14 +240917,14 @@ func (t *Remove) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Remove) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Remove) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Remove) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeRemoveIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Remove) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeRemoveIntermediateType{IRI: v} } @@ -241006,20 +241028,20 @@ func (t *Remove) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Remove) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Remove) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Remove) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorRemoveIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Remove) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorRemoveIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Remove) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorRemoveIntermediateType{&generatorRemoveIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Remove) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorRemoveIntermediateType{&generatorRemoveIntermediateType{IRI: v}}, t.generator...) } @@ -241131,20 +241153,20 @@ func (t *Remove) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Remove) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Remove) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Remove) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconRemoveIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Remove) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconRemoveIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Remove) PrependIconIRI(v url.URL) { - t.icon = append([]*iconRemoveIntermediateType{&iconRemoveIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Remove) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconRemoveIntermediateType{&iconRemoveIntermediateType{IRI: v}}, t.icon...) } @@ -241186,14 +241208,14 @@ func (t *Remove) HasId() (ok bool) { } // GetId returns the value for id -func (t *Remove) GetId() (v url.URL) { - return *t.id +func (t *Remove) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Remove) SetId(v url.URL) { - t.id = &v +func (t *Remove) SetId(v *url.URL) { + t.id = v } @@ -241295,20 +241317,20 @@ func (t *Remove) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Remove) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Remove) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Remove) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageRemoveIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Remove) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageRemoveIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Remove) PrependImageIRI(v url.URL) { - t.image = append([]*imageRemoveIntermediateType{&imageRemoveIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Remove) PrependImageIRI(v *url.URL) { + t.image = append([]*imageRemoveIntermediateType{&imageRemoveIntermediateType{IRI: v}}, t.image...) } @@ -241420,20 +241442,20 @@ func (t *Remove) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Remove) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Remove) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Remove) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToRemoveIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Remove) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToRemoveIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Remove) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToRemoveIntermediateType{&inReplyToRemoveIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Remove) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToRemoveIntermediateType{&inReplyToRemoveIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -241545,20 +241567,20 @@ func (t *Remove) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Remove) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Remove) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Remove) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationRemoveIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Remove) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationRemoveIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Remove) PrependLocationIRI(v url.URL) { - t.location = append([]*locationRemoveIntermediateType{&locationRemoveIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Remove) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationRemoveIntermediateType{&locationRemoveIntermediateType{IRI: v}}, t.location...) } @@ -241670,20 +241692,20 @@ func (t *Remove) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Remove) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Remove) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Remove) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewRemoveIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Remove) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewRemoveIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Remove) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewRemoveIntermediateType{&previewRemoveIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Remove) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewRemoveIntermediateType{&previewRemoveIntermediateType{IRI: v}}, t.preview...) } @@ -241743,14 +241765,14 @@ func (t *Remove) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Remove) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Remove) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Remove) SetPublishedIRI(v url.URL) { - t.published = &publishedRemoveIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Remove) SetPublishedIRI(v *url.URL) { + t.published = &publishedRemoveIntermediateType{IRI: v} } @@ -241802,14 +241824,14 @@ func (t *Remove) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Remove) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Remove) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Remove) SetRepliesIRI(v url.URL) { - t.replies = &repliesRemoveIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Remove) SetRepliesIRI(v *url.URL) { + t.replies = &repliesRemoveIntermediateType{IRI: v} } @@ -241861,14 +241883,14 @@ func (t *Remove) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Remove) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Remove) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Remove) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeRemoveIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Remove) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeRemoveIntermediateType{IRI: v} } @@ -241972,20 +241994,20 @@ func (t *Remove) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Remove) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Remove) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Remove) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryRemoveIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Remove) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryRemoveIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Remove) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryRemoveIntermediateType{&summaryRemoveIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Remove) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryRemoveIntermediateType{&summaryRemoveIntermediateType{IRI: v}}, t.summary...) } @@ -242132,20 +242154,20 @@ func (t *Remove) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Remove) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Remove) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Remove) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagRemoveIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Remove) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagRemoveIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Remove) PrependTagIRI(v url.URL) { - t.tag = append([]*tagRemoveIntermediateType{&tagRemoveIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Remove) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagRemoveIntermediateType{&tagRemoveIntermediateType{IRI: v}}, t.tag...) } @@ -242237,14 +242259,14 @@ func (t *Remove) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Remove) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Remove) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Remove) SetUpdatedIRI(v url.URL) { - t.updated = &updatedRemoveIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Remove) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedRemoveIntermediateType{IRI: v} } @@ -242284,20 +242306,20 @@ func (t *Remove) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Remove) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Remove) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Remove) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlRemoveIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Remove) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlRemoveIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Remove) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlRemoveIntermediateType{&urlRemoveIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Remove) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlRemoveIntermediateType{&urlRemoveIntermediateType{anyURI: v}}, t.url...) } @@ -242441,20 +242463,20 @@ func (t *Remove) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Remove) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Remove) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Remove) AppendToIRI(v url.URL) { - t.to = append(t.to, &toRemoveIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Remove) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toRemoveIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Remove) PrependToIRI(v url.URL) { - t.to = append([]*toRemoveIntermediateType{&toRemoveIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Remove) PrependToIRI(v *url.URL) { + t.to = append([]*toRemoveIntermediateType{&toRemoveIntermediateType{IRI: v}}, t.to...) } @@ -242566,20 +242588,20 @@ func (t *Remove) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Remove) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Remove) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Remove) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoRemoveIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Remove) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoRemoveIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Remove) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoRemoveIntermediateType{&btoRemoveIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Remove) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoRemoveIntermediateType{&btoRemoveIntermediateType{IRI: v}}, t.bto...) } @@ -242691,20 +242713,20 @@ func (t *Remove) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Remove) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Remove) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Remove) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccRemoveIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Remove) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccRemoveIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Remove) PrependCcIRI(v url.URL) { - t.cc = append([]*ccRemoveIntermediateType{&ccRemoveIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Remove) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccRemoveIntermediateType{&ccRemoveIntermediateType{IRI: v}}, t.cc...) } @@ -242816,20 +242838,20 @@ func (t *Remove) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Remove) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Remove) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Remove) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccRemoveIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Remove) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccRemoveIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Remove) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccRemoveIntermediateType{&bccRemoveIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Remove) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccRemoveIntermediateType{&bccRemoveIntermediateType{IRI: v}}, t.bcc...) } @@ -242889,14 +242911,14 @@ func (t *Remove) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Remove) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Remove) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Remove) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeRemoveIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Remove) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeRemoveIntermediateType{IRI: v} } @@ -242948,14 +242970,14 @@ func (t *Remove) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Remove) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Remove) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Remove) SetDurationIRI(v url.URL) { - t.duration = &durationRemoveIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Remove) SetDurationIRI(v *url.URL) { + t.duration = &durationRemoveIntermediateType{IRI: v} } @@ -243007,14 +243029,14 @@ func (t *Remove) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Remove) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Remove) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Remove) SetSourceIRI(v url.URL) { - t.source = &sourceRemoveIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Remove) SetSourceIRI(v *url.URL) { + t.source = &sourceRemoveIntermediateType{IRI: v} } @@ -243066,14 +243088,14 @@ func (t *Remove) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Remove) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Remove) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Remove) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxRemoveIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Remove) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxRemoveIntermediateType{anyURI: v} } @@ -243125,14 +243147,14 @@ func (t *Remove) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Remove) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Remove) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Remove) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxRemoveIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Remove) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxRemoveIntermediateType{anyURI: v} } @@ -243202,14 +243224,14 @@ func (t *Remove) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Remove) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Remove) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Remove) SetFollowingAnyURI(v url.URL) { - t.following = &followingRemoveIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Remove) SetFollowingAnyURI(v *url.URL) { + t.following = &followingRemoveIntermediateType{anyURI: v} } @@ -243279,14 +243301,14 @@ func (t *Remove) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Remove) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Remove) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Remove) SetFollowersAnyURI(v url.URL) { - t.followers = &followersRemoveIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Remove) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersRemoveIntermediateType{anyURI: v} } @@ -243356,14 +243378,14 @@ func (t *Remove) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Remove) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Remove) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Remove) SetLikedAnyURI(v url.URL) { - t.liked = &likedRemoveIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Remove) SetLikedAnyURI(v *url.URL) { + t.liked = &likedRemoveIntermediateType{anyURI: v} } @@ -243433,14 +243455,14 @@ func (t *Remove) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Remove) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Remove) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Remove) SetLikesAnyURI(v url.URL) { - t.likes = &likesRemoveIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Remove) SetLikesAnyURI(v *url.URL) { + t.likes = &likesRemoveIntermediateType{anyURI: v} } @@ -243474,26 +243496,27 @@ func (t *Remove) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Remove) GetStreams(index int) (v url.URL) { +func (t *Remove) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Remove) AppendStreams(v url.URL) { +func (t *Remove) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Remove) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Remove) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Remove) 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] } @@ -243544,14 +243567,14 @@ func (t *Remove) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Remove) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Remove) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Remove) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameRemoveIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Remove) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameRemoveIntermediateType{IRI: v} } @@ -243638,14 +243661,14 @@ func (t *Remove) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Remove) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Remove) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Remove) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsRemoveIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Remove) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsRemoveIntermediateType{IRI: v} } @@ -243679,14 +243702,14 @@ func (t *Remove) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Remove) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Remove) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Remove) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Remove) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -243718,14 +243741,14 @@ func (t *Remove) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Remove) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Remove) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Remove) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Remove) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -243757,14 +243780,14 @@ func (t *Remove) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Remove) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Remove) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Remove) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Remove) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -243796,14 +243819,14 @@ func (t *Remove) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Remove) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Remove) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Remove) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Remove) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -243835,14 +243858,14 @@ func (t *Remove) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Remove) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Remove) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Remove) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Remove) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -243874,14 +243897,14 @@ func (t *Remove) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Remove) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Remove) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Remove) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Remove) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -244139,7 +244162,7 @@ func (t *Remove) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -244445,7 +244468,7 @@ func (t *Remove) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -244460,7 +244483,7 @@ func (t *Remove) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -244475,7 +244498,7 @@ func (t *Remove) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -244490,7 +244513,7 @@ func (t *Remove) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -244505,7 +244528,7 @@ func (t *Remove) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -244520,7 +244543,7 @@ func (t *Remove) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -245486,7 +245509,7 @@ func (t *Remove) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -245495,7 +245518,7 @@ func (t *Remove) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -245709,7 +245732,7 @@ func (t *actorRemoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -245777,7 +245800,7 @@ func (t *objectRemoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -245860,7 +245883,7 @@ func (t *targetRemoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -245943,7 +245966,7 @@ func (t *resultRemoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -246026,7 +246049,7 @@ func (t *originRemoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -246109,7 +246132,7 @@ func (t *instrumentRemoveIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -246163,7 +246186,7 @@ func (t *altitudeRemoveIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -246246,7 +246269,7 @@ func (t *attachmentRemoveIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -246329,7 +246352,7 @@ func (t *attributedToRemoveIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -246412,7 +246435,7 @@ func (t *audienceRemoveIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -246480,7 +246503,7 @@ func (t *contentRemoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -246563,7 +246586,7 @@ func (t *contextRemoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -246631,7 +246654,7 @@ func (t *nameRemoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -246685,7 +246708,7 @@ func (t *endTimeRemoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -246768,7 +246791,7 @@ func (t *generatorRemoveIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -246851,7 +246874,7 @@ func (t *iconRemoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -246934,7 +246957,7 @@ func (t *imageRemoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -247017,7 +247040,7 @@ func (t *inReplyToRemoveIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -247100,7 +247123,7 @@ func (t *locationRemoveIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -247183,7 +247206,7 @@ func (t *previewRemoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -247237,7 +247260,7 @@ func (t *publishedRemoveIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -247305,7 +247328,7 @@ func (t *repliesRemoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -247359,7 +247382,7 @@ func (t *startTimeRemoveIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -247427,7 +247450,7 @@ func (t *summaryRemoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -247510,7 +247533,7 @@ func (t *tagRemoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -247564,7 +247587,7 @@ func (t *updatedRemoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -247628,7 +247651,7 @@ func (t *urlRemoveIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlRemoveIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -247715,7 +247738,7 @@ func (t *toRemoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -247798,7 +247821,7 @@ func (t *btoRemoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -247881,7 +247904,7 @@ func (t *ccRemoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -247964,7 +247987,7 @@ func (t *bccRemoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -248018,7 +248041,7 @@ func (t *mediaTypeRemoveIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -248072,7 +248095,7 @@ func (t *durationRemoveIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -248140,7 +248163,7 @@ func (t *sourceRemoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -248208,7 +248231,7 @@ func (t *inboxRemoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -248276,7 +248299,7 @@ func (t *outboxRemoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -248359,7 +248382,7 @@ func (t *followingRemoveIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -248442,7 +248465,7 @@ func (t *followersRemoveIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -248525,7 +248548,7 @@ func (t *likedRemoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -248608,7 +248631,7 @@ func (t *likesRemoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -248662,7 +248685,7 @@ func (t *preferredUsernameRemoveIntermediateType) Serialize() (i interface{}, er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -248730,7 +248753,7 @@ func (t *endpointsRemoveIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -248832,7 +248855,7 @@ type Undo struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesUndoIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameUndoIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -248930,20 +248953,20 @@ func (t *Undo) IsActorIRI(index int) (ok bool) { } // GetActorIRI returns the value safely if IsActorIRI returned true for the specified index -func (t *Undo) GetActorIRI(index int) (v url.URL) { - return *t.actor[index].IRI +func (t *Undo) GetActorIRI(index int) (v *url.URL) { + return t.actor[index].IRI } -// AppendActorIRI adds to the back of actor a url.URL type -func (t *Undo) AppendActorIRI(v url.URL) { - t.actor = append(t.actor, &actorUndoIntermediateType{IRI: &v}) +// AppendActorIRI adds to the back of actor a *url.URL type +func (t *Undo) AppendActorIRI(v *url.URL) { + t.actor = append(t.actor, &actorUndoIntermediateType{IRI: v}) } -// PrependActorIRI adds to the front of actor a url.URL type -func (t *Undo) PrependActorIRI(v url.URL) { - t.actor = append([]*actorUndoIntermediateType{&actorUndoIntermediateType{IRI: &v}}, t.actor...) +// PrependActorIRI adds to the front of actor a *url.URL type +func (t *Undo) PrependActorIRI(v *url.URL) { + t.actor = append([]*actorUndoIntermediateType{&actorUndoIntermediateType{IRI: v}}, t.actor...) } @@ -249023,20 +249046,20 @@ func (t *Undo) IsObjectIRI(index int) (ok bool) { } // GetObjectIRI returns the value safely if IsObjectIRI returned true for the specified index -func (t *Undo) GetObjectIRI(index int) (v url.URL) { - return *t.object[index].IRI +func (t *Undo) GetObjectIRI(index int) (v *url.URL) { + return t.object[index].IRI } -// AppendObjectIRI adds to the back of object a url.URL type -func (t *Undo) AppendObjectIRI(v url.URL) { - t.object = append(t.object, &objectUndoIntermediateType{IRI: &v}) +// AppendObjectIRI adds to the back of object a *url.URL type +func (t *Undo) AppendObjectIRI(v *url.URL) { + t.object = append(t.object, &objectUndoIntermediateType{IRI: v}) } -// PrependObjectIRI adds to the front of object a url.URL type -func (t *Undo) PrependObjectIRI(v url.URL) { - t.object = append([]*objectUndoIntermediateType{&objectUndoIntermediateType{IRI: &v}}, t.object...) +// PrependObjectIRI adds to the front of object a *url.URL type +func (t *Undo) PrependObjectIRI(v *url.URL) { + t.object = append([]*objectUndoIntermediateType{&objectUndoIntermediateType{IRI: v}}, t.object...) } @@ -249148,20 +249171,20 @@ func (t *Undo) IsTargetIRI(index int) (ok bool) { } // GetTargetIRI returns the value safely if IsTargetIRI returned true for the specified index -func (t *Undo) GetTargetIRI(index int) (v url.URL) { - return *t.target[index].IRI +func (t *Undo) GetTargetIRI(index int) (v *url.URL) { + return t.target[index].IRI } -// AppendTargetIRI adds to the back of target a url.URL type -func (t *Undo) AppendTargetIRI(v url.URL) { - t.target = append(t.target, &targetUndoIntermediateType{IRI: &v}) +// AppendTargetIRI adds to the back of target a *url.URL type +func (t *Undo) AppendTargetIRI(v *url.URL) { + t.target = append(t.target, &targetUndoIntermediateType{IRI: v}) } -// PrependTargetIRI adds to the front of target a url.URL type -func (t *Undo) PrependTargetIRI(v url.URL) { - t.target = append([]*targetUndoIntermediateType{&targetUndoIntermediateType{IRI: &v}}, t.target...) +// PrependTargetIRI adds to the front of target a *url.URL type +func (t *Undo) PrependTargetIRI(v *url.URL) { + t.target = append([]*targetUndoIntermediateType{&targetUndoIntermediateType{IRI: v}}, t.target...) } @@ -249273,20 +249296,20 @@ func (t *Undo) IsResultIRI(index int) (ok bool) { } // GetResultIRI returns the value safely if IsResultIRI returned true for the specified index -func (t *Undo) GetResultIRI(index int) (v url.URL) { - return *t.result[index].IRI +func (t *Undo) GetResultIRI(index int) (v *url.URL) { + return t.result[index].IRI } -// AppendResultIRI adds to the back of result a url.URL type -func (t *Undo) AppendResultIRI(v url.URL) { - t.result = append(t.result, &resultUndoIntermediateType{IRI: &v}) +// AppendResultIRI adds to the back of result a *url.URL type +func (t *Undo) AppendResultIRI(v *url.URL) { + t.result = append(t.result, &resultUndoIntermediateType{IRI: v}) } -// PrependResultIRI adds to the front of result a url.URL type -func (t *Undo) PrependResultIRI(v url.URL) { - t.result = append([]*resultUndoIntermediateType{&resultUndoIntermediateType{IRI: &v}}, t.result...) +// PrependResultIRI adds to the front of result a *url.URL type +func (t *Undo) PrependResultIRI(v *url.URL) { + t.result = append([]*resultUndoIntermediateType{&resultUndoIntermediateType{IRI: v}}, t.result...) } @@ -249398,20 +249421,20 @@ func (t *Undo) IsOriginIRI(index int) (ok bool) { } // GetOriginIRI returns the value safely if IsOriginIRI returned true for the specified index -func (t *Undo) GetOriginIRI(index int) (v url.URL) { - return *t.origin[index].IRI +func (t *Undo) GetOriginIRI(index int) (v *url.URL) { + return t.origin[index].IRI } -// AppendOriginIRI adds to the back of origin a url.URL type -func (t *Undo) AppendOriginIRI(v url.URL) { - t.origin = append(t.origin, &originUndoIntermediateType{IRI: &v}) +// AppendOriginIRI adds to the back of origin a *url.URL type +func (t *Undo) AppendOriginIRI(v *url.URL) { + t.origin = append(t.origin, &originUndoIntermediateType{IRI: v}) } -// PrependOriginIRI adds to the front of origin a url.URL type -func (t *Undo) PrependOriginIRI(v url.URL) { - t.origin = append([]*originUndoIntermediateType{&originUndoIntermediateType{IRI: &v}}, t.origin...) +// PrependOriginIRI adds to the front of origin a *url.URL type +func (t *Undo) PrependOriginIRI(v *url.URL) { + t.origin = append([]*originUndoIntermediateType{&originUndoIntermediateType{IRI: v}}, t.origin...) } @@ -249523,20 +249546,20 @@ func (t *Undo) IsInstrumentIRI(index int) (ok bool) { } // GetInstrumentIRI returns the value safely if IsInstrumentIRI returned true for the specified index -func (t *Undo) GetInstrumentIRI(index int) (v url.URL) { - return *t.instrument[index].IRI +func (t *Undo) GetInstrumentIRI(index int) (v *url.URL) { + return t.instrument[index].IRI } -// AppendInstrumentIRI adds to the back of instrument a url.URL type -func (t *Undo) AppendInstrumentIRI(v url.URL) { - t.instrument = append(t.instrument, &instrumentUndoIntermediateType{IRI: &v}) +// AppendInstrumentIRI adds to the back of instrument a *url.URL type +func (t *Undo) AppendInstrumentIRI(v *url.URL) { + t.instrument = append(t.instrument, &instrumentUndoIntermediateType{IRI: v}) } -// PrependInstrumentIRI adds to the front of instrument a url.URL type -func (t *Undo) PrependInstrumentIRI(v url.URL) { - t.instrument = append([]*instrumentUndoIntermediateType{&instrumentUndoIntermediateType{IRI: &v}}, t.instrument...) +// PrependInstrumentIRI adds to the front of instrument a *url.URL type +func (t *Undo) PrependInstrumentIRI(v *url.URL) { + t.instrument = append([]*instrumentUndoIntermediateType{&instrumentUndoIntermediateType{IRI: v}}, t.instrument...) } @@ -249596,14 +249619,14 @@ func (t *Undo) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Undo) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Undo) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Undo) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeUndoIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Undo) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeUndoIntermediateType{IRI: v} } @@ -249707,20 +249730,20 @@ func (t *Undo) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Undo) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Undo) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Undo) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentUndoIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Undo) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentUndoIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Undo) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentUndoIntermediateType{&attachmentUndoIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Undo) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentUndoIntermediateType{&attachmentUndoIntermediateType{IRI: v}}, t.attachment...) } @@ -249832,20 +249855,20 @@ func (t *Undo) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Undo) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Undo) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Undo) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToUndoIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Undo) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToUndoIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Undo) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToUndoIntermediateType{&attributedToUndoIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Undo) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToUndoIntermediateType{&attributedToUndoIntermediateType{IRI: v}}, t.attributedTo...) } @@ -249957,20 +249980,20 @@ func (t *Undo) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Undo) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Undo) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Undo) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceUndoIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Undo) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceUndoIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Undo) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceUndoIntermediateType{&audienceUndoIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Undo) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceUndoIntermediateType{&audienceUndoIntermediateType{IRI: v}}, t.audience...) } @@ -250082,20 +250105,20 @@ func (t *Undo) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Undo) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Undo) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Undo) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentUndoIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Undo) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentUndoIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Undo) PrependContentIRI(v url.URL) { - t.content = append([]*contentUndoIntermediateType{&contentUndoIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Undo) PrependContentIRI(v *url.URL) { + t.content = append([]*contentUndoIntermediateType{&contentUndoIntermediateType{IRI: v}}, t.content...) } @@ -250242,20 +250265,20 @@ func (t *Undo) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Undo) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Undo) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Undo) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextUndoIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Undo) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextUndoIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Undo) PrependContextIRI(v url.URL) { - t.context = append([]*contextUndoIntermediateType{&contextUndoIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Undo) PrependContextIRI(v *url.URL) { + t.context = append([]*contextUndoIntermediateType{&contextUndoIntermediateType{IRI: v}}, t.context...) } @@ -250367,20 +250390,20 @@ func (t *Undo) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Undo) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Undo) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Undo) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameUndoIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Undo) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameUndoIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Undo) PrependNameIRI(v url.URL) { - t.name = append([]*nameUndoIntermediateType{&nameUndoIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Undo) PrependNameIRI(v *url.URL) { + t.name = append([]*nameUndoIntermediateType{&nameUndoIntermediateType{IRI: v}}, t.name...) } @@ -250475,14 +250498,14 @@ func (t *Undo) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Undo) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Undo) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Undo) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeUndoIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Undo) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeUndoIntermediateType{IRI: v} } @@ -250586,20 +250609,20 @@ func (t *Undo) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Undo) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Undo) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Undo) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorUndoIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Undo) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorUndoIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Undo) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorUndoIntermediateType{&generatorUndoIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Undo) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorUndoIntermediateType{&generatorUndoIntermediateType{IRI: v}}, t.generator...) } @@ -250711,20 +250734,20 @@ func (t *Undo) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Undo) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Undo) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Undo) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconUndoIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Undo) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconUndoIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Undo) PrependIconIRI(v url.URL) { - t.icon = append([]*iconUndoIntermediateType{&iconUndoIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Undo) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconUndoIntermediateType{&iconUndoIntermediateType{IRI: v}}, t.icon...) } @@ -250766,14 +250789,14 @@ func (t *Undo) HasId() (ok bool) { } // GetId returns the value for id -func (t *Undo) GetId() (v url.URL) { - return *t.id +func (t *Undo) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Undo) SetId(v url.URL) { - t.id = &v +func (t *Undo) SetId(v *url.URL) { + t.id = v } @@ -250875,20 +250898,20 @@ func (t *Undo) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Undo) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Undo) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Undo) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageUndoIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Undo) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageUndoIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Undo) PrependImageIRI(v url.URL) { - t.image = append([]*imageUndoIntermediateType{&imageUndoIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Undo) PrependImageIRI(v *url.URL) { + t.image = append([]*imageUndoIntermediateType{&imageUndoIntermediateType{IRI: v}}, t.image...) } @@ -251000,20 +251023,20 @@ func (t *Undo) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Undo) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Undo) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Undo) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToUndoIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Undo) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToUndoIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Undo) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToUndoIntermediateType{&inReplyToUndoIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Undo) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToUndoIntermediateType{&inReplyToUndoIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -251125,20 +251148,20 @@ func (t *Undo) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Undo) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Undo) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Undo) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationUndoIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Undo) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationUndoIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Undo) PrependLocationIRI(v url.URL) { - t.location = append([]*locationUndoIntermediateType{&locationUndoIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Undo) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationUndoIntermediateType{&locationUndoIntermediateType{IRI: v}}, t.location...) } @@ -251250,20 +251273,20 @@ func (t *Undo) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Undo) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Undo) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Undo) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewUndoIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Undo) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewUndoIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Undo) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewUndoIntermediateType{&previewUndoIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Undo) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewUndoIntermediateType{&previewUndoIntermediateType{IRI: v}}, t.preview...) } @@ -251323,14 +251346,14 @@ func (t *Undo) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Undo) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Undo) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Undo) SetPublishedIRI(v url.URL) { - t.published = &publishedUndoIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Undo) SetPublishedIRI(v *url.URL) { + t.published = &publishedUndoIntermediateType{IRI: v} } @@ -251382,14 +251405,14 @@ func (t *Undo) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Undo) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Undo) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Undo) SetRepliesIRI(v url.URL) { - t.replies = &repliesUndoIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Undo) SetRepliesIRI(v *url.URL) { + t.replies = &repliesUndoIntermediateType{IRI: v} } @@ -251441,14 +251464,14 @@ func (t *Undo) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Undo) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Undo) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Undo) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeUndoIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Undo) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeUndoIntermediateType{IRI: v} } @@ -251552,20 +251575,20 @@ func (t *Undo) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Undo) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Undo) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Undo) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryUndoIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Undo) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryUndoIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Undo) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryUndoIntermediateType{&summaryUndoIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Undo) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryUndoIntermediateType{&summaryUndoIntermediateType{IRI: v}}, t.summary...) } @@ -251712,20 +251735,20 @@ func (t *Undo) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Undo) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Undo) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Undo) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagUndoIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Undo) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagUndoIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Undo) PrependTagIRI(v url.URL) { - t.tag = append([]*tagUndoIntermediateType{&tagUndoIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Undo) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagUndoIntermediateType{&tagUndoIntermediateType{IRI: v}}, t.tag...) } @@ -251817,14 +251840,14 @@ func (t *Undo) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Undo) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Undo) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Undo) SetUpdatedIRI(v url.URL) { - t.updated = &updatedUndoIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Undo) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedUndoIntermediateType{IRI: v} } @@ -251864,20 +251887,20 @@ func (t *Undo) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Undo) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Undo) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Undo) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlUndoIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Undo) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlUndoIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Undo) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlUndoIntermediateType{&urlUndoIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Undo) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlUndoIntermediateType{&urlUndoIntermediateType{anyURI: v}}, t.url...) } @@ -252021,20 +252044,20 @@ func (t *Undo) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Undo) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Undo) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Undo) AppendToIRI(v url.URL) { - t.to = append(t.to, &toUndoIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Undo) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toUndoIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Undo) PrependToIRI(v url.URL) { - t.to = append([]*toUndoIntermediateType{&toUndoIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Undo) PrependToIRI(v *url.URL) { + t.to = append([]*toUndoIntermediateType{&toUndoIntermediateType{IRI: v}}, t.to...) } @@ -252146,20 +252169,20 @@ func (t *Undo) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Undo) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Undo) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Undo) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoUndoIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Undo) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoUndoIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Undo) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoUndoIntermediateType{&btoUndoIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Undo) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoUndoIntermediateType{&btoUndoIntermediateType{IRI: v}}, t.bto...) } @@ -252271,20 +252294,20 @@ func (t *Undo) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Undo) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Undo) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Undo) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccUndoIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Undo) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccUndoIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Undo) PrependCcIRI(v url.URL) { - t.cc = append([]*ccUndoIntermediateType{&ccUndoIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Undo) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccUndoIntermediateType{&ccUndoIntermediateType{IRI: v}}, t.cc...) } @@ -252396,20 +252419,20 @@ func (t *Undo) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Undo) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Undo) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Undo) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccUndoIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Undo) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccUndoIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Undo) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccUndoIntermediateType{&bccUndoIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Undo) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccUndoIntermediateType{&bccUndoIntermediateType{IRI: v}}, t.bcc...) } @@ -252469,14 +252492,14 @@ func (t *Undo) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Undo) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Undo) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Undo) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeUndoIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Undo) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeUndoIntermediateType{IRI: v} } @@ -252528,14 +252551,14 @@ func (t *Undo) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Undo) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Undo) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Undo) SetDurationIRI(v url.URL) { - t.duration = &durationUndoIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Undo) SetDurationIRI(v *url.URL) { + t.duration = &durationUndoIntermediateType{IRI: v} } @@ -252587,14 +252610,14 @@ func (t *Undo) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Undo) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Undo) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Undo) SetSourceIRI(v url.URL) { - t.source = &sourceUndoIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Undo) SetSourceIRI(v *url.URL) { + t.source = &sourceUndoIntermediateType{IRI: v} } @@ -252646,14 +252669,14 @@ func (t *Undo) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Undo) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Undo) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Undo) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxUndoIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Undo) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxUndoIntermediateType{anyURI: v} } @@ -252705,14 +252728,14 @@ func (t *Undo) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Undo) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Undo) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Undo) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxUndoIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Undo) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxUndoIntermediateType{anyURI: v} } @@ -252782,14 +252805,14 @@ func (t *Undo) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Undo) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Undo) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Undo) SetFollowingAnyURI(v url.URL) { - t.following = &followingUndoIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Undo) SetFollowingAnyURI(v *url.URL) { + t.following = &followingUndoIntermediateType{anyURI: v} } @@ -252859,14 +252882,14 @@ func (t *Undo) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Undo) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Undo) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Undo) SetFollowersAnyURI(v url.URL) { - t.followers = &followersUndoIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Undo) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersUndoIntermediateType{anyURI: v} } @@ -252936,14 +252959,14 @@ func (t *Undo) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Undo) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Undo) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Undo) SetLikedAnyURI(v url.URL) { - t.liked = &likedUndoIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Undo) SetLikedAnyURI(v *url.URL) { + t.liked = &likedUndoIntermediateType{anyURI: v} } @@ -253013,14 +253036,14 @@ func (t *Undo) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Undo) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Undo) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Undo) SetLikesAnyURI(v url.URL) { - t.likes = &likesUndoIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Undo) SetLikesAnyURI(v *url.URL) { + t.likes = &likesUndoIntermediateType{anyURI: v} } @@ -253054,26 +253077,27 @@ func (t *Undo) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Undo) GetStreams(index int) (v url.URL) { +func (t *Undo) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Undo) AppendStreams(v url.URL) { +func (t *Undo) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Undo) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Undo) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Undo) 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] } @@ -253124,14 +253148,14 @@ func (t *Undo) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Undo) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Undo) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Undo) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameUndoIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Undo) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameUndoIntermediateType{IRI: v} } @@ -253218,14 +253242,14 @@ func (t *Undo) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Undo) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Undo) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Undo) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsUndoIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Undo) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsUndoIntermediateType{IRI: v} } @@ -253259,14 +253283,14 @@ func (t *Undo) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Undo) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Undo) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Undo) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Undo) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -253298,14 +253322,14 @@ func (t *Undo) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Undo) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Undo) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Undo) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Undo) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -253337,14 +253361,14 @@ func (t *Undo) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Undo) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Undo) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Undo) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Undo) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -253376,14 +253400,14 @@ func (t *Undo) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Undo) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Undo) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Undo) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Undo) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -253415,14 +253439,14 @@ func (t *Undo) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Undo) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Undo) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Undo) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Undo) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -253454,14 +253478,14 @@ func (t *Undo) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Undo) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Undo) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Undo) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Undo) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -253719,7 +253743,7 @@ func (t *Undo) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -254025,7 +254049,7 @@ func (t *Undo) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -254040,7 +254064,7 @@ func (t *Undo) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -254055,7 +254079,7 @@ func (t *Undo) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -254070,7 +254094,7 @@ func (t *Undo) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -254085,7 +254109,7 @@ func (t *Undo) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -254100,7 +254124,7 @@ func (t *Undo) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -255066,7 +255090,7 @@ func (t *Undo) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -255075,7 +255099,7 @@ func (t *Undo) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -255289,7 +255313,7 @@ func (t *actorUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -255357,7 +255381,7 @@ func (t *objectUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -255440,7 +255464,7 @@ func (t *targetUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -255523,7 +255547,7 @@ func (t *resultUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -255606,7 +255630,7 @@ func (t *originUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -255689,7 +255713,7 @@ func (t *instrumentUndoIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -255743,7 +255767,7 @@ func (t *altitudeUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -255826,7 +255850,7 @@ func (t *attachmentUndoIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -255909,7 +255933,7 @@ func (t *attributedToUndoIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -255992,7 +256016,7 @@ func (t *audienceUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -256060,7 +256084,7 @@ func (t *contentUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -256143,7 +256167,7 @@ func (t *contextUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -256211,7 +256235,7 @@ func (t *nameUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -256265,7 +256289,7 @@ func (t *endTimeUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -256348,7 +256372,7 @@ func (t *generatorUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -256431,7 +256455,7 @@ func (t *iconUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -256514,7 +256538,7 @@ func (t *imageUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -256597,7 +256621,7 @@ func (t *inReplyToUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -256680,7 +256704,7 @@ func (t *locationUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -256763,7 +256787,7 @@ func (t *previewUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -256817,7 +256841,7 @@ func (t *publishedUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -256885,7 +256909,7 @@ func (t *repliesUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -256939,7 +256963,7 @@ func (t *startTimeUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -257007,7 +257031,7 @@ func (t *summaryUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -257090,7 +257114,7 @@ func (t *tagUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -257144,7 +257168,7 @@ func (t *updatedUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -257208,7 +257232,7 @@ func (t *urlUndoIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlUndoIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -257295,7 +257319,7 @@ func (t *toUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -257378,7 +257402,7 @@ func (t *btoUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -257461,7 +257485,7 @@ func (t *ccUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -257544,7 +257568,7 @@ func (t *bccUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -257598,7 +257622,7 @@ func (t *mediaTypeUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -257652,7 +257676,7 @@ func (t *durationUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -257720,7 +257744,7 @@ func (t *sourceUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -257788,7 +257812,7 @@ func (t *inboxUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -257856,7 +257880,7 @@ func (t *outboxUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -257939,7 +257963,7 @@ func (t *followingUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -258022,7 +258046,7 @@ func (t *followersUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -258105,7 +258129,7 @@ func (t *likedUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -258188,7 +258212,7 @@ func (t *likesUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -258242,7 +258266,7 @@ func (t *preferredUsernameUndoIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -258310,7 +258334,7 @@ func (t *endpointsUndoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -258412,7 +258436,7 @@ type Update struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesUpdateIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameUpdateIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -258510,20 +258534,20 @@ func (t *Update) IsActorIRI(index int) (ok bool) { } // GetActorIRI returns the value safely if IsActorIRI returned true for the specified index -func (t *Update) GetActorIRI(index int) (v url.URL) { - return *t.actor[index].IRI +func (t *Update) GetActorIRI(index int) (v *url.URL) { + return t.actor[index].IRI } -// AppendActorIRI adds to the back of actor a url.URL type -func (t *Update) AppendActorIRI(v url.URL) { - t.actor = append(t.actor, &actorUpdateIntermediateType{IRI: &v}) +// AppendActorIRI adds to the back of actor a *url.URL type +func (t *Update) AppendActorIRI(v *url.URL) { + t.actor = append(t.actor, &actorUpdateIntermediateType{IRI: v}) } -// PrependActorIRI adds to the front of actor a url.URL type -func (t *Update) PrependActorIRI(v url.URL) { - t.actor = append([]*actorUpdateIntermediateType{&actorUpdateIntermediateType{IRI: &v}}, t.actor...) +// PrependActorIRI adds to the front of actor a *url.URL type +func (t *Update) PrependActorIRI(v *url.URL) { + t.actor = append([]*actorUpdateIntermediateType{&actorUpdateIntermediateType{IRI: v}}, t.actor...) } @@ -258603,20 +258627,20 @@ func (t *Update) IsObjectIRI(index int) (ok bool) { } // GetObjectIRI returns the value safely if IsObjectIRI returned true for the specified index -func (t *Update) GetObjectIRI(index int) (v url.URL) { - return *t.object[index].IRI +func (t *Update) GetObjectIRI(index int) (v *url.URL) { + return t.object[index].IRI } -// AppendObjectIRI adds to the back of object a url.URL type -func (t *Update) AppendObjectIRI(v url.URL) { - t.object = append(t.object, &objectUpdateIntermediateType{IRI: &v}) +// AppendObjectIRI adds to the back of object a *url.URL type +func (t *Update) AppendObjectIRI(v *url.URL) { + t.object = append(t.object, &objectUpdateIntermediateType{IRI: v}) } -// PrependObjectIRI adds to the front of object a url.URL type -func (t *Update) PrependObjectIRI(v url.URL) { - t.object = append([]*objectUpdateIntermediateType{&objectUpdateIntermediateType{IRI: &v}}, t.object...) +// PrependObjectIRI adds to the front of object a *url.URL type +func (t *Update) PrependObjectIRI(v *url.URL) { + t.object = append([]*objectUpdateIntermediateType{&objectUpdateIntermediateType{IRI: v}}, t.object...) } @@ -258728,20 +258752,20 @@ func (t *Update) IsTargetIRI(index int) (ok bool) { } // GetTargetIRI returns the value safely if IsTargetIRI returned true for the specified index -func (t *Update) GetTargetIRI(index int) (v url.URL) { - return *t.target[index].IRI +func (t *Update) GetTargetIRI(index int) (v *url.URL) { + return t.target[index].IRI } -// AppendTargetIRI adds to the back of target a url.URL type -func (t *Update) AppendTargetIRI(v url.URL) { - t.target = append(t.target, &targetUpdateIntermediateType{IRI: &v}) +// AppendTargetIRI adds to the back of target a *url.URL type +func (t *Update) AppendTargetIRI(v *url.URL) { + t.target = append(t.target, &targetUpdateIntermediateType{IRI: v}) } -// PrependTargetIRI adds to the front of target a url.URL type -func (t *Update) PrependTargetIRI(v url.URL) { - t.target = append([]*targetUpdateIntermediateType{&targetUpdateIntermediateType{IRI: &v}}, t.target...) +// PrependTargetIRI adds to the front of target a *url.URL type +func (t *Update) PrependTargetIRI(v *url.URL) { + t.target = append([]*targetUpdateIntermediateType{&targetUpdateIntermediateType{IRI: v}}, t.target...) } @@ -258853,20 +258877,20 @@ func (t *Update) IsResultIRI(index int) (ok bool) { } // GetResultIRI returns the value safely if IsResultIRI returned true for the specified index -func (t *Update) GetResultIRI(index int) (v url.URL) { - return *t.result[index].IRI +func (t *Update) GetResultIRI(index int) (v *url.URL) { + return t.result[index].IRI } -// AppendResultIRI adds to the back of result a url.URL type -func (t *Update) AppendResultIRI(v url.URL) { - t.result = append(t.result, &resultUpdateIntermediateType{IRI: &v}) +// AppendResultIRI adds to the back of result a *url.URL type +func (t *Update) AppendResultIRI(v *url.URL) { + t.result = append(t.result, &resultUpdateIntermediateType{IRI: v}) } -// PrependResultIRI adds to the front of result a url.URL type -func (t *Update) PrependResultIRI(v url.URL) { - t.result = append([]*resultUpdateIntermediateType{&resultUpdateIntermediateType{IRI: &v}}, t.result...) +// PrependResultIRI adds to the front of result a *url.URL type +func (t *Update) PrependResultIRI(v *url.URL) { + t.result = append([]*resultUpdateIntermediateType{&resultUpdateIntermediateType{IRI: v}}, t.result...) } @@ -258978,20 +259002,20 @@ func (t *Update) IsOriginIRI(index int) (ok bool) { } // GetOriginIRI returns the value safely if IsOriginIRI returned true for the specified index -func (t *Update) GetOriginIRI(index int) (v url.URL) { - return *t.origin[index].IRI +func (t *Update) GetOriginIRI(index int) (v *url.URL) { + return t.origin[index].IRI } -// AppendOriginIRI adds to the back of origin a url.URL type -func (t *Update) AppendOriginIRI(v url.URL) { - t.origin = append(t.origin, &originUpdateIntermediateType{IRI: &v}) +// AppendOriginIRI adds to the back of origin a *url.URL type +func (t *Update) AppendOriginIRI(v *url.URL) { + t.origin = append(t.origin, &originUpdateIntermediateType{IRI: v}) } -// PrependOriginIRI adds to the front of origin a url.URL type -func (t *Update) PrependOriginIRI(v url.URL) { - t.origin = append([]*originUpdateIntermediateType{&originUpdateIntermediateType{IRI: &v}}, t.origin...) +// PrependOriginIRI adds to the front of origin a *url.URL type +func (t *Update) PrependOriginIRI(v *url.URL) { + t.origin = append([]*originUpdateIntermediateType{&originUpdateIntermediateType{IRI: v}}, t.origin...) } @@ -259103,20 +259127,20 @@ func (t *Update) IsInstrumentIRI(index int) (ok bool) { } // GetInstrumentIRI returns the value safely if IsInstrumentIRI returned true for the specified index -func (t *Update) GetInstrumentIRI(index int) (v url.URL) { - return *t.instrument[index].IRI +func (t *Update) GetInstrumentIRI(index int) (v *url.URL) { + return t.instrument[index].IRI } -// AppendInstrumentIRI adds to the back of instrument a url.URL type -func (t *Update) AppendInstrumentIRI(v url.URL) { - t.instrument = append(t.instrument, &instrumentUpdateIntermediateType{IRI: &v}) +// AppendInstrumentIRI adds to the back of instrument a *url.URL type +func (t *Update) AppendInstrumentIRI(v *url.URL) { + t.instrument = append(t.instrument, &instrumentUpdateIntermediateType{IRI: v}) } -// PrependInstrumentIRI adds to the front of instrument a url.URL type -func (t *Update) PrependInstrumentIRI(v url.URL) { - t.instrument = append([]*instrumentUpdateIntermediateType{&instrumentUpdateIntermediateType{IRI: &v}}, t.instrument...) +// PrependInstrumentIRI adds to the front of instrument a *url.URL type +func (t *Update) PrependInstrumentIRI(v *url.URL) { + t.instrument = append([]*instrumentUpdateIntermediateType{&instrumentUpdateIntermediateType{IRI: v}}, t.instrument...) } @@ -259176,14 +259200,14 @@ func (t *Update) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Update) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Update) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Update) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeUpdateIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Update) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeUpdateIntermediateType{IRI: v} } @@ -259287,20 +259311,20 @@ func (t *Update) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Update) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Update) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Update) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentUpdateIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Update) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentUpdateIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Update) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentUpdateIntermediateType{&attachmentUpdateIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Update) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentUpdateIntermediateType{&attachmentUpdateIntermediateType{IRI: v}}, t.attachment...) } @@ -259412,20 +259436,20 @@ func (t *Update) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Update) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Update) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Update) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToUpdateIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Update) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToUpdateIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Update) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToUpdateIntermediateType{&attributedToUpdateIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Update) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToUpdateIntermediateType{&attributedToUpdateIntermediateType{IRI: v}}, t.attributedTo...) } @@ -259537,20 +259561,20 @@ func (t *Update) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Update) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Update) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Update) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceUpdateIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Update) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceUpdateIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Update) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceUpdateIntermediateType{&audienceUpdateIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Update) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceUpdateIntermediateType{&audienceUpdateIntermediateType{IRI: v}}, t.audience...) } @@ -259662,20 +259686,20 @@ func (t *Update) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Update) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Update) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Update) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentUpdateIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Update) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentUpdateIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Update) PrependContentIRI(v url.URL) { - t.content = append([]*contentUpdateIntermediateType{&contentUpdateIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Update) PrependContentIRI(v *url.URL) { + t.content = append([]*contentUpdateIntermediateType{&contentUpdateIntermediateType{IRI: v}}, t.content...) } @@ -259822,20 +259846,20 @@ func (t *Update) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Update) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Update) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Update) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextUpdateIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Update) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextUpdateIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Update) PrependContextIRI(v url.URL) { - t.context = append([]*contextUpdateIntermediateType{&contextUpdateIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Update) PrependContextIRI(v *url.URL) { + t.context = append([]*contextUpdateIntermediateType{&contextUpdateIntermediateType{IRI: v}}, t.context...) } @@ -259947,20 +259971,20 @@ func (t *Update) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Update) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Update) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Update) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameUpdateIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Update) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameUpdateIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Update) PrependNameIRI(v url.URL) { - t.name = append([]*nameUpdateIntermediateType{&nameUpdateIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Update) PrependNameIRI(v *url.URL) { + t.name = append([]*nameUpdateIntermediateType{&nameUpdateIntermediateType{IRI: v}}, t.name...) } @@ -260055,14 +260079,14 @@ func (t *Update) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Update) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Update) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Update) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeUpdateIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Update) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeUpdateIntermediateType{IRI: v} } @@ -260166,20 +260190,20 @@ func (t *Update) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Update) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Update) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Update) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorUpdateIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Update) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorUpdateIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Update) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorUpdateIntermediateType{&generatorUpdateIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Update) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorUpdateIntermediateType{&generatorUpdateIntermediateType{IRI: v}}, t.generator...) } @@ -260291,20 +260315,20 @@ func (t *Update) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Update) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Update) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Update) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconUpdateIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Update) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconUpdateIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Update) PrependIconIRI(v url.URL) { - t.icon = append([]*iconUpdateIntermediateType{&iconUpdateIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Update) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconUpdateIntermediateType{&iconUpdateIntermediateType{IRI: v}}, t.icon...) } @@ -260346,14 +260370,14 @@ func (t *Update) HasId() (ok bool) { } // GetId returns the value for id -func (t *Update) GetId() (v url.URL) { - return *t.id +func (t *Update) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Update) SetId(v url.URL) { - t.id = &v +func (t *Update) SetId(v *url.URL) { + t.id = v } @@ -260455,20 +260479,20 @@ func (t *Update) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Update) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Update) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Update) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageUpdateIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Update) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageUpdateIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Update) PrependImageIRI(v url.URL) { - t.image = append([]*imageUpdateIntermediateType{&imageUpdateIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Update) PrependImageIRI(v *url.URL) { + t.image = append([]*imageUpdateIntermediateType{&imageUpdateIntermediateType{IRI: v}}, t.image...) } @@ -260580,20 +260604,20 @@ func (t *Update) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Update) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Update) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Update) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToUpdateIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Update) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToUpdateIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Update) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToUpdateIntermediateType{&inReplyToUpdateIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Update) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToUpdateIntermediateType{&inReplyToUpdateIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -260705,20 +260729,20 @@ func (t *Update) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Update) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Update) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Update) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationUpdateIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Update) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationUpdateIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Update) PrependLocationIRI(v url.URL) { - t.location = append([]*locationUpdateIntermediateType{&locationUpdateIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Update) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationUpdateIntermediateType{&locationUpdateIntermediateType{IRI: v}}, t.location...) } @@ -260830,20 +260854,20 @@ func (t *Update) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Update) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Update) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Update) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewUpdateIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Update) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewUpdateIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Update) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewUpdateIntermediateType{&previewUpdateIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Update) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewUpdateIntermediateType{&previewUpdateIntermediateType{IRI: v}}, t.preview...) } @@ -260903,14 +260927,14 @@ func (t *Update) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Update) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Update) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Update) SetPublishedIRI(v url.URL) { - t.published = &publishedUpdateIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Update) SetPublishedIRI(v *url.URL) { + t.published = &publishedUpdateIntermediateType{IRI: v} } @@ -260962,14 +260986,14 @@ func (t *Update) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Update) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Update) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Update) SetRepliesIRI(v url.URL) { - t.replies = &repliesUpdateIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Update) SetRepliesIRI(v *url.URL) { + t.replies = &repliesUpdateIntermediateType{IRI: v} } @@ -261021,14 +261045,14 @@ func (t *Update) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Update) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Update) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Update) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeUpdateIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Update) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeUpdateIntermediateType{IRI: v} } @@ -261132,20 +261156,20 @@ func (t *Update) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Update) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Update) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Update) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryUpdateIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Update) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryUpdateIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Update) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryUpdateIntermediateType{&summaryUpdateIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Update) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryUpdateIntermediateType{&summaryUpdateIntermediateType{IRI: v}}, t.summary...) } @@ -261292,20 +261316,20 @@ func (t *Update) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Update) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Update) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Update) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagUpdateIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Update) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagUpdateIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Update) PrependTagIRI(v url.URL) { - t.tag = append([]*tagUpdateIntermediateType{&tagUpdateIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Update) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagUpdateIntermediateType{&tagUpdateIntermediateType{IRI: v}}, t.tag...) } @@ -261397,14 +261421,14 @@ func (t *Update) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Update) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Update) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Update) SetUpdatedIRI(v url.URL) { - t.updated = &updatedUpdateIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Update) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedUpdateIntermediateType{IRI: v} } @@ -261444,20 +261468,20 @@ func (t *Update) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Update) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Update) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Update) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlUpdateIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Update) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlUpdateIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Update) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlUpdateIntermediateType{&urlUpdateIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Update) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlUpdateIntermediateType{&urlUpdateIntermediateType{anyURI: v}}, t.url...) } @@ -261601,20 +261625,20 @@ func (t *Update) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Update) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Update) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Update) AppendToIRI(v url.URL) { - t.to = append(t.to, &toUpdateIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Update) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toUpdateIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Update) PrependToIRI(v url.URL) { - t.to = append([]*toUpdateIntermediateType{&toUpdateIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Update) PrependToIRI(v *url.URL) { + t.to = append([]*toUpdateIntermediateType{&toUpdateIntermediateType{IRI: v}}, t.to...) } @@ -261726,20 +261750,20 @@ func (t *Update) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Update) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Update) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Update) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoUpdateIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Update) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoUpdateIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Update) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoUpdateIntermediateType{&btoUpdateIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Update) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoUpdateIntermediateType{&btoUpdateIntermediateType{IRI: v}}, t.bto...) } @@ -261851,20 +261875,20 @@ func (t *Update) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Update) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Update) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Update) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccUpdateIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Update) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccUpdateIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Update) PrependCcIRI(v url.URL) { - t.cc = append([]*ccUpdateIntermediateType{&ccUpdateIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Update) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccUpdateIntermediateType{&ccUpdateIntermediateType{IRI: v}}, t.cc...) } @@ -261976,20 +262000,20 @@ func (t *Update) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Update) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Update) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Update) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccUpdateIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Update) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccUpdateIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Update) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccUpdateIntermediateType{&bccUpdateIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Update) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccUpdateIntermediateType{&bccUpdateIntermediateType{IRI: v}}, t.bcc...) } @@ -262049,14 +262073,14 @@ func (t *Update) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Update) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Update) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Update) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeUpdateIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Update) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeUpdateIntermediateType{IRI: v} } @@ -262108,14 +262132,14 @@ func (t *Update) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Update) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Update) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Update) SetDurationIRI(v url.URL) { - t.duration = &durationUpdateIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Update) SetDurationIRI(v *url.URL) { + t.duration = &durationUpdateIntermediateType{IRI: v} } @@ -262167,14 +262191,14 @@ func (t *Update) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Update) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Update) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Update) SetSourceIRI(v url.URL) { - t.source = &sourceUpdateIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Update) SetSourceIRI(v *url.URL) { + t.source = &sourceUpdateIntermediateType{IRI: v} } @@ -262226,14 +262250,14 @@ func (t *Update) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Update) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Update) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Update) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxUpdateIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Update) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxUpdateIntermediateType{anyURI: v} } @@ -262285,14 +262309,14 @@ func (t *Update) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Update) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Update) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Update) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxUpdateIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Update) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxUpdateIntermediateType{anyURI: v} } @@ -262362,14 +262386,14 @@ func (t *Update) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Update) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Update) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Update) SetFollowingAnyURI(v url.URL) { - t.following = &followingUpdateIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Update) SetFollowingAnyURI(v *url.URL) { + t.following = &followingUpdateIntermediateType{anyURI: v} } @@ -262439,14 +262463,14 @@ func (t *Update) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Update) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Update) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Update) SetFollowersAnyURI(v url.URL) { - t.followers = &followersUpdateIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Update) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersUpdateIntermediateType{anyURI: v} } @@ -262516,14 +262540,14 @@ func (t *Update) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Update) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Update) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Update) SetLikedAnyURI(v url.URL) { - t.liked = &likedUpdateIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Update) SetLikedAnyURI(v *url.URL) { + t.liked = &likedUpdateIntermediateType{anyURI: v} } @@ -262593,14 +262617,14 @@ func (t *Update) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Update) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Update) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Update) SetLikesAnyURI(v url.URL) { - t.likes = &likesUpdateIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Update) SetLikesAnyURI(v *url.URL) { + t.likes = &likesUpdateIntermediateType{anyURI: v} } @@ -262634,26 +262658,27 @@ func (t *Update) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Update) GetStreams(index int) (v url.URL) { +func (t *Update) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Update) AppendStreams(v url.URL) { +func (t *Update) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Update) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Update) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Update) 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] } @@ -262704,14 +262729,14 @@ func (t *Update) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Update) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Update) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Update) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameUpdateIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Update) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameUpdateIntermediateType{IRI: v} } @@ -262798,14 +262823,14 @@ func (t *Update) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Update) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Update) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Update) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsUpdateIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Update) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsUpdateIntermediateType{IRI: v} } @@ -262839,14 +262864,14 @@ func (t *Update) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Update) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Update) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Update) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Update) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -262878,14 +262903,14 @@ func (t *Update) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Update) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Update) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Update) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Update) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -262917,14 +262942,14 @@ func (t *Update) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Update) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Update) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Update) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Update) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -262956,14 +262981,14 @@ func (t *Update) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Update) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Update) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Update) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Update) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -262995,14 +263020,14 @@ func (t *Update) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Update) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Update) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Update) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Update) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -263034,14 +263059,14 @@ func (t *Update) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Update) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Update) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Update) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Update) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -263299,7 +263324,7 @@ func (t *Update) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -263605,7 +263630,7 @@ func (t *Update) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -263620,7 +263645,7 @@ func (t *Update) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -263635,7 +263660,7 @@ func (t *Update) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -263650,7 +263675,7 @@ func (t *Update) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -263665,7 +263690,7 @@ func (t *Update) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -263680,7 +263705,7 @@ func (t *Update) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -264646,7 +264671,7 @@ func (t *Update) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -264655,7 +264680,7 @@ func (t *Update) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -264869,7 +264894,7 @@ func (t *actorUpdateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -264937,7 +264962,7 @@ func (t *objectUpdateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -265020,7 +265045,7 @@ func (t *targetUpdateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -265103,7 +265128,7 @@ func (t *resultUpdateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -265186,7 +265211,7 @@ func (t *originUpdateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -265269,7 +265294,7 @@ func (t *instrumentUpdateIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -265323,7 +265348,7 @@ func (t *altitudeUpdateIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -265406,7 +265431,7 @@ func (t *attachmentUpdateIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -265489,7 +265514,7 @@ func (t *attributedToUpdateIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -265572,7 +265597,7 @@ func (t *audienceUpdateIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -265640,7 +265665,7 @@ func (t *contentUpdateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -265723,7 +265748,7 @@ func (t *contextUpdateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -265791,7 +265816,7 @@ func (t *nameUpdateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -265845,7 +265870,7 @@ func (t *endTimeUpdateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -265928,7 +265953,7 @@ func (t *generatorUpdateIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -266011,7 +266036,7 @@ func (t *iconUpdateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -266094,7 +266119,7 @@ func (t *imageUpdateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -266177,7 +266202,7 @@ func (t *inReplyToUpdateIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -266260,7 +266285,7 @@ func (t *locationUpdateIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -266343,7 +266368,7 @@ func (t *previewUpdateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -266397,7 +266422,7 @@ func (t *publishedUpdateIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -266465,7 +266490,7 @@ func (t *repliesUpdateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -266519,7 +266544,7 @@ func (t *startTimeUpdateIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -266587,7 +266612,7 @@ func (t *summaryUpdateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -266670,7 +266695,7 @@ func (t *tagUpdateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -266724,7 +266749,7 @@ func (t *updatedUpdateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -266788,7 +266813,7 @@ func (t *urlUpdateIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlUpdateIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -266875,7 +266900,7 @@ func (t *toUpdateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -266958,7 +266983,7 @@ func (t *btoUpdateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -267041,7 +267066,7 @@ func (t *ccUpdateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -267124,7 +267149,7 @@ func (t *bccUpdateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -267178,7 +267203,7 @@ func (t *mediaTypeUpdateIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -267232,7 +267257,7 @@ func (t *durationUpdateIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -267300,7 +267325,7 @@ func (t *sourceUpdateIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -267368,7 +267393,7 @@ func (t *inboxUpdateIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -267436,7 +267461,7 @@ func (t *outboxUpdateIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -267519,7 +267544,7 @@ func (t *followingUpdateIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -267602,7 +267627,7 @@ func (t *followersUpdateIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -267685,7 +267710,7 @@ func (t *likedUpdateIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -267768,7 +267793,7 @@ func (t *likesUpdateIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -267822,7 +267847,7 @@ func (t *preferredUsernameUpdateIntermediateType) Serialize() (i interface{}, er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -267890,7 +267915,7 @@ func (t *endpointsUpdateIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -267992,7 +268017,7 @@ type View struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesViewIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameViewIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -268090,20 +268115,20 @@ func (t *View) IsActorIRI(index int) (ok bool) { } // GetActorIRI returns the value safely if IsActorIRI returned true for the specified index -func (t *View) GetActorIRI(index int) (v url.URL) { - return *t.actor[index].IRI +func (t *View) GetActorIRI(index int) (v *url.URL) { + return t.actor[index].IRI } -// AppendActorIRI adds to the back of actor a url.URL type -func (t *View) AppendActorIRI(v url.URL) { - t.actor = append(t.actor, &actorViewIntermediateType{IRI: &v}) +// AppendActorIRI adds to the back of actor a *url.URL type +func (t *View) AppendActorIRI(v *url.URL) { + t.actor = append(t.actor, &actorViewIntermediateType{IRI: v}) } -// PrependActorIRI adds to the front of actor a url.URL type -func (t *View) PrependActorIRI(v url.URL) { - t.actor = append([]*actorViewIntermediateType{&actorViewIntermediateType{IRI: &v}}, t.actor...) +// PrependActorIRI adds to the front of actor a *url.URL type +func (t *View) PrependActorIRI(v *url.URL) { + t.actor = append([]*actorViewIntermediateType{&actorViewIntermediateType{IRI: v}}, t.actor...) } @@ -268183,20 +268208,20 @@ func (t *View) IsObjectIRI(index int) (ok bool) { } // GetObjectIRI returns the value safely if IsObjectIRI returned true for the specified index -func (t *View) GetObjectIRI(index int) (v url.URL) { - return *t.object[index].IRI +func (t *View) GetObjectIRI(index int) (v *url.URL) { + return t.object[index].IRI } -// AppendObjectIRI adds to the back of object a url.URL type -func (t *View) AppendObjectIRI(v url.URL) { - t.object = append(t.object, &objectViewIntermediateType{IRI: &v}) +// AppendObjectIRI adds to the back of object a *url.URL type +func (t *View) AppendObjectIRI(v *url.URL) { + t.object = append(t.object, &objectViewIntermediateType{IRI: v}) } -// PrependObjectIRI adds to the front of object a url.URL type -func (t *View) PrependObjectIRI(v url.URL) { - t.object = append([]*objectViewIntermediateType{&objectViewIntermediateType{IRI: &v}}, t.object...) +// PrependObjectIRI adds to the front of object a *url.URL type +func (t *View) PrependObjectIRI(v *url.URL) { + t.object = append([]*objectViewIntermediateType{&objectViewIntermediateType{IRI: v}}, t.object...) } @@ -268308,20 +268333,20 @@ func (t *View) IsTargetIRI(index int) (ok bool) { } // GetTargetIRI returns the value safely if IsTargetIRI returned true for the specified index -func (t *View) GetTargetIRI(index int) (v url.URL) { - return *t.target[index].IRI +func (t *View) GetTargetIRI(index int) (v *url.URL) { + return t.target[index].IRI } -// AppendTargetIRI adds to the back of target a url.URL type -func (t *View) AppendTargetIRI(v url.URL) { - t.target = append(t.target, &targetViewIntermediateType{IRI: &v}) +// AppendTargetIRI adds to the back of target a *url.URL type +func (t *View) AppendTargetIRI(v *url.URL) { + t.target = append(t.target, &targetViewIntermediateType{IRI: v}) } -// PrependTargetIRI adds to the front of target a url.URL type -func (t *View) PrependTargetIRI(v url.URL) { - t.target = append([]*targetViewIntermediateType{&targetViewIntermediateType{IRI: &v}}, t.target...) +// PrependTargetIRI adds to the front of target a *url.URL type +func (t *View) PrependTargetIRI(v *url.URL) { + t.target = append([]*targetViewIntermediateType{&targetViewIntermediateType{IRI: v}}, t.target...) } @@ -268433,20 +268458,20 @@ func (t *View) IsResultIRI(index int) (ok bool) { } // GetResultIRI returns the value safely if IsResultIRI returned true for the specified index -func (t *View) GetResultIRI(index int) (v url.URL) { - return *t.result[index].IRI +func (t *View) GetResultIRI(index int) (v *url.URL) { + return t.result[index].IRI } -// AppendResultIRI adds to the back of result a url.URL type -func (t *View) AppendResultIRI(v url.URL) { - t.result = append(t.result, &resultViewIntermediateType{IRI: &v}) +// AppendResultIRI adds to the back of result a *url.URL type +func (t *View) AppendResultIRI(v *url.URL) { + t.result = append(t.result, &resultViewIntermediateType{IRI: v}) } -// PrependResultIRI adds to the front of result a url.URL type -func (t *View) PrependResultIRI(v url.URL) { - t.result = append([]*resultViewIntermediateType{&resultViewIntermediateType{IRI: &v}}, t.result...) +// PrependResultIRI adds to the front of result a *url.URL type +func (t *View) PrependResultIRI(v *url.URL) { + t.result = append([]*resultViewIntermediateType{&resultViewIntermediateType{IRI: v}}, t.result...) } @@ -268558,20 +268583,20 @@ func (t *View) IsOriginIRI(index int) (ok bool) { } // GetOriginIRI returns the value safely if IsOriginIRI returned true for the specified index -func (t *View) GetOriginIRI(index int) (v url.URL) { - return *t.origin[index].IRI +func (t *View) GetOriginIRI(index int) (v *url.URL) { + return t.origin[index].IRI } -// AppendOriginIRI adds to the back of origin a url.URL type -func (t *View) AppendOriginIRI(v url.URL) { - t.origin = append(t.origin, &originViewIntermediateType{IRI: &v}) +// AppendOriginIRI adds to the back of origin a *url.URL type +func (t *View) AppendOriginIRI(v *url.URL) { + t.origin = append(t.origin, &originViewIntermediateType{IRI: v}) } -// PrependOriginIRI adds to the front of origin a url.URL type -func (t *View) PrependOriginIRI(v url.URL) { - t.origin = append([]*originViewIntermediateType{&originViewIntermediateType{IRI: &v}}, t.origin...) +// PrependOriginIRI adds to the front of origin a *url.URL type +func (t *View) PrependOriginIRI(v *url.URL) { + t.origin = append([]*originViewIntermediateType{&originViewIntermediateType{IRI: v}}, t.origin...) } @@ -268683,20 +268708,20 @@ func (t *View) IsInstrumentIRI(index int) (ok bool) { } // GetInstrumentIRI returns the value safely if IsInstrumentIRI returned true for the specified index -func (t *View) GetInstrumentIRI(index int) (v url.URL) { - return *t.instrument[index].IRI +func (t *View) GetInstrumentIRI(index int) (v *url.URL) { + return t.instrument[index].IRI } -// AppendInstrumentIRI adds to the back of instrument a url.URL type -func (t *View) AppendInstrumentIRI(v url.URL) { - t.instrument = append(t.instrument, &instrumentViewIntermediateType{IRI: &v}) +// AppendInstrumentIRI adds to the back of instrument a *url.URL type +func (t *View) AppendInstrumentIRI(v *url.URL) { + t.instrument = append(t.instrument, &instrumentViewIntermediateType{IRI: v}) } -// PrependInstrumentIRI adds to the front of instrument a url.URL type -func (t *View) PrependInstrumentIRI(v url.URL) { - t.instrument = append([]*instrumentViewIntermediateType{&instrumentViewIntermediateType{IRI: &v}}, t.instrument...) +// PrependInstrumentIRI adds to the front of instrument a *url.URL type +func (t *View) PrependInstrumentIRI(v *url.URL) { + t.instrument = append([]*instrumentViewIntermediateType{&instrumentViewIntermediateType{IRI: v}}, t.instrument...) } @@ -268756,14 +268781,14 @@ func (t *View) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *View) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *View) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *View) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeViewIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *View) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeViewIntermediateType{IRI: v} } @@ -268867,20 +268892,20 @@ func (t *View) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *View) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *View) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *View) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentViewIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *View) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentViewIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *View) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentViewIntermediateType{&attachmentViewIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *View) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentViewIntermediateType{&attachmentViewIntermediateType{IRI: v}}, t.attachment...) } @@ -268992,20 +269017,20 @@ func (t *View) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *View) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *View) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *View) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToViewIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *View) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToViewIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *View) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToViewIntermediateType{&attributedToViewIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *View) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToViewIntermediateType{&attributedToViewIntermediateType{IRI: v}}, t.attributedTo...) } @@ -269117,20 +269142,20 @@ func (t *View) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *View) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *View) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *View) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceViewIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *View) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceViewIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *View) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceViewIntermediateType{&audienceViewIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *View) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceViewIntermediateType{&audienceViewIntermediateType{IRI: v}}, t.audience...) } @@ -269242,20 +269267,20 @@ func (t *View) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *View) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *View) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *View) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentViewIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *View) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentViewIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *View) PrependContentIRI(v url.URL) { - t.content = append([]*contentViewIntermediateType{&contentViewIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *View) PrependContentIRI(v *url.URL) { + t.content = append([]*contentViewIntermediateType{&contentViewIntermediateType{IRI: v}}, t.content...) } @@ -269402,20 +269427,20 @@ func (t *View) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *View) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *View) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *View) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextViewIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *View) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextViewIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *View) PrependContextIRI(v url.URL) { - t.context = append([]*contextViewIntermediateType{&contextViewIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *View) PrependContextIRI(v *url.URL) { + t.context = append([]*contextViewIntermediateType{&contextViewIntermediateType{IRI: v}}, t.context...) } @@ -269527,20 +269552,20 @@ func (t *View) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *View) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *View) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *View) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameViewIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *View) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameViewIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *View) PrependNameIRI(v url.URL) { - t.name = append([]*nameViewIntermediateType{&nameViewIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *View) PrependNameIRI(v *url.URL) { + t.name = append([]*nameViewIntermediateType{&nameViewIntermediateType{IRI: v}}, t.name...) } @@ -269635,14 +269660,14 @@ func (t *View) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *View) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *View) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *View) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeViewIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *View) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeViewIntermediateType{IRI: v} } @@ -269746,20 +269771,20 @@ func (t *View) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *View) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *View) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *View) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorViewIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *View) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorViewIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *View) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorViewIntermediateType{&generatorViewIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *View) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorViewIntermediateType{&generatorViewIntermediateType{IRI: v}}, t.generator...) } @@ -269871,20 +269896,20 @@ func (t *View) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *View) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *View) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *View) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconViewIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *View) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconViewIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *View) PrependIconIRI(v url.URL) { - t.icon = append([]*iconViewIntermediateType{&iconViewIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *View) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconViewIntermediateType{&iconViewIntermediateType{IRI: v}}, t.icon...) } @@ -269926,14 +269951,14 @@ func (t *View) HasId() (ok bool) { } // GetId returns the value for id -func (t *View) GetId() (v url.URL) { - return *t.id +func (t *View) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *View) SetId(v url.URL) { - t.id = &v +func (t *View) SetId(v *url.URL) { + t.id = v } @@ -270035,20 +270060,20 @@ func (t *View) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *View) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *View) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *View) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageViewIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *View) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageViewIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *View) PrependImageIRI(v url.URL) { - t.image = append([]*imageViewIntermediateType{&imageViewIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *View) PrependImageIRI(v *url.URL) { + t.image = append([]*imageViewIntermediateType{&imageViewIntermediateType{IRI: v}}, t.image...) } @@ -270160,20 +270185,20 @@ func (t *View) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *View) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *View) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *View) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToViewIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *View) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToViewIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *View) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToViewIntermediateType{&inReplyToViewIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *View) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToViewIntermediateType{&inReplyToViewIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -270285,20 +270310,20 @@ func (t *View) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *View) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *View) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *View) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationViewIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *View) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationViewIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *View) PrependLocationIRI(v url.URL) { - t.location = append([]*locationViewIntermediateType{&locationViewIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *View) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationViewIntermediateType{&locationViewIntermediateType{IRI: v}}, t.location...) } @@ -270410,20 +270435,20 @@ func (t *View) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *View) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *View) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *View) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewViewIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *View) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewViewIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *View) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewViewIntermediateType{&previewViewIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *View) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewViewIntermediateType{&previewViewIntermediateType{IRI: v}}, t.preview...) } @@ -270483,14 +270508,14 @@ func (t *View) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *View) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *View) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *View) SetPublishedIRI(v url.URL) { - t.published = &publishedViewIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *View) SetPublishedIRI(v *url.URL) { + t.published = &publishedViewIntermediateType{IRI: v} } @@ -270542,14 +270567,14 @@ func (t *View) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *View) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *View) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *View) SetRepliesIRI(v url.URL) { - t.replies = &repliesViewIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *View) SetRepliesIRI(v *url.URL) { + t.replies = &repliesViewIntermediateType{IRI: v} } @@ -270601,14 +270626,14 @@ func (t *View) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *View) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *View) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *View) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeViewIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *View) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeViewIntermediateType{IRI: v} } @@ -270712,20 +270737,20 @@ func (t *View) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *View) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *View) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *View) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryViewIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *View) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryViewIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *View) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryViewIntermediateType{&summaryViewIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *View) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryViewIntermediateType{&summaryViewIntermediateType{IRI: v}}, t.summary...) } @@ -270872,20 +270897,20 @@ func (t *View) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *View) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *View) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *View) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagViewIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *View) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagViewIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *View) PrependTagIRI(v url.URL) { - t.tag = append([]*tagViewIntermediateType{&tagViewIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *View) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagViewIntermediateType{&tagViewIntermediateType{IRI: v}}, t.tag...) } @@ -270977,14 +271002,14 @@ func (t *View) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *View) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *View) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *View) SetUpdatedIRI(v url.URL) { - t.updated = &updatedViewIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *View) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedViewIntermediateType{IRI: v} } @@ -271024,20 +271049,20 @@ func (t *View) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *View) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *View) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *View) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlViewIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *View) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlViewIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *View) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlViewIntermediateType{&urlViewIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *View) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlViewIntermediateType{&urlViewIntermediateType{anyURI: v}}, t.url...) } @@ -271181,20 +271206,20 @@ func (t *View) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *View) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *View) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *View) AppendToIRI(v url.URL) { - t.to = append(t.to, &toViewIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *View) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toViewIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *View) PrependToIRI(v url.URL) { - t.to = append([]*toViewIntermediateType{&toViewIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *View) PrependToIRI(v *url.URL) { + t.to = append([]*toViewIntermediateType{&toViewIntermediateType{IRI: v}}, t.to...) } @@ -271306,20 +271331,20 @@ func (t *View) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *View) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *View) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *View) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoViewIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *View) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoViewIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *View) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoViewIntermediateType{&btoViewIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *View) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoViewIntermediateType{&btoViewIntermediateType{IRI: v}}, t.bto...) } @@ -271431,20 +271456,20 @@ func (t *View) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *View) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *View) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *View) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccViewIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *View) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccViewIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *View) PrependCcIRI(v url.URL) { - t.cc = append([]*ccViewIntermediateType{&ccViewIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *View) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccViewIntermediateType{&ccViewIntermediateType{IRI: v}}, t.cc...) } @@ -271556,20 +271581,20 @@ func (t *View) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *View) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *View) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *View) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccViewIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *View) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccViewIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *View) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccViewIntermediateType{&bccViewIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *View) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccViewIntermediateType{&bccViewIntermediateType{IRI: v}}, t.bcc...) } @@ -271629,14 +271654,14 @@ func (t *View) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *View) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *View) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *View) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeViewIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *View) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeViewIntermediateType{IRI: v} } @@ -271688,14 +271713,14 @@ func (t *View) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *View) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *View) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *View) SetDurationIRI(v url.URL) { - t.duration = &durationViewIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *View) SetDurationIRI(v *url.URL) { + t.duration = &durationViewIntermediateType{IRI: v} } @@ -271747,14 +271772,14 @@ func (t *View) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *View) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *View) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *View) SetSourceIRI(v url.URL) { - t.source = &sourceViewIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *View) SetSourceIRI(v *url.URL) { + t.source = &sourceViewIntermediateType{IRI: v} } @@ -271806,14 +271831,14 @@ func (t *View) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *View) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *View) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *View) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxViewIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *View) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxViewIntermediateType{anyURI: v} } @@ -271865,14 +271890,14 @@ func (t *View) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *View) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *View) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *View) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxViewIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *View) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxViewIntermediateType{anyURI: v} } @@ -271942,14 +271967,14 @@ func (t *View) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *View) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *View) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *View) SetFollowingAnyURI(v url.URL) { - t.following = &followingViewIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *View) SetFollowingAnyURI(v *url.URL) { + t.following = &followingViewIntermediateType{anyURI: v} } @@ -272019,14 +272044,14 @@ func (t *View) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *View) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *View) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *View) SetFollowersAnyURI(v url.URL) { - t.followers = &followersViewIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *View) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersViewIntermediateType{anyURI: v} } @@ -272096,14 +272121,14 @@ func (t *View) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *View) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *View) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *View) SetLikedAnyURI(v url.URL) { - t.liked = &likedViewIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *View) SetLikedAnyURI(v *url.URL) { + t.liked = &likedViewIntermediateType{anyURI: v} } @@ -272173,14 +272198,14 @@ func (t *View) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *View) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *View) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *View) SetLikesAnyURI(v url.URL) { - t.likes = &likesViewIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *View) SetLikesAnyURI(v *url.URL) { + t.likes = &likesViewIntermediateType{anyURI: v} } @@ -272214,26 +272239,27 @@ func (t *View) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *View) GetStreams(index int) (v url.URL) { +func (t *View) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *View) AppendStreams(v url.URL) { +func (t *View) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *View) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *View) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *View) 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] } @@ -272284,14 +272310,14 @@ func (t *View) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *View) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *View) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *View) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameViewIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *View) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameViewIntermediateType{IRI: v} } @@ -272378,14 +272404,14 @@ func (t *View) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *View) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *View) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *View) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsViewIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *View) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsViewIntermediateType{IRI: v} } @@ -272419,14 +272445,14 @@ func (t *View) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *View) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *View) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *View) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *View) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -272458,14 +272484,14 @@ func (t *View) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *View) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *View) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *View) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *View) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -272497,14 +272523,14 @@ func (t *View) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *View) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *View) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *View) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *View) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -272536,14 +272562,14 @@ func (t *View) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *View) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *View) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *View) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *View) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -272575,14 +272601,14 @@ func (t *View) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *View) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *View) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *View) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *View) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -272614,14 +272640,14 @@ func (t *View) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *View) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *View) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *View) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *View) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -272879,7 +272905,7 @@ func (t *View) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -273185,7 +273211,7 @@ func (t *View) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -273200,7 +273226,7 @@ func (t *View) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -273215,7 +273241,7 @@ func (t *View) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -273230,7 +273256,7 @@ func (t *View) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -273245,7 +273271,7 @@ func (t *View) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -273260,7 +273286,7 @@ func (t *View) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -274226,7 +274252,7 @@ func (t *View) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -274235,7 +274261,7 @@ func (t *View) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -274449,7 +274475,7 @@ func (t *actorViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -274517,7 +274543,7 @@ func (t *objectViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -274600,7 +274626,7 @@ func (t *targetViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -274683,7 +274709,7 @@ func (t *resultViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -274766,7 +274792,7 @@ func (t *originViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -274849,7 +274875,7 @@ func (t *instrumentViewIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -274903,7 +274929,7 @@ func (t *altitudeViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -274986,7 +275012,7 @@ func (t *attachmentViewIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -275069,7 +275095,7 @@ func (t *attributedToViewIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -275152,7 +275178,7 @@ func (t *audienceViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -275220,7 +275246,7 @@ func (t *contentViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -275303,7 +275329,7 @@ func (t *contextViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -275371,7 +275397,7 @@ func (t *nameViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -275425,7 +275451,7 @@ func (t *endTimeViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -275508,7 +275534,7 @@ func (t *generatorViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -275591,7 +275617,7 @@ func (t *iconViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -275674,7 +275700,7 @@ func (t *imageViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -275757,7 +275783,7 @@ func (t *inReplyToViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -275840,7 +275866,7 @@ func (t *locationViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -275923,7 +275949,7 @@ func (t *previewViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -275977,7 +276003,7 @@ func (t *publishedViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -276045,7 +276071,7 @@ func (t *repliesViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -276099,7 +276125,7 @@ func (t *startTimeViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -276167,7 +276193,7 @@ func (t *summaryViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -276250,7 +276276,7 @@ func (t *tagViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -276304,7 +276330,7 @@ func (t *updatedViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -276368,7 +276394,7 @@ func (t *urlViewIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlViewIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -276455,7 +276481,7 @@ func (t *toViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -276538,7 +276564,7 @@ func (t *btoViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -276621,7 +276647,7 @@ func (t *ccViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -276704,7 +276730,7 @@ func (t *bccViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -276758,7 +276784,7 @@ func (t *mediaTypeViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -276812,7 +276838,7 @@ func (t *durationViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -276880,7 +276906,7 @@ func (t *sourceViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -276948,7 +276974,7 @@ func (t *inboxViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -277016,7 +277042,7 @@ func (t *outboxViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -277099,7 +277125,7 @@ func (t *followingViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -277182,7 +277208,7 @@ func (t *followersViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -277265,7 +277291,7 @@ func (t *likedViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -277348,7 +277374,7 @@ func (t *likesViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -277402,7 +277428,7 @@ func (t *preferredUsernameViewIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -277470,7 +277496,7 @@ func (t *endpointsViewIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -277572,7 +277598,7 @@ type Listen struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesListenIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameListenIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -277670,20 +277696,20 @@ func (t *Listen) IsActorIRI(index int) (ok bool) { } // GetActorIRI returns the value safely if IsActorIRI returned true for the specified index -func (t *Listen) GetActorIRI(index int) (v url.URL) { - return *t.actor[index].IRI +func (t *Listen) GetActorIRI(index int) (v *url.URL) { + return t.actor[index].IRI } -// AppendActorIRI adds to the back of actor a url.URL type -func (t *Listen) AppendActorIRI(v url.URL) { - t.actor = append(t.actor, &actorListenIntermediateType{IRI: &v}) +// AppendActorIRI adds to the back of actor a *url.URL type +func (t *Listen) AppendActorIRI(v *url.URL) { + t.actor = append(t.actor, &actorListenIntermediateType{IRI: v}) } -// PrependActorIRI adds to the front of actor a url.URL type -func (t *Listen) PrependActorIRI(v url.URL) { - t.actor = append([]*actorListenIntermediateType{&actorListenIntermediateType{IRI: &v}}, t.actor...) +// PrependActorIRI adds to the front of actor a *url.URL type +func (t *Listen) PrependActorIRI(v *url.URL) { + t.actor = append([]*actorListenIntermediateType{&actorListenIntermediateType{IRI: v}}, t.actor...) } @@ -277763,20 +277789,20 @@ func (t *Listen) IsObjectIRI(index int) (ok bool) { } // GetObjectIRI returns the value safely if IsObjectIRI returned true for the specified index -func (t *Listen) GetObjectIRI(index int) (v url.URL) { - return *t.object[index].IRI +func (t *Listen) GetObjectIRI(index int) (v *url.URL) { + return t.object[index].IRI } -// AppendObjectIRI adds to the back of object a url.URL type -func (t *Listen) AppendObjectIRI(v url.URL) { - t.object = append(t.object, &objectListenIntermediateType{IRI: &v}) +// AppendObjectIRI adds to the back of object a *url.URL type +func (t *Listen) AppendObjectIRI(v *url.URL) { + t.object = append(t.object, &objectListenIntermediateType{IRI: v}) } -// PrependObjectIRI adds to the front of object a url.URL type -func (t *Listen) PrependObjectIRI(v url.URL) { - t.object = append([]*objectListenIntermediateType{&objectListenIntermediateType{IRI: &v}}, t.object...) +// PrependObjectIRI adds to the front of object a *url.URL type +func (t *Listen) PrependObjectIRI(v *url.URL) { + t.object = append([]*objectListenIntermediateType{&objectListenIntermediateType{IRI: v}}, t.object...) } @@ -277888,20 +277914,20 @@ func (t *Listen) IsTargetIRI(index int) (ok bool) { } // GetTargetIRI returns the value safely if IsTargetIRI returned true for the specified index -func (t *Listen) GetTargetIRI(index int) (v url.URL) { - return *t.target[index].IRI +func (t *Listen) GetTargetIRI(index int) (v *url.URL) { + return t.target[index].IRI } -// AppendTargetIRI adds to the back of target a url.URL type -func (t *Listen) AppendTargetIRI(v url.URL) { - t.target = append(t.target, &targetListenIntermediateType{IRI: &v}) +// AppendTargetIRI adds to the back of target a *url.URL type +func (t *Listen) AppendTargetIRI(v *url.URL) { + t.target = append(t.target, &targetListenIntermediateType{IRI: v}) } -// PrependTargetIRI adds to the front of target a url.URL type -func (t *Listen) PrependTargetIRI(v url.URL) { - t.target = append([]*targetListenIntermediateType{&targetListenIntermediateType{IRI: &v}}, t.target...) +// PrependTargetIRI adds to the front of target a *url.URL type +func (t *Listen) PrependTargetIRI(v *url.URL) { + t.target = append([]*targetListenIntermediateType{&targetListenIntermediateType{IRI: v}}, t.target...) } @@ -278013,20 +278039,20 @@ func (t *Listen) IsResultIRI(index int) (ok bool) { } // GetResultIRI returns the value safely if IsResultIRI returned true for the specified index -func (t *Listen) GetResultIRI(index int) (v url.URL) { - return *t.result[index].IRI +func (t *Listen) GetResultIRI(index int) (v *url.URL) { + return t.result[index].IRI } -// AppendResultIRI adds to the back of result a url.URL type -func (t *Listen) AppendResultIRI(v url.URL) { - t.result = append(t.result, &resultListenIntermediateType{IRI: &v}) +// AppendResultIRI adds to the back of result a *url.URL type +func (t *Listen) AppendResultIRI(v *url.URL) { + t.result = append(t.result, &resultListenIntermediateType{IRI: v}) } -// PrependResultIRI adds to the front of result a url.URL type -func (t *Listen) PrependResultIRI(v url.URL) { - t.result = append([]*resultListenIntermediateType{&resultListenIntermediateType{IRI: &v}}, t.result...) +// PrependResultIRI adds to the front of result a *url.URL type +func (t *Listen) PrependResultIRI(v *url.URL) { + t.result = append([]*resultListenIntermediateType{&resultListenIntermediateType{IRI: v}}, t.result...) } @@ -278138,20 +278164,20 @@ func (t *Listen) IsOriginIRI(index int) (ok bool) { } // GetOriginIRI returns the value safely if IsOriginIRI returned true for the specified index -func (t *Listen) GetOriginIRI(index int) (v url.URL) { - return *t.origin[index].IRI +func (t *Listen) GetOriginIRI(index int) (v *url.URL) { + return t.origin[index].IRI } -// AppendOriginIRI adds to the back of origin a url.URL type -func (t *Listen) AppendOriginIRI(v url.URL) { - t.origin = append(t.origin, &originListenIntermediateType{IRI: &v}) +// AppendOriginIRI adds to the back of origin a *url.URL type +func (t *Listen) AppendOriginIRI(v *url.URL) { + t.origin = append(t.origin, &originListenIntermediateType{IRI: v}) } -// PrependOriginIRI adds to the front of origin a url.URL type -func (t *Listen) PrependOriginIRI(v url.URL) { - t.origin = append([]*originListenIntermediateType{&originListenIntermediateType{IRI: &v}}, t.origin...) +// PrependOriginIRI adds to the front of origin a *url.URL type +func (t *Listen) PrependOriginIRI(v *url.URL) { + t.origin = append([]*originListenIntermediateType{&originListenIntermediateType{IRI: v}}, t.origin...) } @@ -278263,20 +278289,20 @@ func (t *Listen) IsInstrumentIRI(index int) (ok bool) { } // GetInstrumentIRI returns the value safely if IsInstrumentIRI returned true for the specified index -func (t *Listen) GetInstrumentIRI(index int) (v url.URL) { - return *t.instrument[index].IRI +func (t *Listen) GetInstrumentIRI(index int) (v *url.URL) { + return t.instrument[index].IRI } -// AppendInstrumentIRI adds to the back of instrument a url.URL type -func (t *Listen) AppendInstrumentIRI(v url.URL) { - t.instrument = append(t.instrument, &instrumentListenIntermediateType{IRI: &v}) +// AppendInstrumentIRI adds to the back of instrument a *url.URL type +func (t *Listen) AppendInstrumentIRI(v *url.URL) { + t.instrument = append(t.instrument, &instrumentListenIntermediateType{IRI: v}) } -// PrependInstrumentIRI adds to the front of instrument a url.URL type -func (t *Listen) PrependInstrumentIRI(v url.URL) { - t.instrument = append([]*instrumentListenIntermediateType{&instrumentListenIntermediateType{IRI: &v}}, t.instrument...) +// PrependInstrumentIRI adds to the front of instrument a *url.URL type +func (t *Listen) PrependInstrumentIRI(v *url.URL) { + t.instrument = append([]*instrumentListenIntermediateType{&instrumentListenIntermediateType{IRI: v}}, t.instrument...) } @@ -278336,14 +278362,14 @@ func (t *Listen) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Listen) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Listen) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Listen) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeListenIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Listen) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeListenIntermediateType{IRI: v} } @@ -278447,20 +278473,20 @@ func (t *Listen) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Listen) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Listen) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Listen) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentListenIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Listen) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentListenIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Listen) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentListenIntermediateType{&attachmentListenIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Listen) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentListenIntermediateType{&attachmentListenIntermediateType{IRI: v}}, t.attachment...) } @@ -278572,20 +278598,20 @@ func (t *Listen) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Listen) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Listen) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Listen) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToListenIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Listen) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToListenIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Listen) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToListenIntermediateType{&attributedToListenIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Listen) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToListenIntermediateType{&attributedToListenIntermediateType{IRI: v}}, t.attributedTo...) } @@ -278697,20 +278723,20 @@ func (t *Listen) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Listen) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Listen) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Listen) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceListenIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Listen) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceListenIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Listen) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceListenIntermediateType{&audienceListenIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Listen) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceListenIntermediateType{&audienceListenIntermediateType{IRI: v}}, t.audience...) } @@ -278822,20 +278848,20 @@ func (t *Listen) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Listen) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Listen) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Listen) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentListenIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Listen) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentListenIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Listen) PrependContentIRI(v url.URL) { - t.content = append([]*contentListenIntermediateType{&contentListenIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Listen) PrependContentIRI(v *url.URL) { + t.content = append([]*contentListenIntermediateType{&contentListenIntermediateType{IRI: v}}, t.content...) } @@ -278982,20 +279008,20 @@ func (t *Listen) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Listen) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Listen) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Listen) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextListenIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Listen) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextListenIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Listen) PrependContextIRI(v url.URL) { - t.context = append([]*contextListenIntermediateType{&contextListenIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Listen) PrependContextIRI(v *url.URL) { + t.context = append([]*contextListenIntermediateType{&contextListenIntermediateType{IRI: v}}, t.context...) } @@ -279107,20 +279133,20 @@ func (t *Listen) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Listen) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Listen) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Listen) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameListenIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Listen) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameListenIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Listen) PrependNameIRI(v url.URL) { - t.name = append([]*nameListenIntermediateType{&nameListenIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Listen) PrependNameIRI(v *url.URL) { + t.name = append([]*nameListenIntermediateType{&nameListenIntermediateType{IRI: v}}, t.name...) } @@ -279215,14 +279241,14 @@ func (t *Listen) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Listen) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Listen) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Listen) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeListenIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Listen) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeListenIntermediateType{IRI: v} } @@ -279326,20 +279352,20 @@ func (t *Listen) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Listen) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Listen) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Listen) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorListenIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Listen) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorListenIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Listen) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorListenIntermediateType{&generatorListenIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Listen) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorListenIntermediateType{&generatorListenIntermediateType{IRI: v}}, t.generator...) } @@ -279451,20 +279477,20 @@ func (t *Listen) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Listen) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Listen) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Listen) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconListenIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Listen) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconListenIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Listen) PrependIconIRI(v url.URL) { - t.icon = append([]*iconListenIntermediateType{&iconListenIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Listen) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconListenIntermediateType{&iconListenIntermediateType{IRI: v}}, t.icon...) } @@ -279506,14 +279532,14 @@ func (t *Listen) HasId() (ok bool) { } // GetId returns the value for id -func (t *Listen) GetId() (v url.URL) { - return *t.id +func (t *Listen) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Listen) SetId(v url.URL) { - t.id = &v +func (t *Listen) SetId(v *url.URL) { + t.id = v } @@ -279615,20 +279641,20 @@ func (t *Listen) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Listen) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Listen) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Listen) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageListenIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Listen) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageListenIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Listen) PrependImageIRI(v url.URL) { - t.image = append([]*imageListenIntermediateType{&imageListenIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Listen) PrependImageIRI(v *url.URL) { + t.image = append([]*imageListenIntermediateType{&imageListenIntermediateType{IRI: v}}, t.image...) } @@ -279740,20 +279766,20 @@ func (t *Listen) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Listen) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Listen) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Listen) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToListenIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Listen) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToListenIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Listen) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToListenIntermediateType{&inReplyToListenIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Listen) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToListenIntermediateType{&inReplyToListenIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -279865,20 +279891,20 @@ func (t *Listen) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Listen) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Listen) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Listen) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationListenIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Listen) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationListenIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Listen) PrependLocationIRI(v url.URL) { - t.location = append([]*locationListenIntermediateType{&locationListenIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Listen) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationListenIntermediateType{&locationListenIntermediateType{IRI: v}}, t.location...) } @@ -279990,20 +280016,20 @@ func (t *Listen) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Listen) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Listen) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Listen) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewListenIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Listen) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewListenIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Listen) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewListenIntermediateType{&previewListenIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Listen) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewListenIntermediateType{&previewListenIntermediateType{IRI: v}}, t.preview...) } @@ -280063,14 +280089,14 @@ func (t *Listen) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Listen) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Listen) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Listen) SetPublishedIRI(v url.URL) { - t.published = &publishedListenIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Listen) SetPublishedIRI(v *url.URL) { + t.published = &publishedListenIntermediateType{IRI: v} } @@ -280122,14 +280148,14 @@ func (t *Listen) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Listen) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Listen) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Listen) SetRepliesIRI(v url.URL) { - t.replies = &repliesListenIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Listen) SetRepliesIRI(v *url.URL) { + t.replies = &repliesListenIntermediateType{IRI: v} } @@ -280181,14 +280207,14 @@ func (t *Listen) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Listen) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Listen) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Listen) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeListenIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Listen) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeListenIntermediateType{IRI: v} } @@ -280292,20 +280318,20 @@ func (t *Listen) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Listen) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Listen) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Listen) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryListenIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Listen) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryListenIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Listen) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryListenIntermediateType{&summaryListenIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Listen) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryListenIntermediateType{&summaryListenIntermediateType{IRI: v}}, t.summary...) } @@ -280452,20 +280478,20 @@ func (t *Listen) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Listen) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Listen) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Listen) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagListenIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Listen) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagListenIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Listen) PrependTagIRI(v url.URL) { - t.tag = append([]*tagListenIntermediateType{&tagListenIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Listen) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagListenIntermediateType{&tagListenIntermediateType{IRI: v}}, t.tag...) } @@ -280557,14 +280583,14 @@ func (t *Listen) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Listen) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Listen) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Listen) SetUpdatedIRI(v url.URL) { - t.updated = &updatedListenIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Listen) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedListenIntermediateType{IRI: v} } @@ -280604,20 +280630,20 @@ func (t *Listen) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Listen) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Listen) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Listen) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlListenIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Listen) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlListenIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Listen) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlListenIntermediateType{&urlListenIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Listen) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlListenIntermediateType{&urlListenIntermediateType{anyURI: v}}, t.url...) } @@ -280761,20 +280787,20 @@ func (t *Listen) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Listen) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Listen) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Listen) AppendToIRI(v url.URL) { - t.to = append(t.to, &toListenIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Listen) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toListenIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Listen) PrependToIRI(v url.URL) { - t.to = append([]*toListenIntermediateType{&toListenIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Listen) PrependToIRI(v *url.URL) { + t.to = append([]*toListenIntermediateType{&toListenIntermediateType{IRI: v}}, t.to...) } @@ -280886,20 +280912,20 @@ func (t *Listen) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Listen) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Listen) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Listen) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoListenIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Listen) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoListenIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Listen) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoListenIntermediateType{&btoListenIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Listen) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoListenIntermediateType{&btoListenIntermediateType{IRI: v}}, t.bto...) } @@ -281011,20 +281037,20 @@ func (t *Listen) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Listen) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Listen) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Listen) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccListenIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Listen) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccListenIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Listen) PrependCcIRI(v url.URL) { - t.cc = append([]*ccListenIntermediateType{&ccListenIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Listen) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccListenIntermediateType{&ccListenIntermediateType{IRI: v}}, t.cc...) } @@ -281136,20 +281162,20 @@ func (t *Listen) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Listen) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Listen) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Listen) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccListenIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Listen) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccListenIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Listen) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccListenIntermediateType{&bccListenIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Listen) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccListenIntermediateType{&bccListenIntermediateType{IRI: v}}, t.bcc...) } @@ -281209,14 +281235,14 @@ func (t *Listen) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Listen) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Listen) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Listen) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeListenIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Listen) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeListenIntermediateType{IRI: v} } @@ -281268,14 +281294,14 @@ func (t *Listen) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Listen) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Listen) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Listen) SetDurationIRI(v url.URL) { - t.duration = &durationListenIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Listen) SetDurationIRI(v *url.URL) { + t.duration = &durationListenIntermediateType{IRI: v} } @@ -281327,14 +281353,14 @@ func (t *Listen) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Listen) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Listen) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Listen) SetSourceIRI(v url.URL) { - t.source = &sourceListenIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Listen) SetSourceIRI(v *url.URL) { + t.source = &sourceListenIntermediateType{IRI: v} } @@ -281386,14 +281412,14 @@ func (t *Listen) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Listen) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Listen) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Listen) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxListenIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Listen) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxListenIntermediateType{anyURI: v} } @@ -281445,14 +281471,14 @@ func (t *Listen) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Listen) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Listen) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Listen) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxListenIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Listen) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxListenIntermediateType{anyURI: v} } @@ -281522,14 +281548,14 @@ func (t *Listen) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Listen) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Listen) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Listen) SetFollowingAnyURI(v url.URL) { - t.following = &followingListenIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Listen) SetFollowingAnyURI(v *url.URL) { + t.following = &followingListenIntermediateType{anyURI: v} } @@ -281599,14 +281625,14 @@ func (t *Listen) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Listen) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Listen) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Listen) SetFollowersAnyURI(v url.URL) { - t.followers = &followersListenIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Listen) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersListenIntermediateType{anyURI: v} } @@ -281676,14 +281702,14 @@ func (t *Listen) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Listen) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Listen) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Listen) SetLikedAnyURI(v url.URL) { - t.liked = &likedListenIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Listen) SetLikedAnyURI(v *url.URL) { + t.liked = &likedListenIntermediateType{anyURI: v} } @@ -281753,14 +281779,14 @@ func (t *Listen) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Listen) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Listen) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Listen) SetLikesAnyURI(v url.URL) { - t.likes = &likesListenIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Listen) SetLikesAnyURI(v *url.URL) { + t.likes = &likesListenIntermediateType{anyURI: v} } @@ -281794,26 +281820,27 @@ func (t *Listen) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Listen) GetStreams(index int) (v url.URL) { +func (t *Listen) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Listen) AppendStreams(v url.URL) { +func (t *Listen) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Listen) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Listen) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Listen) 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] } @@ -281864,14 +281891,14 @@ func (t *Listen) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Listen) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Listen) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Listen) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameListenIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Listen) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameListenIntermediateType{IRI: v} } @@ -281958,14 +281985,14 @@ func (t *Listen) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Listen) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Listen) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Listen) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsListenIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Listen) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsListenIntermediateType{IRI: v} } @@ -281999,14 +282026,14 @@ func (t *Listen) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Listen) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Listen) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Listen) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Listen) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -282038,14 +282065,14 @@ func (t *Listen) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Listen) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Listen) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Listen) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Listen) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -282077,14 +282104,14 @@ func (t *Listen) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Listen) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Listen) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Listen) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Listen) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -282116,14 +282143,14 @@ func (t *Listen) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Listen) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Listen) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Listen) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Listen) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -282155,14 +282182,14 @@ func (t *Listen) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Listen) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Listen) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Listen) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Listen) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -282194,14 +282221,14 @@ func (t *Listen) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Listen) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Listen) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Listen) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Listen) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -282459,7 +282486,7 @@ func (t *Listen) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -282765,7 +282792,7 @@ func (t *Listen) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -282780,7 +282807,7 @@ func (t *Listen) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -282795,7 +282822,7 @@ func (t *Listen) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -282810,7 +282837,7 @@ func (t *Listen) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -282825,7 +282852,7 @@ func (t *Listen) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -282840,7 +282867,7 @@ func (t *Listen) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -283806,7 +283833,7 @@ func (t *Listen) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -283815,7 +283842,7 @@ func (t *Listen) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -284029,7 +284056,7 @@ func (t *actorListenIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -284097,7 +284124,7 @@ func (t *objectListenIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -284180,7 +284207,7 @@ func (t *targetListenIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -284263,7 +284290,7 @@ func (t *resultListenIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -284346,7 +284373,7 @@ func (t *originListenIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -284429,7 +284456,7 @@ func (t *instrumentListenIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -284483,7 +284510,7 @@ func (t *altitudeListenIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -284566,7 +284593,7 @@ func (t *attachmentListenIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -284649,7 +284676,7 @@ func (t *attributedToListenIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -284732,7 +284759,7 @@ func (t *audienceListenIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -284800,7 +284827,7 @@ func (t *contentListenIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -284883,7 +284910,7 @@ func (t *contextListenIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -284951,7 +284978,7 @@ func (t *nameListenIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -285005,7 +285032,7 @@ func (t *endTimeListenIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -285088,7 +285115,7 @@ func (t *generatorListenIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -285171,7 +285198,7 @@ func (t *iconListenIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -285254,7 +285281,7 @@ func (t *imageListenIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -285337,7 +285364,7 @@ func (t *inReplyToListenIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -285420,7 +285447,7 @@ func (t *locationListenIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -285503,7 +285530,7 @@ func (t *previewListenIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -285557,7 +285584,7 @@ func (t *publishedListenIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -285625,7 +285652,7 @@ func (t *repliesListenIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -285679,7 +285706,7 @@ func (t *startTimeListenIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -285747,7 +285774,7 @@ func (t *summaryListenIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -285830,7 +285857,7 @@ func (t *tagListenIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -285884,7 +285911,7 @@ func (t *updatedListenIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -285948,7 +285975,7 @@ func (t *urlListenIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlListenIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -286035,7 +286062,7 @@ func (t *toListenIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -286118,7 +286145,7 @@ func (t *btoListenIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -286201,7 +286228,7 @@ func (t *ccListenIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -286284,7 +286311,7 @@ func (t *bccListenIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -286338,7 +286365,7 @@ func (t *mediaTypeListenIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -286392,7 +286419,7 @@ func (t *durationListenIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -286460,7 +286487,7 @@ func (t *sourceListenIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -286528,7 +286555,7 @@ func (t *inboxListenIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -286596,7 +286623,7 @@ func (t *outboxListenIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -286679,7 +286706,7 @@ func (t *followingListenIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -286762,7 +286789,7 @@ func (t *followersListenIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -286845,7 +286872,7 @@ func (t *likedListenIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -286928,7 +286955,7 @@ func (t *likesListenIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -286982,7 +287009,7 @@ func (t *preferredUsernameListenIntermediateType) Serialize() (i interface{}, er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -287050,7 +287077,7 @@ func (t *endpointsListenIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -287152,7 +287179,7 @@ type Read struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesReadIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameReadIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -287250,20 +287277,20 @@ func (t *Read) IsActorIRI(index int) (ok bool) { } // GetActorIRI returns the value safely if IsActorIRI returned true for the specified index -func (t *Read) GetActorIRI(index int) (v url.URL) { - return *t.actor[index].IRI +func (t *Read) GetActorIRI(index int) (v *url.URL) { + return t.actor[index].IRI } -// AppendActorIRI adds to the back of actor a url.URL type -func (t *Read) AppendActorIRI(v url.URL) { - t.actor = append(t.actor, &actorReadIntermediateType{IRI: &v}) +// AppendActorIRI adds to the back of actor a *url.URL type +func (t *Read) AppendActorIRI(v *url.URL) { + t.actor = append(t.actor, &actorReadIntermediateType{IRI: v}) } -// PrependActorIRI adds to the front of actor a url.URL type -func (t *Read) PrependActorIRI(v url.URL) { - t.actor = append([]*actorReadIntermediateType{&actorReadIntermediateType{IRI: &v}}, t.actor...) +// PrependActorIRI adds to the front of actor a *url.URL type +func (t *Read) PrependActorIRI(v *url.URL) { + t.actor = append([]*actorReadIntermediateType{&actorReadIntermediateType{IRI: v}}, t.actor...) } @@ -287343,20 +287370,20 @@ func (t *Read) IsObjectIRI(index int) (ok bool) { } // GetObjectIRI returns the value safely if IsObjectIRI returned true for the specified index -func (t *Read) GetObjectIRI(index int) (v url.URL) { - return *t.object[index].IRI +func (t *Read) GetObjectIRI(index int) (v *url.URL) { + return t.object[index].IRI } -// AppendObjectIRI adds to the back of object a url.URL type -func (t *Read) AppendObjectIRI(v url.URL) { - t.object = append(t.object, &objectReadIntermediateType{IRI: &v}) +// AppendObjectIRI adds to the back of object a *url.URL type +func (t *Read) AppendObjectIRI(v *url.URL) { + t.object = append(t.object, &objectReadIntermediateType{IRI: v}) } -// PrependObjectIRI adds to the front of object a url.URL type -func (t *Read) PrependObjectIRI(v url.URL) { - t.object = append([]*objectReadIntermediateType{&objectReadIntermediateType{IRI: &v}}, t.object...) +// PrependObjectIRI adds to the front of object a *url.URL type +func (t *Read) PrependObjectIRI(v *url.URL) { + t.object = append([]*objectReadIntermediateType{&objectReadIntermediateType{IRI: v}}, t.object...) } @@ -287468,20 +287495,20 @@ func (t *Read) IsTargetIRI(index int) (ok bool) { } // GetTargetIRI returns the value safely if IsTargetIRI returned true for the specified index -func (t *Read) GetTargetIRI(index int) (v url.URL) { - return *t.target[index].IRI +func (t *Read) GetTargetIRI(index int) (v *url.URL) { + return t.target[index].IRI } -// AppendTargetIRI adds to the back of target a url.URL type -func (t *Read) AppendTargetIRI(v url.URL) { - t.target = append(t.target, &targetReadIntermediateType{IRI: &v}) +// AppendTargetIRI adds to the back of target a *url.URL type +func (t *Read) AppendTargetIRI(v *url.URL) { + t.target = append(t.target, &targetReadIntermediateType{IRI: v}) } -// PrependTargetIRI adds to the front of target a url.URL type -func (t *Read) PrependTargetIRI(v url.URL) { - t.target = append([]*targetReadIntermediateType{&targetReadIntermediateType{IRI: &v}}, t.target...) +// PrependTargetIRI adds to the front of target a *url.URL type +func (t *Read) PrependTargetIRI(v *url.URL) { + t.target = append([]*targetReadIntermediateType{&targetReadIntermediateType{IRI: v}}, t.target...) } @@ -287593,20 +287620,20 @@ func (t *Read) IsResultIRI(index int) (ok bool) { } // GetResultIRI returns the value safely if IsResultIRI returned true for the specified index -func (t *Read) GetResultIRI(index int) (v url.URL) { - return *t.result[index].IRI +func (t *Read) GetResultIRI(index int) (v *url.URL) { + return t.result[index].IRI } -// AppendResultIRI adds to the back of result a url.URL type -func (t *Read) AppendResultIRI(v url.URL) { - t.result = append(t.result, &resultReadIntermediateType{IRI: &v}) +// AppendResultIRI adds to the back of result a *url.URL type +func (t *Read) AppendResultIRI(v *url.URL) { + t.result = append(t.result, &resultReadIntermediateType{IRI: v}) } -// PrependResultIRI adds to the front of result a url.URL type -func (t *Read) PrependResultIRI(v url.URL) { - t.result = append([]*resultReadIntermediateType{&resultReadIntermediateType{IRI: &v}}, t.result...) +// PrependResultIRI adds to the front of result a *url.URL type +func (t *Read) PrependResultIRI(v *url.URL) { + t.result = append([]*resultReadIntermediateType{&resultReadIntermediateType{IRI: v}}, t.result...) } @@ -287718,20 +287745,20 @@ func (t *Read) IsOriginIRI(index int) (ok bool) { } // GetOriginIRI returns the value safely if IsOriginIRI returned true for the specified index -func (t *Read) GetOriginIRI(index int) (v url.URL) { - return *t.origin[index].IRI +func (t *Read) GetOriginIRI(index int) (v *url.URL) { + return t.origin[index].IRI } -// AppendOriginIRI adds to the back of origin a url.URL type -func (t *Read) AppendOriginIRI(v url.URL) { - t.origin = append(t.origin, &originReadIntermediateType{IRI: &v}) +// AppendOriginIRI adds to the back of origin a *url.URL type +func (t *Read) AppendOriginIRI(v *url.URL) { + t.origin = append(t.origin, &originReadIntermediateType{IRI: v}) } -// PrependOriginIRI adds to the front of origin a url.URL type -func (t *Read) PrependOriginIRI(v url.URL) { - t.origin = append([]*originReadIntermediateType{&originReadIntermediateType{IRI: &v}}, t.origin...) +// PrependOriginIRI adds to the front of origin a *url.URL type +func (t *Read) PrependOriginIRI(v *url.URL) { + t.origin = append([]*originReadIntermediateType{&originReadIntermediateType{IRI: v}}, t.origin...) } @@ -287843,20 +287870,20 @@ func (t *Read) IsInstrumentIRI(index int) (ok bool) { } // GetInstrumentIRI returns the value safely if IsInstrumentIRI returned true for the specified index -func (t *Read) GetInstrumentIRI(index int) (v url.URL) { - return *t.instrument[index].IRI +func (t *Read) GetInstrumentIRI(index int) (v *url.URL) { + return t.instrument[index].IRI } -// AppendInstrumentIRI adds to the back of instrument a url.URL type -func (t *Read) AppendInstrumentIRI(v url.URL) { - t.instrument = append(t.instrument, &instrumentReadIntermediateType{IRI: &v}) +// AppendInstrumentIRI adds to the back of instrument a *url.URL type +func (t *Read) AppendInstrumentIRI(v *url.URL) { + t.instrument = append(t.instrument, &instrumentReadIntermediateType{IRI: v}) } -// PrependInstrumentIRI adds to the front of instrument a url.URL type -func (t *Read) PrependInstrumentIRI(v url.URL) { - t.instrument = append([]*instrumentReadIntermediateType{&instrumentReadIntermediateType{IRI: &v}}, t.instrument...) +// PrependInstrumentIRI adds to the front of instrument a *url.URL type +func (t *Read) PrependInstrumentIRI(v *url.URL) { + t.instrument = append([]*instrumentReadIntermediateType{&instrumentReadIntermediateType{IRI: v}}, t.instrument...) } @@ -287916,14 +287943,14 @@ func (t *Read) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Read) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Read) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Read) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeReadIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Read) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeReadIntermediateType{IRI: v} } @@ -288027,20 +288054,20 @@ func (t *Read) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Read) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Read) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Read) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentReadIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Read) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentReadIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Read) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentReadIntermediateType{&attachmentReadIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Read) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentReadIntermediateType{&attachmentReadIntermediateType{IRI: v}}, t.attachment...) } @@ -288152,20 +288179,20 @@ func (t *Read) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Read) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Read) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Read) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToReadIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Read) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToReadIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Read) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToReadIntermediateType{&attributedToReadIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Read) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToReadIntermediateType{&attributedToReadIntermediateType{IRI: v}}, t.attributedTo...) } @@ -288277,20 +288304,20 @@ func (t *Read) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Read) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Read) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Read) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceReadIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Read) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceReadIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Read) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceReadIntermediateType{&audienceReadIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Read) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceReadIntermediateType{&audienceReadIntermediateType{IRI: v}}, t.audience...) } @@ -288402,20 +288429,20 @@ func (t *Read) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Read) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Read) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Read) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentReadIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Read) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentReadIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Read) PrependContentIRI(v url.URL) { - t.content = append([]*contentReadIntermediateType{&contentReadIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Read) PrependContentIRI(v *url.URL) { + t.content = append([]*contentReadIntermediateType{&contentReadIntermediateType{IRI: v}}, t.content...) } @@ -288562,20 +288589,20 @@ func (t *Read) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Read) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Read) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Read) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextReadIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Read) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextReadIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Read) PrependContextIRI(v url.URL) { - t.context = append([]*contextReadIntermediateType{&contextReadIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Read) PrependContextIRI(v *url.URL) { + t.context = append([]*contextReadIntermediateType{&contextReadIntermediateType{IRI: v}}, t.context...) } @@ -288687,20 +288714,20 @@ func (t *Read) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Read) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Read) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Read) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameReadIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Read) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameReadIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Read) PrependNameIRI(v url.URL) { - t.name = append([]*nameReadIntermediateType{&nameReadIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Read) PrependNameIRI(v *url.URL) { + t.name = append([]*nameReadIntermediateType{&nameReadIntermediateType{IRI: v}}, t.name...) } @@ -288795,14 +288822,14 @@ func (t *Read) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Read) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Read) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Read) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeReadIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Read) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeReadIntermediateType{IRI: v} } @@ -288906,20 +288933,20 @@ func (t *Read) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Read) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Read) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Read) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorReadIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Read) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorReadIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Read) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorReadIntermediateType{&generatorReadIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Read) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorReadIntermediateType{&generatorReadIntermediateType{IRI: v}}, t.generator...) } @@ -289031,20 +289058,20 @@ func (t *Read) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Read) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Read) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Read) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconReadIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Read) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconReadIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Read) PrependIconIRI(v url.URL) { - t.icon = append([]*iconReadIntermediateType{&iconReadIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Read) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconReadIntermediateType{&iconReadIntermediateType{IRI: v}}, t.icon...) } @@ -289086,14 +289113,14 @@ func (t *Read) HasId() (ok bool) { } // GetId returns the value for id -func (t *Read) GetId() (v url.URL) { - return *t.id +func (t *Read) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Read) SetId(v url.URL) { - t.id = &v +func (t *Read) SetId(v *url.URL) { + t.id = v } @@ -289195,20 +289222,20 @@ func (t *Read) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Read) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Read) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Read) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageReadIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Read) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageReadIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Read) PrependImageIRI(v url.URL) { - t.image = append([]*imageReadIntermediateType{&imageReadIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Read) PrependImageIRI(v *url.URL) { + t.image = append([]*imageReadIntermediateType{&imageReadIntermediateType{IRI: v}}, t.image...) } @@ -289320,20 +289347,20 @@ func (t *Read) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Read) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Read) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Read) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToReadIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Read) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToReadIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Read) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToReadIntermediateType{&inReplyToReadIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Read) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToReadIntermediateType{&inReplyToReadIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -289445,20 +289472,20 @@ func (t *Read) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Read) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Read) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Read) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationReadIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Read) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationReadIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Read) PrependLocationIRI(v url.URL) { - t.location = append([]*locationReadIntermediateType{&locationReadIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Read) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationReadIntermediateType{&locationReadIntermediateType{IRI: v}}, t.location...) } @@ -289570,20 +289597,20 @@ func (t *Read) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Read) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Read) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Read) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewReadIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Read) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewReadIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Read) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewReadIntermediateType{&previewReadIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Read) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewReadIntermediateType{&previewReadIntermediateType{IRI: v}}, t.preview...) } @@ -289643,14 +289670,14 @@ func (t *Read) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Read) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Read) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Read) SetPublishedIRI(v url.URL) { - t.published = &publishedReadIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Read) SetPublishedIRI(v *url.URL) { + t.published = &publishedReadIntermediateType{IRI: v} } @@ -289702,14 +289729,14 @@ func (t *Read) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Read) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Read) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Read) SetRepliesIRI(v url.URL) { - t.replies = &repliesReadIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Read) SetRepliesIRI(v *url.URL) { + t.replies = &repliesReadIntermediateType{IRI: v} } @@ -289761,14 +289788,14 @@ func (t *Read) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Read) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Read) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Read) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeReadIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Read) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeReadIntermediateType{IRI: v} } @@ -289872,20 +289899,20 @@ func (t *Read) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Read) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Read) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Read) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryReadIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Read) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryReadIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Read) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryReadIntermediateType{&summaryReadIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Read) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryReadIntermediateType{&summaryReadIntermediateType{IRI: v}}, t.summary...) } @@ -290032,20 +290059,20 @@ func (t *Read) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Read) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Read) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Read) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagReadIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Read) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagReadIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Read) PrependTagIRI(v url.URL) { - t.tag = append([]*tagReadIntermediateType{&tagReadIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Read) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagReadIntermediateType{&tagReadIntermediateType{IRI: v}}, t.tag...) } @@ -290137,14 +290164,14 @@ func (t *Read) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Read) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Read) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Read) SetUpdatedIRI(v url.URL) { - t.updated = &updatedReadIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Read) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedReadIntermediateType{IRI: v} } @@ -290184,20 +290211,20 @@ func (t *Read) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Read) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Read) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Read) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlReadIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Read) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlReadIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Read) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlReadIntermediateType{&urlReadIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Read) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlReadIntermediateType{&urlReadIntermediateType{anyURI: v}}, t.url...) } @@ -290341,20 +290368,20 @@ func (t *Read) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Read) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Read) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Read) AppendToIRI(v url.URL) { - t.to = append(t.to, &toReadIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Read) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toReadIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Read) PrependToIRI(v url.URL) { - t.to = append([]*toReadIntermediateType{&toReadIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Read) PrependToIRI(v *url.URL) { + t.to = append([]*toReadIntermediateType{&toReadIntermediateType{IRI: v}}, t.to...) } @@ -290466,20 +290493,20 @@ func (t *Read) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Read) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Read) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Read) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoReadIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Read) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoReadIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Read) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoReadIntermediateType{&btoReadIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Read) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoReadIntermediateType{&btoReadIntermediateType{IRI: v}}, t.bto...) } @@ -290591,20 +290618,20 @@ func (t *Read) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Read) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Read) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Read) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccReadIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Read) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccReadIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Read) PrependCcIRI(v url.URL) { - t.cc = append([]*ccReadIntermediateType{&ccReadIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Read) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccReadIntermediateType{&ccReadIntermediateType{IRI: v}}, t.cc...) } @@ -290716,20 +290743,20 @@ func (t *Read) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Read) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Read) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Read) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccReadIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Read) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccReadIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Read) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccReadIntermediateType{&bccReadIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Read) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccReadIntermediateType{&bccReadIntermediateType{IRI: v}}, t.bcc...) } @@ -290789,14 +290816,14 @@ func (t *Read) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Read) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Read) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Read) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeReadIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Read) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeReadIntermediateType{IRI: v} } @@ -290848,14 +290875,14 @@ func (t *Read) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Read) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Read) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Read) SetDurationIRI(v url.URL) { - t.duration = &durationReadIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Read) SetDurationIRI(v *url.URL) { + t.duration = &durationReadIntermediateType{IRI: v} } @@ -290907,14 +290934,14 @@ func (t *Read) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Read) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Read) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Read) SetSourceIRI(v url.URL) { - t.source = &sourceReadIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Read) SetSourceIRI(v *url.URL) { + t.source = &sourceReadIntermediateType{IRI: v} } @@ -290966,14 +290993,14 @@ func (t *Read) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Read) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Read) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Read) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxReadIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Read) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxReadIntermediateType{anyURI: v} } @@ -291025,14 +291052,14 @@ func (t *Read) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Read) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Read) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Read) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxReadIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Read) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxReadIntermediateType{anyURI: v} } @@ -291102,14 +291129,14 @@ func (t *Read) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Read) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Read) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Read) SetFollowingAnyURI(v url.URL) { - t.following = &followingReadIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Read) SetFollowingAnyURI(v *url.URL) { + t.following = &followingReadIntermediateType{anyURI: v} } @@ -291179,14 +291206,14 @@ func (t *Read) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Read) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Read) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Read) SetFollowersAnyURI(v url.URL) { - t.followers = &followersReadIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Read) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersReadIntermediateType{anyURI: v} } @@ -291256,14 +291283,14 @@ func (t *Read) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Read) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Read) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Read) SetLikedAnyURI(v url.URL) { - t.liked = &likedReadIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Read) SetLikedAnyURI(v *url.URL) { + t.liked = &likedReadIntermediateType{anyURI: v} } @@ -291333,14 +291360,14 @@ func (t *Read) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Read) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Read) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Read) SetLikesAnyURI(v url.URL) { - t.likes = &likesReadIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Read) SetLikesAnyURI(v *url.URL) { + t.likes = &likesReadIntermediateType{anyURI: v} } @@ -291374,26 +291401,27 @@ func (t *Read) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Read) GetStreams(index int) (v url.URL) { +func (t *Read) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Read) AppendStreams(v url.URL) { +func (t *Read) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Read) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Read) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Read) 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] } @@ -291444,14 +291472,14 @@ func (t *Read) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Read) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Read) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Read) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameReadIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Read) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameReadIntermediateType{IRI: v} } @@ -291538,14 +291566,14 @@ func (t *Read) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Read) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Read) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Read) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsReadIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Read) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsReadIntermediateType{IRI: v} } @@ -291579,14 +291607,14 @@ func (t *Read) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Read) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Read) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Read) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Read) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -291618,14 +291646,14 @@ func (t *Read) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Read) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Read) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Read) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Read) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -291657,14 +291685,14 @@ func (t *Read) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Read) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Read) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Read) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Read) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -291696,14 +291724,14 @@ func (t *Read) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Read) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Read) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Read) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Read) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -291735,14 +291763,14 @@ func (t *Read) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Read) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Read) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Read) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Read) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -291774,14 +291802,14 @@ func (t *Read) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Read) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Read) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Read) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Read) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -292039,7 +292067,7 @@ func (t *Read) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -292345,7 +292373,7 @@ func (t *Read) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -292360,7 +292388,7 @@ func (t *Read) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -292375,7 +292403,7 @@ func (t *Read) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -292390,7 +292418,7 @@ func (t *Read) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -292405,7 +292433,7 @@ func (t *Read) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -292420,7 +292448,7 @@ func (t *Read) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -293386,7 +293414,7 @@ func (t *Read) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -293395,7 +293423,7 @@ func (t *Read) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -293609,7 +293637,7 @@ func (t *actorReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -293677,7 +293705,7 @@ func (t *objectReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -293760,7 +293788,7 @@ func (t *targetReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -293843,7 +293871,7 @@ func (t *resultReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -293926,7 +293954,7 @@ func (t *originReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -294009,7 +294037,7 @@ func (t *instrumentReadIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -294063,7 +294091,7 @@ func (t *altitudeReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -294146,7 +294174,7 @@ func (t *attachmentReadIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -294229,7 +294257,7 @@ func (t *attributedToReadIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -294312,7 +294340,7 @@ func (t *audienceReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -294380,7 +294408,7 @@ func (t *contentReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -294463,7 +294491,7 @@ func (t *contextReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -294531,7 +294559,7 @@ func (t *nameReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -294585,7 +294613,7 @@ func (t *endTimeReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -294668,7 +294696,7 @@ func (t *generatorReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -294751,7 +294779,7 @@ func (t *iconReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -294834,7 +294862,7 @@ func (t *imageReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -294917,7 +294945,7 @@ func (t *inReplyToReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -295000,7 +295028,7 @@ func (t *locationReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -295083,7 +295111,7 @@ func (t *previewReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -295137,7 +295165,7 @@ func (t *publishedReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -295205,7 +295233,7 @@ func (t *repliesReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -295259,7 +295287,7 @@ func (t *startTimeReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -295327,7 +295355,7 @@ func (t *summaryReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -295410,7 +295438,7 @@ func (t *tagReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -295464,7 +295492,7 @@ func (t *updatedReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -295528,7 +295556,7 @@ func (t *urlReadIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlReadIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -295615,7 +295643,7 @@ func (t *toReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -295698,7 +295726,7 @@ func (t *btoReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -295781,7 +295809,7 @@ func (t *ccReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -295864,7 +295892,7 @@ func (t *bccReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -295918,7 +295946,7 @@ func (t *mediaTypeReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -295972,7 +296000,7 @@ func (t *durationReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -296040,7 +296068,7 @@ func (t *sourceReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -296108,7 +296136,7 @@ func (t *inboxReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -296176,7 +296204,7 @@ func (t *outboxReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -296259,7 +296287,7 @@ func (t *followingReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -296342,7 +296370,7 @@ func (t *followersReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -296425,7 +296453,7 @@ func (t *likedReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -296508,7 +296536,7 @@ func (t *likesReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -296562,7 +296590,7 @@ func (t *preferredUsernameReadIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -296630,7 +296658,7 @@ func (t *endpointsReadIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -296732,7 +296760,7 @@ type Move struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesMoveIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameMoveIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -296830,20 +296858,20 @@ func (t *Move) IsActorIRI(index int) (ok bool) { } // GetActorIRI returns the value safely if IsActorIRI returned true for the specified index -func (t *Move) GetActorIRI(index int) (v url.URL) { - return *t.actor[index].IRI +func (t *Move) GetActorIRI(index int) (v *url.URL) { + return t.actor[index].IRI } -// AppendActorIRI adds to the back of actor a url.URL type -func (t *Move) AppendActorIRI(v url.URL) { - t.actor = append(t.actor, &actorMoveIntermediateType{IRI: &v}) +// AppendActorIRI adds to the back of actor a *url.URL type +func (t *Move) AppendActorIRI(v *url.URL) { + t.actor = append(t.actor, &actorMoveIntermediateType{IRI: v}) } -// PrependActorIRI adds to the front of actor a url.URL type -func (t *Move) PrependActorIRI(v url.URL) { - t.actor = append([]*actorMoveIntermediateType{&actorMoveIntermediateType{IRI: &v}}, t.actor...) +// PrependActorIRI adds to the front of actor a *url.URL type +func (t *Move) PrependActorIRI(v *url.URL) { + t.actor = append([]*actorMoveIntermediateType{&actorMoveIntermediateType{IRI: v}}, t.actor...) } @@ -296923,20 +296951,20 @@ func (t *Move) IsObjectIRI(index int) (ok bool) { } // GetObjectIRI returns the value safely if IsObjectIRI returned true for the specified index -func (t *Move) GetObjectIRI(index int) (v url.URL) { - return *t.object[index].IRI +func (t *Move) GetObjectIRI(index int) (v *url.URL) { + return t.object[index].IRI } -// AppendObjectIRI adds to the back of object a url.URL type -func (t *Move) AppendObjectIRI(v url.URL) { - t.object = append(t.object, &objectMoveIntermediateType{IRI: &v}) +// AppendObjectIRI adds to the back of object a *url.URL type +func (t *Move) AppendObjectIRI(v *url.URL) { + t.object = append(t.object, &objectMoveIntermediateType{IRI: v}) } -// PrependObjectIRI adds to the front of object a url.URL type -func (t *Move) PrependObjectIRI(v url.URL) { - t.object = append([]*objectMoveIntermediateType{&objectMoveIntermediateType{IRI: &v}}, t.object...) +// PrependObjectIRI adds to the front of object a *url.URL type +func (t *Move) PrependObjectIRI(v *url.URL) { + t.object = append([]*objectMoveIntermediateType{&objectMoveIntermediateType{IRI: v}}, t.object...) } @@ -297048,20 +297076,20 @@ func (t *Move) IsTargetIRI(index int) (ok bool) { } // GetTargetIRI returns the value safely if IsTargetIRI returned true for the specified index -func (t *Move) GetTargetIRI(index int) (v url.URL) { - return *t.target[index].IRI +func (t *Move) GetTargetIRI(index int) (v *url.URL) { + return t.target[index].IRI } -// AppendTargetIRI adds to the back of target a url.URL type -func (t *Move) AppendTargetIRI(v url.URL) { - t.target = append(t.target, &targetMoveIntermediateType{IRI: &v}) +// AppendTargetIRI adds to the back of target a *url.URL type +func (t *Move) AppendTargetIRI(v *url.URL) { + t.target = append(t.target, &targetMoveIntermediateType{IRI: v}) } -// PrependTargetIRI adds to the front of target a url.URL type -func (t *Move) PrependTargetIRI(v url.URL) { - t.target = append([]*targetMoveIntermediateType{&targetMoveIntermediateType{IRI: &v}}, t.target...) +// PrependTargetIRI adds to the front of target a *url.URL type +func (t *Move) PrependTargetIRI(v *url.URL) { + t.target = append([]*targetMoveIntermediateType{&targetMoveIntermediateType{IRI: v}}, t.target...) } @@ -297173,20 +297201,20 @@ func (t *Move) IsResultIRI(index int) (ok bool) { } // GetResultIRI returns the value safely if IsResultIRI returned true for the specified index -func (t *Move) GetResultIRI(index int) (v url.URL) { - return *t.result[index].IRI +func (t *Move) GetResultIRI(index int) (v *url.URL) { + return t.result[index].IRI } -// AppendResultIRI adds to the back of result a url.URL type -func (t *Move) AppendResultIRI(v url.URL) { - t.result = append(t.result, &resultMoveIntermediateType{IRI: &v}) +// AppendResultIRI adds to the back of result a *url.URL type +func (t *Move) AppendResultIRI(v *url.URL) { + t.result = append(t.result, &resultMoveIntermediateType{IRI: v}) } -// PrependResultIRI adds to the front of result a url.URL type -func (t *Move) PrependResultIRI(v url.URL) { - t.result = append([]*resultMoveIntermediateType{&resultMoveIntermediateType{IRI: &v}}, t.result...) +// PrependResultIRI adds to the front of result a *url.URL type +func (t *Move) PrependResultIRI(v *url.URL) { + t.result = append([]*resultMoveIntermediateType{&resultMoveIntermediateType{IRI: v}}, t.result...) } @@ -297298,20 +297326,20 @@ func (t *Move) IsOriginIRI(index int) (ok bool) { } // GetOriginIRI returns the value safely if IsOriginIRI returned true for the specified index -func (t *Move) GetOriginIRI(index int) (v url.URL) { - return *t.origin[index].IRI +func (t *Move) GetOriginIRI(index int) (v *url.URL) { + return t.origin[index].IRI } -// AppendOriginIRI adds to the back of origin a url.URL type -func (t *Move) AppendOriginIRI(v url.URL) { - t.origin = append(t.origin, &originMoveIntermediateType{IRI: &v}) +// AppendOriginIRI adds to the back of origin a *url.URL type +func (t *Move) AppendOriginIRI(v *url.URL) { + t.origin = append(t.origin, &originMoveIntermediateType{IRI: v}) } -// PrependOriginIRI adds to the front of origin a url.URL type -func (t *Move) PrependOriginIRI(v url.URL) { - t.origin = append([]*originMoveIntermediateType{&originMoveIntermediateType{IRI: &v}}, t.origin...) +// PrependOriginIRI adds to the front of origin a *url.URL type +func (t *Move) PrependOriginIRI(v *url.URL) { + t.origin = append([]*originMoveIntermediateType{&originMoveIntermediateType{IRI: v}}, t.origin...) } @@ -297423,20 +297451,20 @@ func (t *Move) IsInstrumentIRI(index int) (ok bool) { } // GetInstrumentIRI returns the value safely if IsInstrumentIRI returned true for the specified index -func (t *Move) GetInstrumentIRI(index int) (v url.URL) { - return *t.instrument[index].IRI +func (t *Move) GetInstrumentIRI(index int) (v *url.URL) { + return t.instrument[index].IRI } -// AppendInstrumentIRI adds to the back of instrument a url.URL type -func (t *Move) AppendInstrumentIRI(v url.URL) { - t.instrument = append(t.instrument, &instrumentMoveIntermediateType{IRI: &v}) +// AppendInstrumentIRI adds to the back of instrument a *url.URL type +func (t *Move) AppendInstrumentIRI(v *url.URL) { + t.instrument = append(t.instrument, &instrumentMoveIntermediateType{IRI: v}) } -// PrependInstrumentIRI adds to the front of instrument a url.URL type -func (t *Move) PrependInstrumentIRI(v url.URL) { - t.instrument = append([]*instrumentMoveIntermediateType{&instrumentMoveIntermediateType{IRI: &v}}, t.instrument...) +// PrependInstrumentIRI adds to the front of instrument a *url.URL type +func (t *Move) PrependInstrumentIRI(v *url.URL) { + t.instrument = append([]*instrumentMoveIntermediateType{&instrumentMoveIntermediateType{IRI: v}}, t.instrument...) } @@ -297496,14 +297524,14 @@ func (t *Move) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Move) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Move) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Move) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeMoveIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Move) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeMoveIntermediateType{IRI: v} } @@ -297607,20 +297635,20 @@ func (t *Move) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Move) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Move) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Move) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentMoveIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Move) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentMoveIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Move) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentMoveIntermediateType{&attachmentMoveIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Move) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentMoveIntermediateType{&attachmentMoveIntermediateType{IRI: v}}, t.attachment...) } @@ -297732,20 +297760,20 @@ func (t *Move) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Move) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Move) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Move) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToMoveIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Move) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToMoveIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Move) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToMoveIntermediateType{&attributedToMoveIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Move) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToMoveIntermediateType{&attributedToMoveIntermediateType{IRI: v}}, t.attributedTo...) } @@ -297857,20 +297885,20 @@ func (t *Move) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Move) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Move) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Move) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceMoveIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Move) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceMoveIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Move) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceMoveIntermediateType{&audienceMoveIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Move) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceMoveIntermediateType{&audienceMoveIntermediateType{IRI: v}}, t.audience...) } @@ -297982,20 +298010,20 @@ func (t *Move) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Move) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Move) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Move) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentMoveIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Move) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentMoveIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Move) PrependContentIRI(v url.URL) { - t.content = append([]*contentMoveIntermediateType{&contentMoveIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Move) PrependContentIRI(v *url.URL) { + t.content = append([]*contentMoveIntermediateType{&contentMoveIntermediateType{IRI: v}}, t.content...) } @@ -298142,20 +298170,20 @@ func (t *Move) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Move) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Move) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Move) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextMoveIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Move) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextMoveIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Move) PrependContextIRI(v url.URL) { - t.context = append([]*contextMoveIntermediateType{&contextMoveIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Move) PrependContextIRI(v *url.URL) { + t.context = append([]*contextMoveIntermediateType{&contextMoveIntermediateType{IRI: v}}, t.context...) } @@ -298267,20 +298295,20 @@ func (t *Move) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Move) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Move) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Move) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameMoveIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Move) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameMoveIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Move) PrependNameIRI(v url.URL) { - t.name = append([]*nameMoveIntermediateType{&nameMoveIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Move) PrependNameIRI(v *url.URL) { + t.name = append([]*nameMoveIntermediateType{&nameMoveIntermediateType{IRI: v}}, t.name...) } @@ -298375,14 +298403,14 @@ func (t *Move) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Move) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Move) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Move) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeMoveIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Move) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeMoveIntermediateType{IRI: v} } @@ -298486,20 +298514,20 @@ func (t *Move) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Move) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Move) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Move) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorMoveIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Move) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorMoveIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Move) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorMoveIntermediateType{&generatorMoveIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Move) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorMoveIntermediateType{&generatorMoveIntermediateType{IRI: v}}, t.generator...) } @@ -298611,20 +298639,20 @@ func (t *Move) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Move) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Move) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Move) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconMoveIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Move) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconMoveIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Move) PrependIconIRI(v url.URL) { - t.icon = append([]*iconMoveIntermediateType{&iconMoveIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Move) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconMoveIntermediateType{&iconMoveIntermediateType{IRI: v}}, t.icon...) } @@ -298666,14 +298694,14 @@ func (t *Move) HasId() (ok bool) { } // GetId returns the value for id -func (t *Move) GetId() (v url.URL) { - return *t.id +func (t *Move) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Move) SetId(v url.URL) { - t.id = &v +func (t *Move) SetId(v *url.URL) { + t.id = v } @@ -298775,20 +298803,20 @@ func (t *Move) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Move) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Move) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Move) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageMoveIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Move) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageMoveIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Move) PrependImageIRI(v url.URL) { - t.image = append([]*imageMoveIntermediateType{&imageMoveIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Move) PrependImageIRI(v *url.URL) { + t.image = append([]*imageMoveIntermediateType{&imageMoveIntermediateType{IRI: v}}, t.image...) } @@ -298900,20 +298928,20 @@ func (t *Move) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Move) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Move) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Move) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToMoveIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Move) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToMoveIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Move) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToMoveIntermediateType{&inReplyToMoveIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Move) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToMoveIntermediateType{&inReplyToMoveIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -299025,20 +299053,20 @@ func (t *Move) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Move) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Move) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Move) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationMoveIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Move) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationMoveIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Move) PrependLocationIRI(v url.URL) { - t.location = append([]*locationMoveIntermediateType{&locationMoveIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Move) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationMoveIntermediateType{&locationMoveIntermediateType{IRI: v}}, t.location...) } @@ -299150,20 +299178,20 @@ func (t *Move) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Move) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Move) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Move) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewMoveIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Move) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewMoveIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Move) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewMoveIntermediateType{&previewMoveIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Move) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewMoveIntermediateType{&previewMoveIntermediateType{IRI: v}}, t.preview...) } @@ -299223,14 +299251,14 @@ func (t *Move) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Move) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Move) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Move) SetPublishedIRI(v url.URL) { - t.published = &publishedMoveIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Move) SetPublishedIRI(v *url.URL) { + t.published = &publishedMoveIntermediateType{IRI: v} } @@ -299282,14 +299310,14 @@ func (t *Move) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Move) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Move) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Move) SetRepliesIRI(v url.URL) { - t.replies = &repliesMoveIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Move) SetRepliesIRI(v *url.URL) { + t.replies = &repliesMoveIntermediateType{IRI: v} } @@ -299341,14 +299369,14 @@ func (t *Move) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Move) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Move) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Move) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeMoveIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Move) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeMoveIntermediateType{IRI: v} } @@ -299452,20 +299480,20 @@ func (t *Move) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Move) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Move) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Move) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryMoveIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Move) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryMoveIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Move) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryMoveIntermediateType{&summaryMoveIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Move) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryMoveIntermediateType{&summaryMoveIntermediateType{IRI: v}}, t.summary...) } @@ -299612,20 +299640,20 @@ func (t *Move) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Move) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Move) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Move) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagMoveIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Move) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagMoveIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Move) PrependTagIRI(v url.URL) { - t.tag = append([]*tagMoveIntermediateType{&tagMoveIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Move) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagMoveIntermediateType{&tagMoveIntermediateType{IRI: v}}, t.tag...) } @@ -299717,14 +299745,14 @@ func (t *Move) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Move) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Move) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Move) SetUpdatedIRI(v url.URL) { - t.updated = &updatedMoveIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Move) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedMoveIntermediateType{IRI: v} } @@ -299764,20 +299792,20 @@ func (t *Move) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Move) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Move) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Move) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlMoveIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Move) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlMoveIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Move) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlMoveIntermediateType{&urlMoveIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Move) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlMoveIntermediateType{&urlMoveIntermediateType{anyURI: v}}, t.url...) } @@ -299921,20 +299949,20 @@ func (t *Move) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Move) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Move) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Move) AppendToIRI(v url.URL) { - t.to = append(t.to, &toMoveIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Move) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toMoveIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Move) PrependToIRI(v url.URL) { - t.to = append([]*toMoveIntermediateType{&toMoveIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Move) PrependToIRI(v *url.URL) { + t.to = append([]*toMoveIntermediateType{&toMoveIntermediateType{IRI: v}}, t.to...) } @@ -300046,20 +300074,20 @@ func (t *Move) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Move) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Move) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Move) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoMoveIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Move) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoMoveIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Move) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoMoveIntermediateType{&btoMoveIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Move) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoMoveIntermediateType{&btoMoveIntermediateType{IRI: v}}, t.bto...) } @@ -300171,20 +300199,20 @@ func (t *Move) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Move) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Move) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Move) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccMoveIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Move) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccMoveIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Move) PrependCcIRI(v url.URL) { - t.cc = append([]*ccMoveIntermediateType{&ccMoveIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Move) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccMoveIntermediateType{&ccMoveIntermediateType{IRI: v}}, t.cc...) } @@ -300296,20 +300324,20 @@ func (t *Move) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Move) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Move) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Move) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccMoveIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Move) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccMoveIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Move) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccMoveIntermediateType{&bccMoveIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Move) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccMoveIntermediateType{&bccMoveIntermediateType{IRI: v}}, t.bcc...) } @@ -300369,14 +300397,14 @@ func (t *Move) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Move) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Move) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Move) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeMoveIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Move) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeMoveIntermediateType{IRI: v} } @@ -300428,14 +300456,14 @@ func (t *Move) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Move) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Move) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Move) SetDurationIRI(v url.URL) { - t.duration = &durationMoveIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Move) SetDurationIRI(v *url.URL) { + t.duration = &durationMoveIntermediateType{IRI: v} } @@ -300487,14 +300515,14 @@ func (t *Move) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Move) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Move) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Move) SetSourceIRI(v url.URL) { - t.source = &sourceMoveIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Move) SetSourceIRI(v *url.URL) { + t.source = &sourceMoveIntermediateType{IRI: v} } @@ -300546,14 +300574,14 @@ func (t *Move) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Move) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Move) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Move) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxMoveIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Move) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxMoveIntermediateType{anyURI: v} } @@ -300605,14 +300633,14 @@ func (t *Move) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Move) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Move) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Move) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxMoveIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Move) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxMoveIntermediateType{anyURI: v} } @@ -300682,14 +300710,14 @@ func (t *Move) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Move) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Move) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Move) SetFollowingAnyURI(v url.URL) { - t.following = &followingMoveIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Move) SetFollowingAnyURI(v *url.URL) { + t.following = &followingMoveIntermediateType{anyURI: v} } @@ -300759,14 +300787,14 @@ func (t *Move) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Move) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Move) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Move) SetFollowersAnyURI(v url.URL) { - t.followers = &followersMoveIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Move) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersMoveIntermediateType{anyURI: v} } @@ -300836,14 +300864,14 @@ func (t *Move) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Move) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Move) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Move) SetLikedAnyURI(v url.URL) { - t.liked = &likedMoveIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Move) SetLikedAnyURI(v *url.URL) { + t.liked = &likedMoveIntermediateType{anyURI: v} } @@ -300913,14 +300941,14 @@ func (t *Move) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Move) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Move) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Move) SetLikesAnyURI(v url.URL) { - t.likes = &likesMoveIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Move) SetLikesAnyURI(v *url.URL) { + t.likes = &likesMoveIntermediateType{anyURI: v} } @@ -300954,26 +300982,27 @@ func (t *Move) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Move) GetStreams(index int) (v url.URL) { +func (t *Move) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Move) AppendStreams(v url.URL) { +func (t *Move) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Move) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Move) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Move) 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] } @@ -301024,14 +301053,14 @@ func (t *Move) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Move) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Move) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Move) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameMoveIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Move) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameMoveIntermediateType{IRI: v} } @@ -301118,14 +301147,14 @@ func (t *Move) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Move) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Move) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Move) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsMoveIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Move) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsMoveIntermediateType{IRI: v} } @@ -301159,14 +301188,14 @@ func (t *Move) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Move) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Move) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Move) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Move) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -301198,14 +301227,14 @@ func (t *Move) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Move) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Move) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Move) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Move) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -301237,14 +301266,14 @@ func (t *Move) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Move) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Move) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Move) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Move) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -301276,14 +301305,14 @@ func (t *Move) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Move) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Move) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Move) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Move) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -301315,14 +301344,14 @@ func (t *Move) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Move) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Move) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Move) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Move) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -301354,14 +301383,14 @@ func (t *Move) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Move) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Move) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Move) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Move) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -301619,7 +301648,7 @@ func (t *Move) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -301925,7 +301954,7 @@ func (t *Move) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -301940,7 +301969,7 @@ func (t *Move) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -301955,7 +301984,7 @@ func (t *Move) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -301970,7 +301999,7 @@ func (t *Move) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -301985,7 +302014,7 @@ func (t *Move) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -302000,7 +302029,7 @@ func (t *Move) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -302966,7 +302995,7 @@ func (t *Move) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -302975,7 +303004,7 @@ func (t *Move) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -303189,7 +303218,7 @@ func (t *actorMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -303257,7 +303286,7 @@ func (t *objectMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -303340,7 +303369,7 @@ func (t *targetMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -303423,7 +303452,7 @@ func (t *resultMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -303506,7 +303535,7 @@ func (t *originMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -303589,7 +303618,7 @@ func (t *instrumentMoveIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -303643,7 +303672,7 @@ func (t *altitudeMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -303726,7 +303755,7 @@ func (t *attachmentMoveIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -303809,7 +303838,7 @@ func (t *attributedToMoveIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -303892,7 +303921,7 @@ func (t *audienceMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -303960,7 +303989,7 @@ func (t *contentMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -304043,7 +304072,7 @@ func (t *contextMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -304111,7 +304140,7 @@ func (t *nameMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -304165,7 +304194,7 @@ func (t *endTimeMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -304248,7 +304277,7 @@ func (t *generatorMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -304331,7 +304360,7 @@ func (t *iconMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -304414,7 +304443,7 @@ func (t *imageMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -304497,7 +304526,7 @@ func (t *inReplyToMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -304580,7 +304609,7 @@ func (t *locationMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -304663,7 +304692,7 @@ func (t *previewMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -304717,7 +304746,7 @@ func (t *publishedMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -304785,7 +304814,7 @@ func (t *repliesMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -304839,7 +304868,7 @@ func (t *startTimeMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -304907,7 +304936,7 @@ func (t *summaryMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -304990,7 +305019,7 @@ func (t *tagMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -305044,7 +305073,7 @@ func (t *updatedMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -305108,7 +305137,7 @@ func (t *urlMoveIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlMoveIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -305195,7 +305224,7 @@ func (t *toMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -305278,7 +305307,7 @@ func (t *btoMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -305361,7 +305390,7 @@ func (t *ccMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -305444,7 +305473,7 @@ func (t *bccMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -305498,7 +305527,7 @@ func (t *mediaTypeMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -305552,7 +305581,7 @@ func (t *durationMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -305620,7 +305649,7 @@ func (t *sourceMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -305688,7 +305717,7 @@ func (t *inboxMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -305756,7 +305785,7 @@ func (t *outboxMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -305839,7 +305868,7 @@ func (t *followingMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -305922,7 +305951,7 @@ func (t *followersMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -306005,7 +306034,7 @@ func (t *likedMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -306088,7 +306117,7 @@ func (t *likesMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -306142,7 +306171,7 @@ func (t *preferredUsernameMoveIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -306210,7 +306239,7 @@ func (t *endpointsMoveIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -306310,7 +306339,7 @@ type Travel struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesTravelIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameTravelIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -306408,20 +306437,20 @@ func (t *Travel) IsActorIRI(index int) (ok bool) { } // GetActorIRI returns the value safely if IsActorIRI returned true for the specified index -func (t *Travel) GetActorIRI(index int) (v url.URL) { - return *t.actor[index].IRI +func (t *Travel) GetActorIRI(index int) (v *url.URL) { + return t.actor[index].IRI } -// AppendActorIRI adds to the back of actor a url.URL type -func (t *Travel) AppendActorIRI(v url.URL) { - t.actor = append(t.actor, &actorTravelIntermediateType{IRI: &v}) +// AppendActorIRI adds to the back of actor a *url.URL type +func (t *Travel) AppendActorIRI(v *url.URL) { + t.actor = append(t.actor, &actorTravelIntermediateType{IRI: v}) } -// PrependActorIRI adds to the front of actor a url.URL type -func (t *Travel) PrependActorIRI(v url.URL) { - t.actor = append([]*actorTravelIntermediateType{&actorTravelIntermediateType{IRI: &v}}, t.actor...) +// PrependActorIRI adds to the front of actor a *url.URL type +func (t *Travel) PrependActorIRI(v *url.URL) { + t.actor = append([]*actorTravelIntermediateType{&actorTravelIntermediateType{IRI: v}}, t.actor...) } @@ -306533,20 +306562,20 @@ func (t *Travel) IsTargetIRI(index int) (ok bool) { } // GetTargetIRI returns the value safely if IsTargetIRI returned true for the specified index -func (t *Travel) GetTargetIRI(index int) (v url.URL) { - return *t.target[index].IRI +func (t *Travel) GetTargetIRI(index int) (v *url.URL) { + return t.target[index].IRI } -// AppendTargetIRI adds to the back of target a url.URL type -func (t *Travel) AppendTargetIRI(v url.URL) { - t.target = append(t.target, &targetTravelIntermediateType{IRI: &v}) +// AppendTargetIRI adds to the back of target a *url.URL type +func (t *Travel) AppendTargetIRI(v *url.URL) { + t.target = append(t.target, &targetTravelIntermediateType{IRI: v}) } -// PrependTargetIRI adds to the front of target a url.URL type -func (t *Travel) PrependTargetIRI(v url.URL) { - t.target = append([]*targetTravelIntermediateType{&targetTravelIntermediateType{IRI: &v}}, t.target...) +// PrependTargetIRI adds to the front of target a *url.URL type +func (t *Travel) PrependTargetIRI(v *url.URL) { + t.target = append([]*targetTravelIntermediateType{&targetTravelIntermediateType{IRI: v}}, t.target...) } @@ -306658,20 +306687,20 @@ func (t *Travel) IsResultIRI(index int) (ok bool) { } // GetResultIRI returns the value safely if IsResultIRI returned true for the specified index -func (t *Travel) GetResultIRI(index int) (v url.URL) { - return *t.result[index].IRI +func (t *Travel) GetResultIRI(index int) (v *url.URL) { + return t.result[index].IRI } -// AppendResultIRI adds to the back of result a url.URL type -func (t *Travel) AppendResultIRI(v url.URL) { - t.result = append(t.result, &resultTravelIntermediateType{IRI: &v}) +// AppendResultIRI adds to the back of result a *url.URL type +func (t *Travel) AppendResultIRI(v *url.URL) { + t.result = append(t.result, &resultTravelIntermediateType{IRI: v}) } -// PrependResultIRI adds to the front of result a url.URL type -func (t *Travel) PrependResultIRI(v url.URL) { - t.result = append([]*resultTravelIntermediateType{&resultTravelIntermediateType{IRI: &v}}, t.result...) +// PrependResultIRI adds to the front of result a *url.URL type +func (t *Travel) PrependResultIRI(v *url.URL) { + t.result = append([]*resultTravelIntermediateType{&resultTravelIntermediateType{IRI: v}}, t.result...) } @@ -306783,20 +306812,20 @@ func (t *Travel) IsOriginIRI(index int) (ok bool) { } // GetOriginIRI returns the value safely if IsOriginIRI returned true for the specified index -func (t *Travel) GetOriginIRI(index int) (v url.URL) { - return *t.origin[index].IRI +func (t *Travel) GetOriginIRI(index int) (v *url.URL) { + return t.origin[index].IRI } -// AppendOriginIRI adds to the back of origin a url.URL type -func (t *Travel) AppendOriginIRI(v url.URL) { - t.origin = append(t.origin, &originTravelIntermediateType{IRI: &v}) +// AppendOriginIRI adds to the back of origin a *url.URL type +func (t *Travel) AppendOriginIRI(v *url.URL) { + t.origin = append(t.origin, &originTravelIntermediateType{IRI: v}) } -// PrependOriginIRI adds to the front of origin a url.URL type -func (t *Travel) PrependOriginIRI(v url.URL) { - t.origin = append([]*originTravelIntermediateType{&originTravelIntermediateType{IRI: &v}}, t.origin...) +// PrependOriginIRI adds to the front of origin a *url.URL type +func (t *Travel) PrependOriginIRI(v *url.URL) { + t.origin = append([]*originTravelIntermediateType{&originTravelIntermediateType{IRI: v}}, t.origin...) } @@ -306908,20 +306937,20 @@ func (t *Travel) IsInstrumentIRI(index int) (ok bool) { } // GetInstrumentIRI returns the value safely if IsInstrumentIRI returned true for the specified index -func (t *Travel) GetInstrumentIRI(index int) (v url.URL) { - return *t.instrument[index].IRI +func (t *Travel) GetInstrumentIRI(index int) (v *url.URL) { + return t.instrument[index].IRI } -// AppendInstrumentIRI adds to the back of instrument a url.URL type -func (t *Travel) AppendInstrumentIRI(v url.URL) { - t.instrument = append(t.instrument, &instrumentTravelIntermediateType{IRI: &v}) +// AppendInstrumentIRI adds to the back of instrument a *url.URL type +func (t *Travel) AppendInstrumentIRI(v *url.URL) { + t.instrument = append(t.instrument, &instrumentTravelIntermediateType{IRI: v}) } -// PrependInstrumentIRI adds to the front of instrument a url.URL type -func (t *Travel) PrependInstrumentIRI(v url.URL) { - t.instrument = append([]*instrumentTravelIntermediateType{&instrumentTravelIntermediateType{IRI: &v}}, t.instrument...) +// PrependInstrumentIRI adds to the front of instrument a *url.URL type +func (t *Travel) PrependInstrumentIRI(v *url.URL) { + t.instrument = append([]*instrumentTravelIntermediateType{&instrumentTravelIntermediateType{IRI: v}}, t.instrument...) } @@ -306981,14 +307010,14 @@ func (t *Travel) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Travel) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Travel) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Travel) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeTravelIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Travel) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeTravelIntermediateType{IRI: v} } @@ -307092,20 +307121,20 @@ func (t *Travel) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Travel) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Travel) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Travel) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentTravelIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Travel) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentTravelIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Travel) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentTravelIntermediateType{&attachmentTravelIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Travel) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentTravelIntermediateType{&attachmentTravelIntermediateType{IRI: v}}, t.attachment...) } @@ -307217,20 +307246,20 @@ func (t *Travel) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Travel) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Travel) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Travel) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToTravelIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Travel) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToTravelIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Travel) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToTravelIntermediateType{&attributedToTravelIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Travel) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToTravelIntermediateType{&attributedToTravelIntermediateType{IRI: v}}, t.attributedTo...) } @@ -307342,20 +307371,20 @@ func (t *Travel) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Travel) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Travel) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Travel) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceTravelIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Travel) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceTravelIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Travel) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceTravelIntermediateType{&audienceTravelIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Travel) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceTravelIntermediateType{&audienceTravelIntermediateType{IRI: v}}, t.audience...) } @@ -307467,20 +307496,20 @@ func (t *Travel) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Travel) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Travel) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Travel) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentTravelIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Travel) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentTravelIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Travel) PrependContentIRI(v url.URL) { - t.content = append([]*contentTravelIntermediateType{&contentTravelIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Travel) PrependContentIRI(v *url.URL) { + t.content = append([]*contentTravelIntermediateType{&contentTravelIntermediateType{IRI: v}}, t.content...) } @@ -307627,20 +307656,20 @@ func (t *Travel) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Travel) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Travel) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Travel) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextTravelIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Travel) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextTravelIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Travel) PrependContextIRI(v url.URL) { - t.context = append([]*contextTravelIntermediateType{&contextTravelIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Travel) PrependContextIRI(v *url.URL) { + t.context = append([]*contextTravelIntermediateType{&contextTravelIntermediateType{IRI: v}}, t.context...) } @@ -307752,20 +307781,20 @@ func (t *Travel) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Travel) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Travel) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Travel) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameTravelIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Travel) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameTravelIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Travel) PrependNameIRI(v url.URL) { - t.name = append([]*nameTravelIntermediateType{&nameTravelIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Travel) PrependNameIRI(v *url.URL) { + t.name = append([]*nameTravelIntermediateType{&nameTravelIntermediateType{IRI: v}}, t.name...) } @@ -307860,14 +307889,14 @@ func (t *Travel) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Travel) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Travel) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Travel) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeTravelIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Travel) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeTravelIntermediateType{IRI: v} } @@ -307971,20 +308000,20 @@ func (t *Travel) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Travel) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Travel) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Travel) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorTravelIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Travel) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorTravelIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Travel) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorTravelIntermediateType{&generatorTravelIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Travel) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorTravelIntermediateType{&generatorTravelIntermediateType{IRI: v}}, t.generator...) } @@ -308096,20 +308125,20 @@ func (t *Travel) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Travel) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Travel) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Travel) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconTravelIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Travel) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconTravelIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Travel) PrependIconIRI(v url.URL) { - t.icon = append([]*iconTravelIntermediateType{&iconTravelIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Travel) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconTravelIntermediateType{&iconTravelIntermediateType{IRI: v}}, t.icon...) } @@ -308151,14 +308180,14 @@ func (t *Travel) HasId() (ok bool) { } // GetId returns the value for id -func (t *Travel) GetId() (v url.URL) { - return *t.id +func (t *Travel) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Travel) SetId(v url.URL) { - t.id = &v +func (t *Travel) SetId(v *url.URL) { + t.id = v } @@ -308260,20 +308289,20 @@ func (t *Travel) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Travel) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Travel) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Travel) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageTravelIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Travel) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageTravelIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Travel) PrependImageIRI(v url.URL) { - t.image = append([]*imageTravelIntermediateType{&imageTravelIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Travel) PrependImageIRI(v *url.URL) { + t.image = append([]*imageTravelIntermediateType{&imageTravelIntermediateType{IRI: v}}, t.image...) } @@ -308385,20 +308414,20 @@ func (t *Travel) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Travel) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Travel) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Travel) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToTravelIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Travel) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToTravelIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Travel) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToTravelIntermediateType{&inReplyToTravelIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Travel) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToTravelIntermediateType{&inReplyToTravelIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -308510,20 +308539,20 @@ func (t *Travel) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Travel) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Travel) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Travel) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationTravelIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Travel) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationTravelIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Travel) PrependLocationIRI(v url.URL) { - t.location = append([]*locationTravelIntermediateType{&locationTravelIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Travel) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationTravelIntermediateType{&locationTravelIntermediateType{IRI: v}}, t.location...) } @@ -308635,20 +308664,20 @@ func (t *Travel) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Travel) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Travel) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Travel) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewTravelIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Travel) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewTravelIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Travel) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewTravelIntermediateType{&previewTravelIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Travel) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewTravelIntermediateType{&previewTravelIntermediateType{IRI: v}}, t.preview...) } @@ -308708,14 +308737,14 @@ func (t *Travel) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Travel) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Travel) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Travel) SetPublishedIRI(v url.URL) { - t.published = &publishedTravelIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Travel) SetPublishedIRI(v *url.URL) { + t.published = &publishedTravelIntermediateType{IRI: v} } @@ -308767,14 +308796,14 @@ func (t *Travel) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Travel) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Travel) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Travel) SetRepliesIRI(v url.URL) { - t.replies = &repliesTravelIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Travel) SetRepliesIRI(v *url.URL) { + t.replies = &repliesTravelIntermediateType{IRI: v} } @@ -308826,14 +308855,14 @@ func (t *Travel) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Travel) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Travel) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Travel) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeTravelIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Travel) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeTravelIntermediateType{IRI: v} } @@ -308937,20 +308966,20 @@ func (t *Travel) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Travel) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Travel) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Travel) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryTravelIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Travel) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryTravelIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Travel) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryTravelIntermediateType{&summaryTravelIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Travel) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryTravelIntermediateType{&summaryTravelIntermediateType{IRI: v}}, t.summary...) } @@ -309097,20 +309126,20 @@ func (t *Travel) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Travel) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Travel) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Travel) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagTravelIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Travel) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagTravelIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Travel) PrependTagIRI(v url.URL) { - t.tag = append([]*tagTravelIntermediateType{&tagTravelIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Travel) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagTravelIntermediateType{&tagTravelIntermediateType{IRI: v}}, t.tag...) } @@ -309202,14 +309231,14 @@ func (t *Travel) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Travel) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Travel) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Travel) SetUpdatedIRI(v url.URL) { - t.updated = &updatedTravelIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Travel) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedTravelIntermediateType{IRI: v} } @@ -309249,20 +309278,20 @@ func (t *Travel) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Travel) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Travel) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Travel) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlTravelIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Travel) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlTravelIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Travel) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlTravelIntermediateType{&urlTravelIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Travel) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlTravelIntermediateType{&urlTravelIntermediateType{anyURI: v}}, t.url...) } @@ -309406,20 +309435,20 @@ func (t *Travel) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Travel) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Travel) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Travel) AppendToIRI(v url.URL) { - t.to = append(t.to, &toTravelIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Travel) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toTravelIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Travel) PrependToIRI(v url.URL) { - t.to = append([]*toTravelIntermediateType{&toTravelIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Travel) PrependToIRI(v *url.URL) { + t.to = append([]*toTravelIntermediateType{&toTravelIntermediateType{IRI: v}}, t.to...) } @@ -309531,20 +309560,20 @@ func (t *Travel) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Travel) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Travel) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Travel) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoTravelIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Travel) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoTravelIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Travel) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoTravelIntermediateType{&btoTravelIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Travel) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoTravelIntermediateType{&btoTravelIntermediateType{IRI: v}}, t.bto...) } @@ -309656,20 +309685,20 @@ func (t *Travel) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Travel) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Travel) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Travel) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccTravelIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Travel) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccTravelIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Travel) PrependCcIRI(v url.URL) { - t.cc = append([]*ccTravelIntermediateType{&ccTravelIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Travel) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccTravelIntermediateType{&ccTravelIntermediateType{IRI: v}}, t.cc...) } @@ -309781,20 +309810,20 @@ func (t *Travel) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Travel) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Travel) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Travel) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccTravelIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Travel) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccTravelIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Travel) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccTravelIntermediateType{&bccTravelIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Travel) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccTravelIntermediateType{&bccTravelIntermediateType{IRI: v}}, t.bcc...) } @@ -309854,14 +309883,14 @@ func (t *Travel) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Travel) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Travel) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Travel) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeTravelIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Travel) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeTravelIntermediateType{IRI: v} } @@ -309913,14 +309942,14 @@ func (t *Travel) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Travel) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Travel) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Travel) SetDurationIRI(v url.URL) { - t.duration = &durationTravelIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Travel) SetDurationIRI(v *url.URL) { + t.duration = &durationTravelIntermediateType{IRI: v} } @@ -309972,14 +310001,14 @@ func (t *Travel) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Travel) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Travel) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Travel) SetSourceIRI(v url.URL) { - t.source = &sourceTravelIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Travel) SetSourceIRI(v *url.URL) { + t.source = &sourceTravelIntermediateType{IRI: v} } @@ -310031,14 +310060,14 @@ func (t *Travel) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Travel) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Travel) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Travel) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxTravelIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Travel) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxTravelIntermediateType{anyURI: v} } @@ -310090,14 +310119,14 @@ func (t *Travel) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Travel) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Travel) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Travel) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxTravelIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Travel) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxTravelIntermediateType{anyURI: v} } @@ -310167,14 +310196,14 @@ func (t *Travel) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Travel) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Travel) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Travel) SetFollowingAnyURI(v url.URL) { - t.following = &followingTravelIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Travel) SetFollowingAnyURI(v *url.URL) { + t.following = &followingTravelIntermediateType{anyURI: v} } @@ -310244,14 +310273,14 @@ func (t *Travel) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Travel) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Travel) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Travel) SetFollowersAnyURI(v url.URL) { - t.followers = &followersTravelIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Travel) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersTravelIntermediateType{anyURI: v} } @@ -310321,14 +310350,14 @@ func (t *Travel) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Travel) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Travel) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Travel) SetLikedAnyURI(v url.URL) { - t.liked = &likedTravelIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Travel) SetLikedAnyURI(v *url.URL) { + t.liked = &likedTravelIntermediateType{anyURI: v} } @@ -310398,14 +310427,14 @@ func (t *Travel) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Travel) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Travel) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Travel) SetLikesAnyURI(v url.URL) { - t.likes = &likesTravelIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Travel) SetLikesAnyURI(v *url.URL) { + t.likes = &likesTravelIntermediateType{anyURI: v} } @@ -310439,26 +310468,27 @@ func (t *Travel) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Travel) GetStreams(index int) (v url.URL) { +func (t *Travel) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Travel) AppendStreams(v url.URL) { +func (t *Travel) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Travel) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Travel) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Travel) 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] } @@ -310509,14 +310539,14 @@ func (t *Travel) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Travel) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Travel) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Travel) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameTravelIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Travel) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameTravelIntermediateType{IRI: v} } @@ -310603,14 +310633,14 @@ func (t *Travel) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Travel) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Travel) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Travel) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsTravelIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Travel) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsTravelIntermediateType{IRI: v} } @@ -310644,14 +310674,14 @@ func (t *Travel) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Travel) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Travel) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Travel) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Travel) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -310683,14 +310713,14 @@ func (t *Travel) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Travel) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Travel) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Travel) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Travel) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -310722,14 +310752,14 @@ func (t *Travel) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Travel) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Travel) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Travel) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Travel) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -310761,14 +310791,14 @@ func (t *Travel) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Travel) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Travel) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Travel) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Travel) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -310800,14 +310830,14 @@ func (t *Travel) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Travel) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Travel) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Travel) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Travel) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -310839,14 +310869,14 @@ func (t *Travel) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Travel) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Travel) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Travel) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Travel) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -311093,7 +311123,7 @@ func (t *Travel) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -311399,7 +311429,7 @@ func (t *Travel) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -311414,7 +311444,7 @@ func (t *Travel) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -311429,7 +311459,7 @@ func (t *Travel) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -311444,7 +311474,7 @@ func (t *Travel) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -311459,7 +311489,7 @@ func (t *Travel) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -311474,7 +311504,7 @@ func (t *Travel) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -312412,7 +312442,7 @@ func (t *Travel) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -312421,7 +312451,7 @@ func (t *Travel) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -312635,7 +312665,7 @@ func (t *actorTravelIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -312718,7 +312748,7 @@ func (t *targetTravelIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -312801,7 +312831,7 @@ func (t *resultTravelIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -312884,7 +312914,7 @@ func (t *originTravelIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -312967,7 +312997,7 @@ func (t *instrumentTravelIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -313021,7 +313051,7 @@ func (t *altitudeTravelIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -313104,7 +313134,7 @@ func (t *attachmentTravelIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -313187,7 +313217,7 @@ func (t *attributedToTravelIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -313270,7 +313300,7 @@ func (t *audienceTravelIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -313338,7 +313368,7 @@ func (t *contentTravelIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -313421,7 +313451,7 @@ func (t *contextTravelIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -313489,7 +313519,7 @@ func (t *nameTravelIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -313543,7 +313573,7 @@ func (t *endTimeTravelIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -313626,7 +313656,7 @@ func (t *generatorTravelIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -313709,7 +313739,7 @@ func (t *iconTravelIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -313792,7 +313822,7 @@ func (t *imageTravelIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -313875,7 +313905,7 @@ func (t *inReplyToTravelIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -313958,7 +313988,7 @@ func (t *locationTravelIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -314041,7 +314071,7 @@ func (t *previewTravelIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -314095,7 +314125,7 @@ func (t *publishedTravelIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -314163,7 +314193,7 @@ func (t *repliesTravelIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -314217,7 +314247,7 @@ func (t *startTimeTravelIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -314285,7 +314315,7 @@ func (t *summaryTravelIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -314368,7 +314398,7 @@ func (t *tagTravelIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -314422,7 +314452,7 @@ func (t *updatedTravelIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -314486,7 +314516,7 @@ func (t *urlTravelIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlTravelIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -314573,7 +314603,7 @@ func (t *toTravelIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -314656,7 +314686,7 @@ func (t *btoTravelIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -314739,7 +314769,7 @@ func (t *ccTravelIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -314822,7 +314852,7 @@ func (t *bccTravelIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -314876,7 +314906,7 @@ func (t *mediaTypeTravelIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -314930,7 +314960,7 @@ func (t *durationTravelIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -314998,7 +315028,7 @@ func (t *sourceTravelIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -315066,7 +315096,7 @@ func (t *inboxTravelIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -315134,7 +315164,7 @@ func (t *outboxTravelIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -315217,7 +315247,7 @@ func (t *followingTravelIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -315300,7 +315330,7 @@ func (t *followersTravelIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -315383,7 +315413,7 @@ func (t *likedTravelIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -315466,7 +315496,7 @@ func (t *likesTravelIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -315520,7 +315550,7 @@ func (t *preferredUsernameTravelIntermediateType) Serialize() (i interface{}, er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -315588,7 +315618,7 @@ func (t *endpointsTravelIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -315690,7 +315720,7 @@ type Announce struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesAnnounceIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameAnnounceIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -315788,20 +315818,20 @@ func (t *Announce) IsActorIRI(index int) (ok bool) { } // GetActorIRI returns the value safely if IsActorIRI returned true for the specified index -func (t *Announce) GetActorIRI(index int) (v url.URL) { - return *t.actor[index].IRI +func (t *Announce) GetActorIRI(index int) (v *url.URL) { + return t.actor[index].IRI } -// AppendActorIRI adds to the back of actor a url.URL type -func (t *Announce) AppendActorIRI(v url.URL) { - t.actor = append(t.actor, &actorAnnounceIntermediateType{IRI: &v}) +// AppendActorIRI adds to the back of actor a *url.URL type +func (t *Announce) AppendActorIRI(v *url.URL) { + t.actor = append(t.actor, &actorAnnounceIntermediateType{IRI: v}) } -// PrependActorIRI adds to the front of actor a url.URL type -func (t *Announce) PrependActorIRI(v url.URL) { - t.actor = append([]*actorAnnounceIntermediateType{&actorAnnounceIntermediateType{IRI: &v}}, t.actor...) +// PrependActorIRI adds to the front of actor a *url.URL type +func (t *Announce) PrependActorIRI(v *url.URL) { + t.actor = append([]*actorAnnounceIntermediateType{&actorAnnounceIntermediateType{IRI: v}}, t.actor...) } @@ -315881,20 +315911,20 @@ func (t *Announce) IsObjectIRI(index int) (ok bool) { } // GetObjectIRI returns the value safely if IsObjectIRI returned true for the specified index -func (t *Announce) GetObjectIRI(index int) (v url.URL) { - return *t.object[index].IRI +func (t *Announce) GetObjectIRI(index int) (v *url.URL) { + return t.object[index].IRI } -// AppendObjectIRI adds to the back of object a url.URL type -func (t *Announce) AppendObjectIRI(v url.URL) { - t.object = append(t.object, &objectAnnounceIntermediateType{IRI: &v}) +// AppendObjectIRI adds to the back of object a *url.URL type +func (t *Announce) AppendObjectIRI(v *url.URL) { + t.object = append(t.object, &objectAnnounceIntermediateType{IRI: v}) } -// PrependObjectIRI adds to the front of object a url.URL type -func (t *Announce) PrependObjectIRI(v url.URL) { - t.object = append([]*objectAnnounceIntermediateType{&objectAnnounceIntermediateType{IRI: &v}}, t.object...) +// PrependObjectIRI adds to the front of object a *url.URL type +func (t *Announce) PrependObjectIRI(v *url.URL) { + t.object = append([]*objectAnnounceIntermediateType{&objectAnnounceIntermediateType{IRI: v}}, t.object...) } @@ -316006,20 +316036,20 @@ func (t *Announce) IsTargetIRI(index int) (ok bool) { } // GetTargetIRI returns the value safely if IsTargetIRI returned true for the specified index -func (t *Announce) GetTargetIRI(index int) (v url.URL) { - return *t.target[index].IRI +func (t *Announce) GetTargetIRI(index int) (v *url.URL) { + return t.target[index].IRI } -// AppendTargetIRI adds to the back of target a url.URL type -func (t *Announce) AppendTargetIRI(v url.URL) { - t.target = append(t.target, &targetAnnounceIntermediateType{IRI: &v}) +// AppendTargetIRI adds to the back of target a *url.URL type +func (t *Announce) AppendTargetIRI(v *url.URL) { + t.target = append(t.target, &targetAnnounceIntermediateType{IRI: v}) } -// PrependTargetIRI adds to the front of target a url.URL type -func (t *Announce) PrependTargetIRI(v url.URL) { - t.target = append([]*targetAnnounceIntermediateType{&targetAnnounceIntermediateType{IRI: &v}}, t.target...) +// PrependTargetIRI adds to the front of target a *url.URL type +func (t *Announce) PrependTargetIRI(v *url.URL) { + t.target = append([]*targetAnnounceIntermediateType{&targetAnnounceIntermediateType{IRI: v}}, t.target...) } @@ -316131,20 +316161,20 @@ func (t *Announce) IsResultIRI(index int) (ok bool) { } // GetResultIRI returns the value safely if IsResultIRI returned true for the specified index -func (t *Announce) GetResultIRI(index int) (v url.URL) { - return *t.result[index].IRI +func (t *Announce) GetResultIRI(index int) (v *url.URL) { + return t.result[index].IRI } -// AppendResultIRI adds to the back of result a url.URL type -func (t *Announce) AppendResultIRI(v url.URL) { - t.result = append(t.result, &resultAnnounceIntermediateType{IRI: &v}) +// AppendResultIRI adds to the back of result a *url.URL type +func (t *Announce) AppendResultIRI(v *url.URL) { + t.result = append(t.result, &resultAnnounceIntermediateType{IRI: v}) } -// PrependResultIRI adds to the front of result a url.URL type -func (t *Announce) PrependResultIRI(v url.URL) { - t.result = append([]*resultAnnounceIntermediateType{&resultAnnounceIntermediateType{IRI: &v}}, t.result...) +// PrependResultIRI adds to the front of result a *url.URL type +func (t *Announce) PrependResultIRI(v *url.URL) { + t.result = append([]*resultAnnounceIntermediateType{&resultAnnounceIntermediateType{IRI: v}}, t.result...) } @@ -316256,20 +316286,20 @@ func (t *Announce) IsOriginIRI(index int) (ok bool) { } // GetOriginIRI returns the value safely if IsOriginIRI returned true for the specified index -func (t *Announce) GetOriginIRI(index int) (v url.URL) { - return *t.origin[index].IRI +func (t *Announce) GetOriginIRI(index int) (v *url.URL) { + return t.origin[index].IRI } -// AppendOriginIRI adds to the back of origin a url.URL type -func (t *Announce) AppendOriginIRI(v url.URL) { - t.origin = append(t.origin, &originAnnounceIntermediateType{IRI: &v}) +// AppendOriginIRI adds to the back of origin a *url.URL type +func (t *Announce) AppendOriginIRI(v *url.URL) { + t.origin = append(t.origin, &originAnnounceIntermediateType{IRI: v}) } -// PrependOriginIRI adds to the front of origin a url.URL type -func (t *Announce) PrependOriginIRI(v url.URL) { - t.origin = append([]*originAnnounceIntermediateType{&originAnnounceIntermediateType{IRI: &v}}, t.origin...) +// PrependOriginIRI adds to the front of origin a *url.URL type +func (t *Announce) PrependOriginIRI(v *url.URL) { + t.origin = append([]*originAnnounceIntermediateType{&originAnnounceIntermediateType{IRI: v}}, t.origin...) } @@ -316381,20 +316411,20 @@ func (t *Announce) IsInstrumentIRI(index int) (ok bool) { } // GetInstrumentIRI returns the value safely if IsInstrumentIRI returned true for the specified index -func (t *Announce) GetInstrumentIRI(index int) (v url.URL) { - return *t.instrument[index].IRI +func (t *Announce) GetInstrumentIRI(index int) (v *url.URL) { + return t.instrument[index].IRI } -// AppendInstrumentIRI adds to the back of instrument a url.URL type -func (t *Announce) AppendInstrumentIRI(v url.URL) { - t.instrument = append(t.instrument, &instrumentAnnounceIntermediateType{IRI: &v}) +// AppendInstrumentIRI adds to the back of instrument a *url.URL type +func (t *Announce) AppendInstrumentIRI(v *url.URL) { + t.instrument = append(t.instrument, &instrumentAnnounceIntermediateType{IRI: v}) } -// PrependInstrumentIRI adds to the front of instrument a url.URL type -func (t *Announce) PrependInstrumentIRI(v url.URL) { - t.instrument = append([]*instrumentAnnounceIntermediateType{&instrumentAnnounceIntermediateType{IRI: &v}}, t.instrument...) +// PrependInstrumentIRI adds to the front of instrument a *url.URL type +func (t *Announce) PrependInstrumentIRI(v *url.URL) { + t.instrument = append([]*instrumentAnnounceIntermediateType{&instrumentAnnounceIntermediateType{IRI: v}}, t.instrument...) } @@ -316454,14 +316484,14 @@ func (t *Announce) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Announce) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Announce) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Announce) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeAnnounceIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Announce) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeAnnounceIntermediateType{IRI: v} } @@ -316565,20 +316595,20 @@ func (t *Announce) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Announce) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Announce) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Announce) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentAnnounceIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Announce) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentAnnounceIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Announce) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentAnnounceIntermediateType{&attachmentAnnounceIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Announce) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentAnnounceIntermediateType{&attachmentAnnounceIntermediateType{IRI: v}}, t.attachment...) } @@ -316690,20 +316720,20 @@ func (t *Announce) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Announce) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Announce) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Announce) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToAnnounceIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Announce) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToAnnounceIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Announce) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToAnnounceIntermediateType{&attributedToAnnounceIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Announce) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToAnnounceIntermediateType{&attributedToAnnounceIntermediateType{IRI: v}}, t.attributedTo...) } @@ -316815,20 +316845,20 @@ func (t *Announce) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Announce) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Announce) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Announce) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceAnnounceIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Announce) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceAnnounceIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Announce) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceAnnounceIntermediateType{&audienceAnnounceIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Announce) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceAnnounceIntermediateType{&audienceAnnounceIntermediateType{IRI: v}}, t.audience...) } @@ -316940,20 +316970,20 @@ func (t *Announce) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Announce) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Announce) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Announce) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentAnnounceIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Announce) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentAnnounceIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Announce) PrependContentIRI(v url.URL) { - t.content = append([]*contentAnnounceIntermediateType{&contentAnnounceIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Announce) PrependContentIRI(v *url.URL) { + t.content = append([]*contentAnnounceIntermediateType{&contentAnnounceIntermediateType{IRI: v}}, t.content...) } @@ -317100,20 +317130,20 @@ func (t *Announce) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Announce) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Announce) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Announce) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextAnnounceIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Announce) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextAnnounceIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Announce) PrependContextIRI(v url.URL) { - t.context = append([]*contextAnnounceIntermediateType{&contextAnnounceIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Announce) PrependContextIRI(v *url.URL) { + t.context = append([]*contextAnnounceIntermediateType{&contextAnnounceIntermediateType{IRI: v}}, t.context...) } @@ -317225,20 +317255,20 @@ func (t *Announce) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Announce) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Announce) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Announce) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameAnnounceIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Announce) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameAnnounceIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Announce) PrependNameIRI(v url.URL) { - t.name = append([]*nameAnnounceIntermediateType{&nameAnnounceIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Announce) PrependNameIRI(v *url.URL) { + t.name = append([]*nameAnnounceIntermediateType{&nameAnnounceIntermediateType{IRI: v}}, t.name...) } @@ -317333,14 +317363,14 @@ func (t *Announce) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Announce) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Announce) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Announce) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeAnnounceIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Announce) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeAnnounceIntermediateType{IRI: v} } @@ -317444,20 +317474,20 @@ func (t *Announce) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Announce) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Announce) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Announce) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorAnnounceIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Announce) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorAnnounceIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Announce) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorAnnounceIntermediateType{&generatorAnnounceIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Announce) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorAnnounceIntermediateType{&generatorAnnounceIntermediateType{IRI: v}}, t.generator...) } @@ -317569,20 +317599,20 @@ func (t *Announce) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Announce) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Announce) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Announce) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconAnnounceIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Announce) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconAnnounceIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Announce) PrependIconIRI(v url.URL) { - t.icon = append([]*iconAnnounceIntermediateType{&iconAnnounceIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Announce) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconAnnounceIntermediateType{&iconAnnounceIntermediateType{IRI: v}}, t.icon...) } @@ -317624,14 +317654,14 @@ func (t *Announce) HasId() (ok bool) { } // GetId returns the value for id -func (t *Announce) GetId() (v url.URL) { - return *t.id +func (t *Announce) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Announce) SetId(v url.URL) { - t.id = &v +func (t *Announce) SetId(v *url.URL) { + t.id = v } @@ -317733,20 +317763,20 @@ func (t *Announce) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Announce) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Announce) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Announce) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageAnnounceIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Announce) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageAnnounceIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Announce) PrependImageIRI(v url.URL) { - t.image = append([]*imageAnnounceIntermediateType{&imageAnnounceIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Announce) PrependImageIRI(v *url.URL) { + t.image = append([]*imageAnnounceIntermediateType{&imageAnnounceIntermediateType{IRI: v}}, t.image...) } @@ -317858,20 +317888,20 @@ func (t *Announce) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Announce) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Announce) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Announce) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToAnnounceIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Announce) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToAnnounceIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Announce) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToAnnounceIntermediateType{&inReplyToAnnounceIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Announce) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToAnnounceIntermediateType{&inReplyToAnnounceIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -317983,20 +318013,20 @@ func (t *Announce) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Announce) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Announce) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Announce) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationAnnounceIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Announce) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationAnnounceIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Announce) PrependLocationIRI(v url.URL) { - t.location = append([]*locationAnnounceIntermediateType{&locationAnnounceIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Announce) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationAnnounceIntermediateType{&locationAnnounceIntermediateType{IRI: v}}, t.location...) } @@ -318108,20 +318138,20 @@ func (t *Announce) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Announce) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Announce) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Announce) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewAnnounceIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Announce) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewAnnounceIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Announce) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewAnnounceIntermediateType{&previewAnnounceIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Announce) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewAnnounceIntermediateType{&previewAnnounceIntermediateType{IRI: v}}, t.preview...) } @@ -318181,14 +318211,14 @@ func (t *Announce) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Announce) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Announce) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Announce) SetPublishedIRI(v url.URL) { - t.published = &publishedAnnounceIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Announce) SetPublishedIRI(v *url.URL) { + t.published = &publishedAnnounceIntermediateType{IRI: v} } @@ -318240,14 +318270,14 @@ func (t *Announce) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Announce) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Announce) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Announce) SetRepliesIRI(v url.URL) { - t.replies = &repliesAnnounceIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Announce) SetRepliesIRI(v *url.URL) { + t.replies = &repliesAnnounceIntermediateType{IRI: v} } @@ -318299,14 +318329,14 @@ func (t *Announce) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Announce) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Announce) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Announce) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeAnnounceIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Announce) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeAnnounceIntermediateType{IRI: v} } @@ -318410,20 +318440,20 @@ func (t *Announce) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Announce) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Announce) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Announce) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryAnnounceIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Announce) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryAnnounceIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Announce) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryAnnounceIntermediateType{&summaryAnnounceIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Announce) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryAnnounceIntermediateType{&summaryAnnounceIntermediateType{IRI: v}}, t.summary...) } @@ -318570,20 +318600,20 @@ func (t *Announce) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Announce) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Announce) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Announce) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagAnnounceIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Announce) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagAnnounceIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Announce) PrependTagIRI(v url.URL) { - t.tag = append([]*tagAnnounceIntermediateType{&tagAnnounceIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Announce) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagAnnounceIntermediateType{&tagAnnounceIntermediateType{IRI: v}}, t.tag...) } @@ -318675,14 +318705,14 @@ func (t *Announce) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Announce) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Announce) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Announce) SetUpdatedIRI(v url.URL) { - t.updated = &updatedAnnounceIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Announce) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedAnnounceIntermediateType{IRI: v} } @@ -318722,20 +318752,20 @@ func (t *Announce) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Announce) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Announce) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Announce) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlAnnounceIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Announce) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlAnnounceIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Announce) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlAnnounceIntermediateType{&urlAnnounceIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Announce) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlAnnounceIntermediateType{&urlAnnounceIntermediateType{anyURI: v}}, t.url...) } @@ -318879,20 +318909,20 @@ func (t *Announce) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Announce) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Announce) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Announce) AppendToIRI(v url.URL) { - t.to = append(t.to, &toAnnounceIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Announce) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toAnnounceIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Announce) PrependToIRI(v url.URL) { - t.to = append([]*toAnnounceIntermediateType{&toAnnounceIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Announce) PrependToIRI(v *url.URL) { + t.to = append([]*toAnnounceIntermediateType{&toAnnounceIntermediateType{IRI: v}}, t.to...) } @@ -319004,20 +319034,20 @@ func (t *Announce) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Announce) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Announce) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Announce) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoAnnounceIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Announce) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoAnnounceIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Announce) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoAnnounceIntermediateType{&btoAnnounceIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Announce) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoAnnounceIntermediateType{&btoAnnounceIntermediateType{IRI: v}}, t.bto...) } @@ -319129,20 +319159,20 @@ func (t *Announce) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Announce) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Announce) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Announce) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccAnnounceIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Announce) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccAnnounceIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Announce) PrependCcIRI(v url.URL) { - t.cc = append([]*ccAnnounceIntermediateType{&ccAnnounceIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Announce) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccAnnounceIntermediateType{&ccAnnounceIntermediateType{IRI: v}}, t.cc...) } @@ -319254,20 +319284,20 @@ func (t *Announce) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Announce) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Announce) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Announce) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccAnnounceIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Announce) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccAnnounceIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Announce) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccAnnounceIntermediateType{&bccAnnounceIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Announce) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccAnnounceIntermediateType{&bccAnnounceIntermediateType{IRI: v}}, t.bcc...) } @@ -319327,14 +319357,14 @@ func (t *Announce) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Announce) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Announce) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Announce) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeAnnounceIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Announce) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeAnnounceIntermediateType{IRI: v} } @@ -319386,14 +319416,14 @@ func (t *Announce) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Announce) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Announce) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Announce) SetDurationIRI(v url.URL) { - t.duration = &durationAnnounceIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Announce) SetDurationIRI(v *url.URL) { + t.duration = &durationAnnounceIntermediateType{IRI: v} } @@ -319445,14 +319475,14 @@ func (t *Announce) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Announce) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Announce) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Announce) SetSourceIRI(v url.URL) { - t.source = &sourceAnnounceIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Announce) SetSourceIRI(v *url.URL) { + t.source = &sourceAnnounceIntermediateType{IRI: v} } @@ -319504,14 +319534,14 @@ func (t *Announce) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Announce) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Announce) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Announce) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxAnnounceIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Announce) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxAnnounceIntermediateType{anyURI: v} } @@ -319563,14 +319593,14 @@ func (t *Announce) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Announce) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Announce) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Announce) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxAnnounceIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Announce) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxAnnounceIntermediateType{anyURI: v} } @@ -319640,14 +319670,14 @@ func (t *Announce) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Announce) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Announce) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Announce) SetFollowingAnyURI(v url.URL) { - t.following = &followingAnnounceIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Announce) SetFollowingAnyURI(v *url.URL) { + t.following = &followingAnnounceIntermediateType{anyURI: v} } @@ -319717,14 +319747,14 @@ func (t *Announce) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Announce) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Announce) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Announce) SetFollowersAnyURI(v url.URL) { - t.followers = &followersAnnounceIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Announce) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersAnnounceIntermediateType{anyURI: v} } @@ -319794,14 +319824,14 @@ func (t *Announce) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Announce) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Announce) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Announce) SetLikedAnyURI(v url.URL) { - t.liked = &likedAnnounceIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Announce) SetLikedAnyURI(v *url.URL) { + t.liked = &likedAnnounceIntermediateType{anyURI: v} } @@ -319871,14 +319901,14 @@ func (t *Announce) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Announce) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Announce) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Announce) SetLikesAnyURI(v url.URL) { - t.likes = &likesAnnounceIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Announce) SetLikesAnyURI(v *url.URL) { + t.likes = &likesAnnounceIntermediateType{anyURI: v} } @@ -319912,26 +319942,27 @@ func (t *Announce) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Announce) GetStreams(index int) (v url.URL) { +func (t *Announce) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Announce) AppendStreams(v url.URL) { +func (t *Announce) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Announce) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Announce) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Announce) 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] } @@ -319982,14 +320013,14 @@ func (t *Announce) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Announce) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Announce) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Announce) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameAnnounceIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Announce) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameAnnounceIntermediateType{IRI: v} } @@ -320076,14 +320107,14 @@ func (t *Announce) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Announce) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Announce) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Announce) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsAnnounceIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Announce) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsAnnounceIntermediateType{IRI: v} } @@ -320117,14 +320148,14 @@ func (t *Announce) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Announce) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Announce) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Announce) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Announce) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -320156,14 +320187,14 @@ func (t *Announce) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Announce) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Announce) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Announce) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Announce) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -320195,14 +320226,14 @@ func (t *Announce) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Announce) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Announce) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Announce) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Announce) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -320234,14 +320265,14 @@ func (t *Announce) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Announce) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Announce) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Announce) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Announce) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -320273,14 +320304,14 @@ func (t *Announce) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Announce) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Announce) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Announce) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Announce) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -320312,14 +320343,14 @@ func (t *Announce) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Announce) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Announce) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Announce) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Announce) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -320577,7 +320608,7 @@ func (t *Announce) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -320883,7 +320914,7 @@ func (t *Announce) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -320898,7 +320929,7 @@ func (t *Announce) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -320913,7 +320944,7 @@ func (t *Announce) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -320928,7 +320959,7 @@ func (t *Announce) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -320943,7 +320974,7 @@ func (t *Announce) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -320958,7 +320989,7 @@ func (t *Announce) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -321924,7 +321955,7 @@ func (t *Announce) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -321933,7 +321964,7 @@ func (t *Announce) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -322147,7 +322178,7 @@ func (t *actorAnnounceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -322215,7 +322246,7 @@ func (t *objectAnnounceIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -322298,7 +322329,7 @@ func (t *targetAnnounceIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -322381,7 +322412,7 @@ func (t *resultAnnounceIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -322464,7 +322495,7 @@ func (t *originAnnounceIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -322547,7 +322578,7 @@ func (t *instrumentAnnounceIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -322601,7 +322632,7 @@ func (t *altitudeAnnounceIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -322684,7 +322715,7 @@ func (t *attachmentAnnounceIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -322767,7 +322798,7 @@ func (t *attributedToAnnounceIntermediateType) Serialize() (i interface{}, err e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -322850,7 +322881,7 @@ func (t *audienceAnnounceIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -322918,7 +322949,7 @@ func (t *contentAnnounceIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -323001,7 +323032,7 @@ func (t *contextAnnounceIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -323069,7 +323100,7 @@ func (t *nameAnnounceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -323123,7 +323154,7 @@ func (t *endTimeAnnounceIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -323206,7 +323237,7 @@ func (t *generatorAnnounceIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -323289,7 +323320,7 @@ func (t *iconAnnounceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -323372,7 +323403,7 @@ func (t *imageAnnounceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -323455,7 +323486,7 @@ func (t *inReplyToAnnounceIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -323538,7 +323569,7 @@ func (t *locationAnnounceIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -323621,7 +323652,7 @@ func (t *previewAnnounceIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -323675,7 +323706,7 @@ func (t *publishedAnnounceIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -323743,7 +323774,7 @@ func (t *repliesAnnounceIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -323797,7 +323828,7 @@ func (t *startTimeAnnounceIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -323865,7 +323896,7 @@ func (t *summaryAnnounceIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -323948,7 +323979,7 @@ func (t *tagAnnounceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -324002,7 +324033,7 @@ func (t *updatedAnnounceIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -324066,7 +324097,7 @@ func (t *urlAnnounceIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlAnnounceIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -324153,7 +324184,7 @@ func (t *toAnnounceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -324236,7 +324267,7 @@ func (t *btoAnnounceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -324319,7 +324350,7 @@ func (t *ccAnnounceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -324402,7 +324433,7 @@ func (t *bccAnnounceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -324456,7 +324487,7 @@ func (t *mediaTypeAnnounceIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -324510,7 +324541,7 @@ func (t *durationAnnounceIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -324578,7 +324609,7 @@ func (t *sourceAnnounceIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -324646,7 +324677,7 @@ func (t *inboxAnnounceIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -324714,7 +324745,7 @@ func (t *outboxAnnounceIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -324797,7 +324828,7 @@ func (t *followingAnnounceIntermediateType) Serialize() (i interface{}, err erro return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -324880,7 +324911,7 @@ func (t *followersAnnounceIntermediateType) Serialize() (i interface{}, err erro return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -324963,7 +324994,7 @@ func (t *likedAnnounceIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -325046,7 +325077,7 @@ func (t *likesAnnounceIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -325100,7 +325131,7 @@ func (t *preferredUsernameAnnounceIntermediateType) Serialize() (i interface{}, return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -325168,7 +325199,7 @@ func (t *endpointsAnnounceIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -325270,7 +325301,7 @@ type Block struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesBlockIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameBlockIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -325368,20 +325399,20 @@ func (t *Block) IsActorIRI(index int) (ok bool) { } // GetActorIRI returns the value safely if IsActorIRI returned true for the specified index -func (t *Block) GetActorIRI(index int) (v url.URL) { - return *t.actor[index].IRI +func (t *Block) GetActorIRI(index int) (v *url.URL) { + return t.actor[index].IRI } -// AppendActorIRI adds to the back of actor a url.URL type -func (t *Block) AppendActorIRI(v url.URL) { - t.actor = append(t.actor, &actorBlockIntermediateType{IRI: &v}) +// AppendActorIRI adds to the back of actor a *url.URL type +func (t *Block) AppendActorIRI(v *url.URL) { + t.actor = append(t.actor, &actorBlockIntermediateType{IRI: v}) } -// PrependActorIRI adds to the front of actor a url.URL type -func (t *Block) PrependActorIRI(v url.URL) { - t.actor = append([]*actorBlockIntermediateType{&actorBlockIntermediateType{IRI: &v}}, t.actor...) +// PrependActorIRI adds to the front of actor a *url.URL type +func (t *Block) PrependActorIRI(v *url.URL) { + t.actor = append([]*actorBlockIntermediateType{&actorBlockIntermediateType{IRI: v}}, t.actor...) } @@ -325461,20 +325492,20 @@ func (t *Block) IsObjectIRI(index int) (ok bool) { } // GetObjectIRI returns the value safely if IsObjectIRI returned true for the specified index -func (t *Block) GetObjectIRI(index int) (v url.URL) { - return *t.object[index].IRI +func (t *Block) GetObjectIRI(index int) (v *url.URL) { + return t.object[index].IRI } -// AppendObjectIRI adds to the back of object a url.URL type -func (t *Block) AppendObjectIRI(v url.URL) { - t.object = append(t.object, &objectBlockIntermediateType{IRI: &v}) +// AppendObjectIRI adds to the back of object a *url.URL type +func (t *Block) AppendObjectIRI(v *url.URL) { + t.object = append(t.object, &objectBlockIntermediateType{IRI: v}) } -// PrependObjectIRI adds to the front of object a url.URL type -func (t *Block) PrependObjectIRI(v url.URL) { - t.object = append([]*objectBlockIntermediateType{&objectBlockIntermediateType{IRI: &v}}, t.object...) +// PrependObjectIRI adds to the front of object a *url.URL type +func (t *Block) PrependObjectIRI(v *url.URL) { + t.object = append([]*objectBlockIntermediateType{&objectBlockIntermediateType{IRI: v}}, t.object...) } @@ -325586,20 +325617,20 @@ func (t *Block) IsTargetIRI(index int) (ok bool) { } // GetTargetIRI returns the value safely if IsTargetIRI returned true for the specified index -func (t *Block) GetTargetIRI(index int) (v url.URL) { - return *t.target[index].IRI +func (t *Block) GetTargetIRI(index int) (v *url.URL) { + return t.target[index].IRI } -// AppendTargetIRI adds to the back of target a url.URL type -func (t *Block) AppendTargetIRI(v url.URL) { - t.target = append(t.target, &targetBlockIntermediateType{IRI: &v}) +// AppendTargetIRI adds to the back of target a *url.URL type +func (t *Block) AppendTargetIRI(v *url.URL) { + t.target = append(t.target, &targetBlockIntermediateType{IRI: v}) } -// PrependTargetIRI adds to the front of target a url.URL type -func (t *Block) PrependTargetIRI(v url.URL) { - t.target = append([]*targetBlockIntermediateType{&targetBlockIntermediateType{IRI: &v}}, t.target...) +// PrependTargetIRI adds to the front of target a *url.URL type +func (t *Block) PrependTargetIRI(v *url.URL) { + t.target = append([]*targetBlockIntermediateType{&targetBlockIntermediateType{IRI: v}}, t.target...) } @@ -325711,20 +325742,20 @@ func (t *Block) IsResultIRI(index int) (ok bool) { } // GetResultIRI returns the value safely if IsResultIRI returned true for the specified index -func (t *Block) GetResultIRI(index int) (v url.URL) { - return *t.result[index].IRI +func (t *Block) GetResultIRI(index int) (v *url.URL) { + return t.result[index].IRI } -// AppendResultIRI adds to the back of result a url.URL type -func (t *Block) AppendResultIRI(v url.URL) { - t.result = append(t.result, &resultBlockIntermediateType{IRI: &v}) +// AppendResultIRI adds to the back of result a *url.URL type +func (t *Block) AppendResultIRI(v *url.URL) { + t.result = append(t.result, &resultBlockIntermediateType{IRI: v}) } -// PrependResultIRI adds to the front of result a url.URL type -func (t *Block) PrependResultIRI(v url.URL) { - t.result = append([]*resultBlockIntermediateType{&resultBlockIntermediateType{IRI: &v}}, t.result...) +// PrependResultIRI adds to the front of result a *url.URL type +func (t *Block) PrependResultIRI(v *url.URL) { + t.result = append([]*resultBlockIntermediateType{&resultBlockIntermediateType{IRI: v}}, t.result...) } @@ -325836,20 +325867,20 @@ func (t *Block) IsOriginIRI(index int) (ok bool) { } // GetOriginIRI returns the value safely if IsOriginIRI returned true for the specified index -func (t *Block) GetOriginIRI(index int) (v url.URL) { - return *t.origin[index].IRI +func (t *Block) GetOriginIRI(index int) (v *url.URL) { + return t.origin[index].IRI } -// AppendOriginIRI adds to the back of origin a url.URL type -func (t *Block) AppendOriginIRI(v url.URL) { - t.origin = append(t.origin, &originBlockIntermediateType{IRI: &v}) +// AppendOriginIRI adds to the back of origin a *url.URL type +func (t *Block) AppendOriginIRI(v *url.URL) { + t.origin = append(t.origin, &originBlockIntermediateType{IRI: v}) } -// PrependOriginIRI adds to the front of origin a url.URL type -func (t *Block) PrependOriginIRI(v url.URL) { - t.origin = append([]*originBlockIntermediateType{&originBlockIntermediateType{IRI: &v}}, t.origin...) +// PrependOriginIRI adds to the front of origin a *url.URL type +func (t *Block) PrependOriginIRI(v *url.URL) { + t.origin = append([]*originBlockIntermediateType{&originBlockIntermediateType{IRI: v}}, t.origin...) } @@ -325961,20 +325992,20 @@ func (t *Block) IsInstrumentIRI(index int) (ok bool) { } // GetInstrumentIRI returns the value safely if IsInstrumentIRI returned true for the specified index -func (t *Block) GetInstrumentIRI(index int) (v url.URL) { - return *t.instrument[index].IRI +func (t *Block) GetInstrumentIRI(index int) (v *url.URL) { + return t.instrument[index].IRI } -// AppendInstrumentIRI adds to the back of instrument a url.URL type -func (t *Block) AppendInstrumentIRI(v url.URL) { - t.instrument = append(t.instrument, &instrumentBlockIntermediateType{IRI: &v}) +// AppendInstrumentIRI adds to the back of instrument a *url.URL type +func (t *Block) AppendInstrumentIRI(v *url.URL) { + t.instrument = append(t.instrument, &instrumentBlockIntermediateType{IRI: v}) } -// PrependInstrumentIRI adds to the front of instrument a url.URL type -func (t *Block) PrependInstrumentIRI(v url.URL) { - t.instrument = append([]*instrumentBlockIntermediateType{&instrumentBlockIntermediateType{IRI: &v}}, t.instrument...) +// PrependInstrumentIRI adds to the front of instrument a *url.URL type +func (t *Block) PrependInstrumentIRI(v *url.URL) { + t.instrument = append([]*instrumentBlockIntermediateType{&instrumentBlockIntermediateType{IRI: v}}, t.instrument...) } @@ -326034,14 +326065,14 @@ func (t *Block) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Block) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Block) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Block) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeBlockIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Block) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeBlockIntermediateType{IRI: v} } @@ -326145,20 +326176,20 @@ func (t *Block) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Block) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Block) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Block) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentBlockIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Block) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentBlockIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Block) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentBlockIntermediateType{&attachmentBlockIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Block) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentBlockIntermediateType{&attachmentBlockIntermediateType{IRI: v}}, t.attachment...) } @@ -326270,20 +326301,20 @@ func (t *Block) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Block) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Block) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Block) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToBlockIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Block) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToBlockIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Block) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToBlockIntermediateType{&attributedToBlockIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Block) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToBlockIntermediateType{&attributedToBlockIntermediateType{IRI: v}}, t.attributedTo...) } @@ -326395,20 +326426,20 @@ func (t *Block) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Block) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Block) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Block) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceBlockIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Block) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceBlockIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Block) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceBlockIntermediateType{&audienceBlockIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Block) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceBlockIntermediateType{&audienceBlockIntermediateType{IRI: v}}, t.audience...) } @@ -326520,20 +326551,20 @@ func (t *Block) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Block) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Block) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Block) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentBlockIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Block) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentBlockIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Block) PrependContentIRI(v url.URL) { - t.content = append([]*contentBlockIntermediateType{&contentBlockIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Block) PrependContentIRI(v *url.URL) { + t.content = append([]*contentBlockIntermediateType{&contentBlockIntermediateType{IRI: v}}, t.content...) } @@ -326680,20 +326711,20 @@ func (t *Block) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Block) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Block) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Block) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextBlockIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Block) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextBlockIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Block) PrependContextIRI(v url.URL) { - t.context = append([]*contextBlockIntermediateType{&contextBlockIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Block) PrependContextIRI(v *url.URL) { + t.context = append([]*contextBlockIntermediateType{&contextBlockIntermediateType{IRI: v}}, t.context...) } @@ -326805,20 +326836,20 @@ func (t *Block) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Block) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Block) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Block) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameBlockIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Block) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameBlockIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Block) PrependNameIRI(v url.URL) { - t.name = append([]*nameBlockIntermediateType{&nameBlockIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Block) PrependNameIRI(v *url.URL) { + t.name = append([]*nameBlockIntermediateType{&nameBlockIntermediateType{IRI: v}}, t.name...) } @@ -326913,14 +326944,14 @@ func (t *Block) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Block) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Block) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Block) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeBlockIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Block) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeBlockIntermediateType{IRI: v} } @@ -327024,20 +327055,20 @@ func (t *Block) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Block) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Block) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Block) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorBlockIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Block) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorBlockIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Block) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorBlockIntermediateType{&generatorBlockIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Block) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorBlockIntermediateType{&generatorBlockIntermediateType{IRI: v}}, t.generator...) } @@ -327149,20 +327180,20 @@ func (t *Block) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Block) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Block) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Block) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconBlockIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Block) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconBlockIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Block) PrependIconIRI(v url.URL) { - t.icon = append([]*iconBlockIntermediateType{&iconBlockIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Block) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconBlockIntermediateType{&iconBlockIntermediateType{IRI: v}}, t.icon...) } @@ -327204,14 +327235,14 @@ func (t *Block) HasId() (ok bool) { } // GetId returns the value for id -func (t *Block) GetId() (v url.URL) { - return *t.id +func (t *Block) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Block) SetId(v url.URL) { - t.id = &v +func (t *Block) SetId(v *url.URL) { + t.id = v } @@ -327313,20 +327344,20 @@ func (t *Block) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Block) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Block) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Block) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageBlockIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Block) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageBlockIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Block) PrependImageIRI(v url.URL) { - t.image = append([]*imageBlockIntermediateType{&imageBlockIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Block) PrependImageIRI(v *url.URL) { + t.image = append([]*imageBlockIntermediateType{&imageBlockIntermediateType{IRI: v}}, t.image...) } @@ -327438,20 +327469,20 @@ func (t *Block) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Block) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Block) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Block) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToBlockIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Block) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToBlockIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Block) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToBlockIntermediateType{&inReplyToBlockIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Block) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToBlockIntermediateType{&inReplyToBlockIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -327563,20 +327594,20 @@ func (t *Block) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Block) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Block) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Block) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationBlockIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Block) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationBlockIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Block) PrependLocationIRI(v url.URL) { - t.location = append([]*locationBlockIntermediateType{&locationBlockIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Block) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationBlockIntermediateType{&locationBlockIntermediateType{IRI: v}}, t.location...) } @@ -327688,20 +327719,20 @@ func (t *Block) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Block) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Block) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Block) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewBlockIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Block) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewBlockIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Block) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewBlockIntermediateType{&previewBlockIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Block) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewBlockIntermediateType{&previewBlockIntermediateType{IRI: v}}, t.preview...) } @@ -327761,14 +327792,14 @@ func (t *Block) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Block) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Block) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Block) SetPublishedIRI(v url.URL) { - t.published = &publishedBlockIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Block) SetPublishedIRI(v *url.URL) { + t.published = &publishedBlockIntermediateType{IRI: v} } @@ -327820,14 +327851,14 @@ func (t *Block) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Block) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Block) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Block) SetRepliesIRI(v url.URL) { - t.replies = &repliesBlockIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Block) SetRepliesIRI(v *url.URL) { + t.replies = &repliesBlockIntermediateType{IRI: v} } @@ -327879,14 +327910,14 @@ func (t *Block) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Block) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Block) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Block) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeBlockIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Block) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeBlockIntermediateType{IRI: v} } @@ -327990,20 +328021,20 @@ func (t *Block) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Block) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Block) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Block) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryBlockIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Block) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryBlockIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Block) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryBlockIntermediateType{&summaryBlockIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Block) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryBlockIntermediateType{&summaryBlockIntermediateType{IRI: v}}, t.summary...) } @@ -328150,20 +328181,20 @@ func (t *Block) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Block) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Block) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Block) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagBlockIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Block) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagBlockIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Block) PrependTagIRI(v url.URL) { - t.tag = append([]*tagBlockIntermediateType{&tagBlockIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Block) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagBlockIntermediateType{&tagBlockIntermediateType{IRI: v}}, t.tag...) } @@ -328255,14 +328286,14 @@ func (t *Block) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Block) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Block) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Block) SetUpdatedIRI(v url.URL) { - t.updated = &updatedBlockIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Block) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedBlockIntermediateType{IRI: v} } @@ -328302,20 +328333,20 @@ func (t *Block) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Block) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Block) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Block) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlBlockIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Block) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlBlockIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Block) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlBlockIntermediateType{&urlBlockIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Block) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlBlockIntermediateType{&urlBlockIntermediateType{anyURI: v}}, t.url...) } @@ -328459,20 +328490,20 @@ func (t *Block) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Block) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Block) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Block) AppendToIRI(v url.URL) { - t.to = append(t.to, &toBlockIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Block) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toBlockIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Block) PrependToIRI(v url.URL) { - t.to = append([]*toBlockIntermediateType{&toBlockIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Block) PrependToIRI(v *url.URL) { + t.to = append([]*toBlockIntermediateType{&toBlockIntermediateType{IRI: v}}, t.to...) } @@ -328584,20 +328615,20 @@ func (t *Block) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Block) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Block) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Block) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoBlockIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Block) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoBlockIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Block) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoBlockIntermediateType{&btoBlockIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Block) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoBlockIntermediateType{&btoBlockIntermediateType{IRI: v}}, t.bto...) } @@ -328709,20 +328740,20 @@ func (t *Block) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Block) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Block) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Block) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccBlockIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Block) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccBlockIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Block) PrependCcIRI(v url.URL) { - t.cc = append([]*ccBlockIntermediateType{&ccBlockIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Block) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccBlockIntermediateType{&ccBlockIntermediateType{IRI: v}}, t.cc...) } @@ -328834,20 +328865,20 @@ func (t *Block) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Block) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Block) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Block) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccBlockIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Block) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccBlockIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Block) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccBlockIntermediateType{&bccBlockIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Block) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccBlockIntermediateType{&bccBlockIntermediateType{IRI: v}}, t.bcc...) } @@ -328907,14 +328938,14 @@ func (t *Block) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Block) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Block) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Block) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeBlockIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Block) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeBlockIntermediateType{IRI: v} } @@ -328966,14 +328997,14 @@ func (t *Block) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Block) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Block) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Block) SetDurationIRI(v url.URL) { - t.duration = &durationBlockIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Block) SetDurationIRI(v *url.URL) { + t.duration = &durationBlockIntermediateType{IRI: v} } @@ -329025,14 +329056,14 @@ func (t *Block) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Block) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Block) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Block) SetSourceIRI(v url.URL) { - t.source = &sourceBlockIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Block) SetSourceIRI(v *url.URL) { + t.source = &sourceBlockIntermediateType{IRI: v} } @@ -329084,14 +329115,14 @@ func (t *Block) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Block) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Block) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Block) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxBlockIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Block) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxBlockIntermediateType{anyURI: v} } @@ -329143,14 +329174,14 @@ func (t *Block) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Block) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Block) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Block) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxBlockIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Block) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxBlockIntermediateType{anyURI: v} } @@ -329220,14 +329251,14 @@ func (t *Block) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Block) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Block) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Block) SetFollowingAnyURI(v url.URL) { - t.following = &followingBlockIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Block) SetFollowingAnyURI(v *url.URL) { + t.following = &followingBlockIntermediateType{anyURI: v} } @@ -329297,14 +329328,14 @@ func (t *Block) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Block) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Block) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Block) SetFollowersAnyURI(v url.URL) { - t.followers = &followersBlockIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Block) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersBlockIntermediateType{anyURI: v} } @@ -329374,14 +329405,14 @@ func (t *Block) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Block) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Block) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Block) SetLikedAnyURI(v url.URL) { - t.liked = &likedBlockIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Block) SetLikedAnyURI(v *url.URL) { + t.liked = &likedBlockIntermediateType{anyURI: v} } @@ -329451,14 +329482,14 @@ func (t *Block) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Block) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Block) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Block) SetLikesAnyURI(v url.URL) { - t.likes = &likesBlockIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Block) SetLikesAnyURI(v *url.URL) { + t.likes = &likesBlockIntermediateType{anyURI: v} } @@ -329492,26 +329523,27 @@ func (t *Block) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Block) GetStreams(index int) (v url.URL) { +func (t *Block) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Block) AppendStreams(v url.URL) { +func (t *Block) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Block) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Block) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Block) 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] } @@ -329562,14 +329594,14 @@ func (t *Block) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Block) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Block) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Block) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameBlockIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Block) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameBlockIntermediateType{IRI: v} } @@ -329656,14 +329688,14 @@ func (t *Block) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Block) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Block) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Block) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsBlockIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Block) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsBlockIntermediateType{IRI: v} } @@ -329697,14 +329729,14 @@ func (t *Block) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Block) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Block) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Block) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Block) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -329736,14 +329768,14 @@ func (t *Block) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Block) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Block) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Block) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Block) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -329775,14 +329807,14 @@ func (t *Block) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Block) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Block) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Block) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Block) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -329814,14 +329846,14 @@ func (t *Block) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Block) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Block) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Block) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Block) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -329853,14 +329885,14 @@ func (t *Block) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Block) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Block) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Block) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Block) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -329892,14 +329924,14 @@ func (t *Block) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Block) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Block) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Block) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Block) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -330157,7 +330189,7 @@ func (t *Block) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -330463,7 +330495,7 @@ func (t *Block) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -330478,7 +330510,7 @@ func (t *Block) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -330493,7 +330525,7 @@ func (t *Block) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -330508,7 +330540,7 @@ func (t *Block) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -330523,7 +330555,7 @@ func (t *Block) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -330538,7 +330570,7 @@ func (t *Block) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -331504,7 +331536,7 @@ func (t *Block) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -331513,7 +331545,7 @@ func (t *Block) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -331727,7 +331759,7 @@ func (t *actorBlockIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -331795,7 +331827,7 @@ func (t *objectBlockIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -331878,7 +331910,7 @@ func (t *targetBlockIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -331961,7 +331993,7 @@ func (t *resultBlockIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -332044,7 +332076,7 @@ func (t *originBlockIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -332127,7 +332159,7 @@ func (t *instrumentBlockIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -332181,7 +332213,7 @@ func (t *altitudeBlockIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -332264,7 +332296,7 @@ func (t *attachmentBlockIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -332347,7 +332379,7 @@ func (t *attributedToBlockIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -332430,7 +332462,7 @@ func (t *audienceBlockIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -332498,7 +332530,7 @@ func (t *contentBlockIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -332581,7 +332613,7 @@ func (t *contextBlockIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -332649,7 +332681,7 @@ func (t *nameBlockIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -332703,7 +332735,7 @@ func (t *endTimeBlockIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -332786,7 +332818,7 @@ func (t *generatorBlockIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -332869,7 +332901,7 @@ func (t *iconBlockIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -332952,7 +332984,7 @@ func (t *imageBlockIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -333035,7 +333067,7 @@ func (t *inReplyToBlockIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -333118,7 +333150,7 @@ func (t *locationBlockIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -333201,7 +333233,7 @@ func (t *previewBlockIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -333255,7 +333287,7 @@ func (t *publishedBlockIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -333323,7 +333355,7 @@ func (t *repliesBlockIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -333377,7 +333409,7 @@ func (t *startTimeBlockIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -333445,7 +333477,7 @@ func (t *summaryBlockIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -333528,7 +333560,7 @@ func (t *tagBlockIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -333582,7 +333614,7 @@ func (t *updatedBlockIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -333646,7 +333678,7 @@ func (t *urlBlockIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlBlockIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -333733,7 +333765,7 @@ func (t *toBlockIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -333816,7 +333848,7 @@ func (t *btoBlockIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -333899,7 +333931,7 @@ func (t *ccBlockIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -333982,7 +334014,7 @@ func (t *bccBlockIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -334036,7 +334068,7 @@ func (t *mediaTypeBlockIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -334090,7 +334122,7 @@ func (t *durationBlockIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -334158,7 +334190,7 @@ func (t *sourceBlockIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -334226,7 +334258,7 @@ func (t *inboxBlockIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -334294,7 +334326,7 @@ func (t *outboxBlockIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -334377,7 +334409,7 @@ func (t *followingBlockIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -334460,7 +334492,7 @@ func (t *followersBlockIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -334543,7 +334575,7 @@ func (t *likedBlockIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -334626,7 +334658,7 @@ func (t *likesBlockIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -334680,7 +334712,7 @@ func (t *preferredUsernameBlockIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -334748,7 +334780,7 @@ func (t *endpointsBlockIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -334850,7 +334882,7 @@ type Flag struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesFlagIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameFlagIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -334948,20 +334980,20 @@ func (t *Flag) IsActorIRI(index int) (ok bool) { } // GetActorIRI returns the value safely if IsActorIRI returned true for the specified index -func (t *Flag) GetActorIRI(index int) (v url.URL) { - return *t.actor[index].IRI +func (t *Flag) GetActorIRI(index int) (v *url.URL) { + return t.actor[index].IRI } -// AppendActorIRI adds to the back of actor a url.URL type -func (t *Flag) AppendActorIRI(v url.URL) { - t.actor = append(t.actor, &actorFlagIntermediateType{IRI: &v}) +// AppendActorIRI adds to the back of actor a *url.URL type +func (t *Flag) AppendActorIRI(v *url.URL) { + t.actor = append(t.actor, &actorFlagIntermediateType{IRI: v}) } -// PrependActorIRI adds to the front of actor a url.URL type -func (t *Flag) PrependActorIRI(v url.URL) { - t.actor = append([]*actorFlagIntermediateType{&actorFlagIntermediateType{IRI: &v}}, t.actor...) +// PrependActorIRI adds to the front of actor a *url.URL type +func (t *Flag) PrependActorIRI(v *url.URL) { + t.actor = append([]*actorFlagIntermediateType{&actorFlagIntermediateType{IRI: v}}, t.actor...) } @@ -335041,20 +335073,20 @@ func (t *Flag) IsObjectIRI(index int) (ok bool) { } // GetObjectIRI returns the value safely if IsObjectIRI returned true for the specified index -func (t *Flag) GetObjectIRI(index int) (v url.URL) { - return *t.object[index].IRI +func (t *Flag) GetObjectIRI(index int) (v *url.URL) { + return t.object[index].IRI } -// AppendObjectIRI adds to the back of object a url.URL type -func (t *Flag) AppendObjectIRI(v url.URL) { - t.object = append(t.object, &objectFlagIntermediateType{IRI: &v}) +// AppendObjectIRI adds to the back of object a *url.URL type +func (t *Flag) AppendObjectIRI(v *url.URL) { + t.object = append(t.object, &objectFlagIntermediateType{IRI: v}) } -// PrependObjectIRI adds to the front of object a url.URL type -func (t *Flag) PrependObjectIRI(v url.URL) { - t.object = append([]*objectFlagIntermediateType{&objectFlagIntermediateType{IRI: &v}}, t.object...) +// PrependObjectIRI adds to the front of object a *url.URL type +func (t *Flag) PrependObjectIRI(v *url.URL) { + t.object = append([]*objectFlagIntermediateType{&objectFlagIntermediateType{IRI: v}}, t.object...) } @@ -335166,20 +335198,20 @@ func (t *Flag) IsTargetIRI(index int) (ok bool) { } // GetTargetIRI returns the value safely if IsTargetIRI returned true for the specified index -func (t *Flag) GetTargetIRI(index int) (v url.URL) { - return *t.target[index].IRI +func (t *Flag) GetTargetIRI(index int) (v *url.URL) { + return t.target[index].IRI } -// AppendTargetIRI adds to the back of target a url.URL type -func (t *Flag) AppendTargetIRI(v url.URL) { - t.target = append(t.target, &targetFlagIntermediateType{IRI: &v}) +// AppendTargetIRI adds to the back of target a *url.URL type +func (t *Flag) AppendTargetIRI(v *url.URL) { + t.target = append(t.target, &targetFlagIntermediateType{IRI: v}) } -// PrependTargetIRI adds to the front of target a url.URL type -func (t *Flag) PrependTargetIRI(v url.URL) { - t.target = append([]*targetFlagIntermediateType{&targetFlagIntermediateType{IRI: &v}}, t.target...) +// PrependTargetIRI adds to the front of target a *url.URL type +func (t *Flag) PrependTargetIRI(v *url.URL) { + t.target = append([]*targetFlagIntermediateType{&targetFlagIntermediateType{IRI: v}}, t.target...) } @@ -335291,20 +335323,20 @@ func (t *Flag) IsResultIRI(index int) (ok bool) { } // GetResultIRI returns the value safely if IsResultIRI returned true for the specified index -func (t *Flag) GetResultIRI(index int) (v url.URL) { - return *t.result[index].IRI +func (t *Flag) GetResultIRI(index int) (v *url.URL) { + return t.result[index].IRI } -// AppendResultIRI adds to the back of result a url.URL type -func (t *Flag) AppendResultIRI(v url.URL) { - t.result = append(t.result, &resultFlagIntermediateType{IRI: &v}) +// AppendResultIRI adds to the back of result a *url.URL type +func (t *Flag) AppendResultIRI(v *url.URL) { + t.result = append(t.result, &resultFlagIntermediateType{IRI: v}) } -// PrependResultIRI adds to the front of result a url.URL type -func (t *Flag) PrependResultIRI(v url.URL) { - t.result = append([]*resultFlagIntermediateType{&resultFlagIntermediateType{IRI: &v}}, t.result...) +// PrependResultIRI adds to the front of result a *url.URL type +func (t *Flag) PrependResultIRI(v *url.URL) { + t.result = append([]*resultFlagIntermediateType{&resultFlagIntermediateType{IRI: v}}, t.result...) } @@ -335416,20 +335448,20 @@ func (t *Flag) IsOriginIRI(index int) (ok bool) { } // GetOriginIRI returns the value safely if IsOriginIRI returned true for the specified index -func (t *Flag) GetOriginIRI(index int) (v url.URL) { - return *t.origin[index].IRI +func (t *Flag) GetOriginIRI(index int) (v *url.URL) { + return t.origin[index].IRI } -// AppendOriginIRI adds to the back of origin a url.URL type -func (t *Flag) AppendOriginIRI(v url.URL) { - t.origin = append(t.origin, &originFlagIntermediateType{IRI: &v}) +// AppendOriginIRI adds to the back of origin a *url.URL type +func (t *Flag) AppendOriginIRI(v *url.URL) { + t.origin = append(t.origin, &originFlagIntermediateType{IRI: v}) } -// PrependOriginIRI adds to the front of origin a url.URL type -func (t *Flag) PrependOriginIRI(v url.URL) { - t.origin = append([]*originFlagIntermediateType{&originFlagIntermediateType{IRI: &v}}, t.origin...) +// PrependOriginIRI adds to the front of origin a *url.URL type +func (t *Flag) PrependOriginIRI(v *url.URL) { + t.origin = append([]*originFlagIntermediateType{&originFlagIntermediateType{IRI: v}}, t.origin...) } @@ -335541,20 +335573,20 @@ func (t *Flag) IsInstrumentIRI(index int) (ok bool) { } // GetInstrumentIRI returns the value safely if IsInstrumentIRI returned true for the specified index -func (t *Flag) GetInstrumentIRI(index int) (v url.URL) { - return *t.instrument[index].IRI +func (t *Flag) GetInstrumentIRI(index int) (v *url.URL) { + return t.instrument[index].IRI } -// AppendInstrumentIRI adds to the back of instrument a url.URL type -func (t *Flag) AppendInstrumentIRI(v url.URL) { - t.instrument = append(t.instrument, &instrumentFlagIntermediateType{IRI: &v}) +// AppendInstrumentIRI adds to the back of instrument a *url.URL type +func (t *Flag) AppendInstrumentIRI(v *url.URL) { + t.instrument = append(t.instrument, &instrumentFlagIntermediateType{IRI: v}) } -// PrependInstrumentIRI adds to the front of instrument a url.URL type -func (t *Flag) PrependInstrumentIRI(v url.URL) { - t.instrument = append([]*instrumentFlagIntermediateType{&instrumentFlagIntermediateType{IRI: &v}}, t.instrument...) +// PrependInstrumentIRI adds to the front of instrument a *url.URL type +func (t *Flag) PrependInstrumentIRI(v *url.URL) { + t.instrument = append([]*instrumentFlagIntermediateType{&instrumentFlagIntermediateType{IRI: v}}, t.instrument...) } @@ -335614,14 +335646,14 @@ func (t *Flag) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Flag) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Flag) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Flag) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeFlagIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Flag) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeFlagIntermediateType{IRI: v} } @@ -335725,20 +335757,20 @@ func (t *Flag) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Flag) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Flag) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Flag) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentFlagIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Flag) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentFlagIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Flag) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentFlagIntermediateType{&attachmentFlagIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Flag) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentFlagIntermediateType{&attachmentFlagIntermediateType{IRI: v}}, t.attachment...) } @@ -335850,20 +335882,20 @@ func (t *Flag) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Flag) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Flag) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Flag) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToFlagIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Flag) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToFlagIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Flag) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToFlagIntermediateType{&attributedToFlagIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Flag) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToFlagIntermediateType{&attributedToFlagIntermediateType{IRI: v}}, t.attributedTo...) } @@ -335975,20 +336007,20 @@ func (t *Flag) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Flag) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Flag) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Flag) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceFlagIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Flag) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceFlagIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Flag) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceFlagIntermediateType{&audienceFlagIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Flag) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceFlagIntermediateType{&audienceFlagIntermediateType{IRI: v}}, t.audience...) } @@ -336100,20 +336132,20 @@ func (t *Flag) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Flag) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Flag) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Flag) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentFlagIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Flag) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentFlagIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Flag) PrependContentIRI(v url.URL) { - t.content = append([]*contentFlagIntermediateType{&contentFlagIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Flag) PrependContentIRI(v *url.URL) { + t.content = append([]*contentFlagIntermediateType{&contentFlagIntermediateType{IRI: v}}, t.content...) } @@ -336260,20 +336292,20 @@ func (t *Flag) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Flag) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Flag) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Flag) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextFlagIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Flag) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextFlagIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Flag) PrependContextIRI(v url.URL) { - t.context = append([]*contextFlagIntermediateType{&contextFlagIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Flag) PrependContextIRI(v *url.URL) { + t.context = append([]*contextFlagIntermediateType{&contextFlagIntermediateType{IRI: v}}, t.context...) } @@ -336385,20 +336417,20 @@ func (t *Flag) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Flag) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Flag) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Flag) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameFlagIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Flag) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameFlagIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Flag) PrependNameIRI(v url.URL) { - t.name = append([]*nameFlagIntermediateType{&nameFlagIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Flag) PrependNameIRI(v *url.URL) { + t.name = append([]*nameFlagIntermediateType{&nameFlagIntermediateType{IRI: v}}, t.name...) } @@ -336493,14 +336525,14 @@ func (t *Flag) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Flag) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Flag) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Flag) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeFlagIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Flag) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeFlagIntermediateType{IRI: v} } @@ -336604,20 +336636,20 @@ func (t *Flag) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Flag) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Flag) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Flag) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorFlagIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Flag) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorFlagIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Flag) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorFlagIntermediateType{&generatorFlagIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Flag) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorFlagIntermediateType{&generatorFlagIntermediateType{IRI: v}}, t.generator...) } @@ -336729,20 +336761,20 @@ func (t *Flag) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Flag) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Flag) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Flag) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconFlagIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Flag) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconFlagIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Flag) PrependIconIRI(v url.URL) { - t.icon = append([]*iconFlagIntermediateType{&iconFlagIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Flag) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconFlagIntermediateType{&iconFlagIntermediateType{IRI: v}}, t.icon...) } @@ -336784,14 +336816,14 @@ func (t *Flag) HasId() (ok bool) { } // GetId returns the value for id -func (t *Flag) GetId() (v url.URL) { - return *t.id +func (t *Flag) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Flag) SetId(v url.URL) { - t.id = &v +func (t *Flag) SetId(v *url.URL) { + t.id = v } @@ -336893,20 +336925,20 @@ func (t *Flag) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Flag) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Flag) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Flag) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageFlagIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Flag) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageFlagIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Flag) PrependImageIRI(v url.URL) { - t.image = append([]*imageFlagIntermediateType{&imageFlagIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Flag) PrependImageIRI(v *url.URL) { + t.image = append([]*imageFlagIntermediateType{&imageFlagIntermediateType{IRI: v}}, t.image...) } @@ -337018,20 +337050,20 @@ func (t *Flag) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Flag) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Flag) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Flag) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToFlagIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Flag) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToFlagIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Flag) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToFlagIntermediateType{&inReplyToFlagIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Flag) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToFlagIntermediateType{&inReplyToFlagIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -337143,20 +337175,20 @@ func (t *Flag) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Flag) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Flag) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Flag) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationFlagIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Flag) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationFlagIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Flag) PrependLocationIRI(v url.URL) { - t.location = append([]*locationFlagIntermediateType{&locationFlagIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Flag) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationFlagIntermediateType{&locationFlagIntermediateType{IRI: v}}, t.location...) } @@ -337268,20 +337300,20 @@ func (t *Flag) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Flag) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Flag) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Flag) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewFlagIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Flag) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewFlagIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Flag) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewFlagIntermediateType{&previewFlagIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Flag) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewFlagIntermediateType{&previewFlagIntermediateType{IRI: v}}, t.preview...) } @@ -337341,14 +337373,14 @@ func (t *Flag) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Flag) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Flag) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Flag) SetPublishedIRI(v url.URL) { - t.published = &publishedFlagIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Flag) SetPublishedIRI(v *url.URL) { + t.published = &publishedFlagIntermediateType{IRI: v} } @@ -337400,14 +337432,14 @@ func (t *Flag) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Flag) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Flag) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Flag) SetRepliesIRI(v url.URL) { - t.replies = &repliesFlagIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Flag) SetRepliesIRI(v *url.URL) { + t.replies = &repliesFlagIntermediateType{IRI: v} } @@ -337459,14 +337491,14 @@ func (t *Flag) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Flag) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Flag) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Flag) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeFlagIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Flag) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeFlagIntermediateType{IRI: v} } @@ -337570,20 +337602,20 @@ func (t *Flag) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Flag) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Flag) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Flag) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryFlagIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Flag) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryFlagIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Flag) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryFlagIntermediateType{&summaryFlagIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Flag) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryFlagIntermediateType{&summaryFlagIntermediateType{IRI: v}}, t.summary...) } @@ -337730,20 +337762,20 @@ func (t *Flag) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Flag) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Flag) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Flag) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagFlagIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Flag) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagFlagIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Flag) PrependTagIRI(v url.URL) { - t.tag = append([]*tagFlagIntermediateType{&tagFlagIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Flag) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagFlagIntermediateType{&tagFlagIntermediateType{IRI: v}}, t.tag...) } @@ -337835,14 +337867,14 @@ func (t *Flag) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Flag) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Flag) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Flag) SetUpdatedIRI(v url.URL) { - t.updated = &updatedFlagIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Flag) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedFlagIntermediateType{IRI: v} } @@ -337882,20 +337914,20 @@ func (t *Flag) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Flag) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Flag) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Flag) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlFlagIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Flag) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlFlagIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Flag) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlFlagIntermediateType{&urlFlagIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Flag) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlFlagIntermediateType{&urlFlagIntermediateType{anyURI: v}}, t.url...) } @@ -338039,20 +338071,20 @@ func (t *Flag) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Flag) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Flag) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Flag) AppendToIRI(v url.URL) { - t.to = append(t.to, &toFlagIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Flag) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toFlagIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Flag) PrependToIRI(v url.URL) { - t.to = append([]*toFlagIntermediateType{&toFlagIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Flag) PrependToIRI(v *url.URL) { + t.to = append([]*toFlagIntermediateType{&toFlagIntermediateType{IRI: v}}, t.to...) } @@ -338164,20 +338196,20 @@ func (t *Flag) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Flag) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Flag) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Flag) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoFlagIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Flag) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoFlagIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Flag) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoFlagIntermediateType{&btoFlagIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Flag) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoFlagIntermediateType{&btoFlagIntermediateType{IRI: v}}, t.bto...) } @@ -338289,20 +338321,20 @@ func (t *Flag) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Flag) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Flag) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Flag) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccFlagIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Flag) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccFlagIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Flag) PrependCcIRI(v url.URL) { - t.cc = append([]*ccFlagIntermediateType{&ccFlagIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Flag) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccFlagIntermediateType{&ccFlagIntermediateType{IRI: v}}, t.cc...) } @@ -338414,20 +338446,20 @@ func (t *Flag) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Flag) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Flag) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Flag) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccFlagIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Flag) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccFlagIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Flag) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccFlagIntermediateType{&bccFlagIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Flag) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccFlagIntermediateType{&bccFlagIntermediateType{IRI: v}}, t.bcc...) } @@ -338487,14 +338519,14 @@ func (t *Flag) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Flag) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Flag) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Flag) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeFlagIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Flag) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeFlagIntermediateType{IRI: v} } @@ -338546,14 +338578,14 @@ func (t *Flag) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Flag) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Flag) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Flag) SetDurationIRI(v url.URL) { - t.duration = &durationFlagIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Flag) SetDurationIRI(v *url.URL) { + t.duration = &durationFlagIntermediateType{IRI: v} } @@ -338605,14 +338637,14 @@ func (t *Flag) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Flag) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Flag) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Flag) SetSourceIRI(v url.URL) { - t.source = &sourceFlagIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Flag) SetSourceIRI(v *url.URL) { + t.source = &sourceFlagIntermediateType{IRI: v} } @@ -338664,14 +338696,14 @@ func (t *Flag) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Flag) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Flag) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Flag) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxFlagIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Flag) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxFlagIntermediateType{anyURI: v} } @@ -338723,14 +338755,14 @@ func (t *Flag) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Flag) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Flag) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Flag) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxFlagIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Flag) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxFlagIntermediateType{anyURI: v} } @@ -338800,14 +338832,14 @@ func (t *Flag) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Flag) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Flag) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Flag) SetFollowingAnyURI(v url.URL) { - t.following = &followingFlagIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Flag) SetFollowingAnyURI(v *url.URL) { + t.following = &followingFlagIntermediateType{anyURI: v} } @@ -338877,14 +338909,14 @@ func (t *Flag) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Flag) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Flag) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Flag) SetFollowersAnyURI(v url.URL) { - t.followers = &followersFlagIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Flag) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersFlagIntermediateType{anyURI: v} } @@ -338954,14 +338986,14 @@ func (t *Flag) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Flag) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Flag) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Flag) SetLikedAnyURI(v url.URL) { - t.liked = &likedFlagIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Flag) SetLikedAnyURI(v *url.URL) { + t.liked = &likedFlagIntermediateType{anyURI: v} } @@ -339031,14 +339063,14 @@ func (t *Flag) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Flag) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Flag) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Flag) SetLikesAnyURI(v url.URL) { - t.likes = &likesFlagIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Flag) SetLikesAnyURI(v *url.URL) { + t.likes = &likesFlagIntermediateType{anyURI: v} } @@ -339072,26 +339104,27 @@ func (t *Flag) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Flag) GetStreams(index int) (v url.URL) { +func (t *Flag) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Flag) AppendStreams(v url.URL) { +func (t *Flag) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Flag) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Flag) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Flag) 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] } @@ -339142,14 +339175,14 @@ func (t *Flag) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Flag) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Flag) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Flag) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameFlagIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Flag) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameFlagIntermediateType{IRI: v} } @@ -339236,14 +339269,14 @@ func (t *Flag) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Flag) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Flag) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Flag) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsFlagIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Flag) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsFlagIntermediateType{IRI: v} } @@ -339277,14 +339310,14 @@ func (t *Flag) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Flag) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Flag) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Flag) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Flag) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -339316,14 +339349,14 @@ func (t *Flag) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Flag) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Flag) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Flag) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Flag) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -339355,14 +339388,14 @@ func (t *Flag) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Flag) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Flag) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Flag) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Flag) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -339394,14 +339427,14 @@ func (t *Flag) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Flag) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Flag) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Flag) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Flag) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -339433,14 +339466,14 @@ func (t *Flag) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Flag) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Flag) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Flag) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Flag) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -339472,14 +339505,14 @@ func (t *Flag) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Flag) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Flag) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Flag) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Flag) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -339737,7 +339770,7 @@ func (t *Flag) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -340043,7 +340076,7 @@ func (t *Flag) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -340058,7 +340091,7 @@ func (t *Flag) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -340073,7 +340106,7 @@ func (t *Flag) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -340088,7 +340121,7 @@ func (t *Flag) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -340103,7 +340136,7 @@ func (t *Flag) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -340118,7 +340151,7 @@ func (t *Flag) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -341084,7 +341117,7 @@ func (t *Flag) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -341093,7 +341126,7 @@ func (t *Flag) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -341307,7 +341340,7 @@ func (t *actorFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -341375,7 +341408,7 @@ func (t *objectFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -341458,7 +341491,7 @@ func (t *targetFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -341541,7 +341574,7 @@ func (t *resultFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -341624,7 +341657,7 @@ func (t *originFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -341707,7 +341740,7 @@ func (t *instrumentFlagIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -341761,7 +341794,7 @@ func (t *altitudeFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -341844,7 +341877,7 @@ func (t *attachmentFlagIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -341927,7 +341960,7 @@ func (t *attributedToFlagIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -342010,7 +342043,7 @@ func (t *audienceFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -342078,7 +342111,7 @@ func (t *contentFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -342161,7 +342194,7 @@ func (t *contextFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -342229,7 +342262,7 @@ func (t *nameFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -342283,7 +342316,7 @@ func (t *endTimeFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -342366,7 +342399,7 @@ func (t *generatorFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -342449,7 +342482,7 @@ func (t *iconFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -342532,7 +342565,7 @@ func (t *imageFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -342615,7 +342648,7 @@ func (t *inReplyToFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -342698,7 +342731,7 @@ func (t *locationFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -342781,7 +342814,7 @@ func (t *previewFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -342835,7 +342868,7 @@ func (t *publishedFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -342903,7 +342936,7 @@ func (t *repliesFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -342957,7 +342990,7 @@ func (t *startTimeFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -343025,7 +343058,7 @@ func (t *summaryFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -343108,7 +343141,7 @@ func (t *tagFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -343162,7 +343195,7 @@ func (t *updatedFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -343226,7 +343259,7 @@ func (t *urlFlagIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlFlagIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -343313,7 +343346,7 @@ func (t *toFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -343396,7 +343429,7 @@ func (t *btoFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -343479,7 +343512,7 @@ func (t *ccFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -343562,7 +343595,7 @@ func (t *bccFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -343616,7 +343649,7 @@ func (t *mediaTypeFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -343670,7 +343703,7 @@ func (t *durationFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -343738,7 +343771,7 @@ func (t *sourceFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -343806,7 +343839,7 @@ func (t *inboxFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -343874,7 +343907,7 @@ func (t *outboxFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -343957,7 +343990,7 @@ func (t *followingFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -344040,7 +344073,7 @@ func (t *followersFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -344123,7 +344156,7 @@ func (t *likedFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -344206,7 +344239,7 @@ func (t *likesFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -344260,7 +344293,7 @@ func (t *preferredUsernameFlagIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -344328,7 +344361,7 @@ func (t *endpointsFlagIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -344430,7 +344463,7 @@ type Dislike struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesDislikeIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameDislikeIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -344528,20 +344561,20 @@ func (t *Dislike) IsActorIRI(index int) (ok bool) { } // GetActorIRI returns the value safely if IsActorIRI returned true for the specified index -func (t *Dislike) GetActorIRI(index int) (v url.URL) { - return *t.actor[index].IRI +func (t *Dislike) GetActorIRI(index int) (v *url.URL) { + return t.actor[index].IRI } -// AppendActorIRI adds to the back of actor a url.URL type -func (t *Dislike) AppendActorIRI(v url.URL) { - t.actor = append(t.actor, &actorDislikeIntermediateType{IRI: &v}) +// AppendActorIRI adds to the back of actor a *url.URL type +func (t *Dislike) AppendActorIRI(v *url.URL) { + t.actor = append(t.actor, &actorDislikeIntermediateType{IRI: v}) } -// PrependActorIRI adds to the front of actor a url.URL type -func (t *Dislike) PrependActorIRI(v url.URL) { - t.actor = append([]*actorDislikeIntermediateType{&actorDislikeIntermediateType{IRI: &v}}, t.actor...) +// PrependActorIRI adds to the front of actor a *url.URL type +func (t *Dislike) PrependActorIRI(v *url.URL) { + t.actor = append([]*actorDislikeIntermediateType{&actorDislikeIntermediateType{IRI: v}}, t.actor...) } @@ -344621,20 +344654,20 @@ func (t *Dislike) IsObjectIRI(index int) (ok bool) { } // GetObjectIRI returns the value safely if IsObjectIRI returned true for the specified index -func (t *Dislike) GetObjectIRI(index int) (v url.URL) { - return *t.object[index].IRI +func (t *Dislike) GetObjectIRI(index int) (v *url.URL) { + return t.object[index].IRI } -// AppendObjectIRI adds to the back of object a url.URL type -func (t *Dislike) AppendObjectIRI(v url.URL) { - t.object = append(t.object, &objectDislikeIntermediateType{IRI: &v}) +// AppendObjectIRI adds to the back of object a *url.URL type +func (t *Dislike) AppendObjectIRI(v *url.URL) { + t.object = append(t.object, &objectDislikeIntermediateType{IRI: v}) } -// PrependObjectIRI adds to the front of object a url.URL type -func (t *Dislike) PrependObjectIRI(v url.URL) { - t.object = append([]*objectDislikeIntermediateType{&objectDislikeIntermediateType{IRI: &v}}, t.object...) +// PrependObjectIRI adds to the front of object a *url.URL type +func (t *Dislike) PrependObjectIRI(v *url.URL) { + t.object = append([]*objectDislikeIntermediateType{&objectDislikeIntermediateType{IRI: v}}, t.object...) } @@ -344746,20 +344779,20 @@ func (t *Dislike) IsTargetIRI(index int) (ok bool) { } // GetTargetIRI returns the value safely if IsTargetIRI returned true for the specified index -func (t *Dislike) GetTargetIRI(index int) (v url.URL) { - return *t.target[index].IRI +func (t *Dislike) GetTargetIRI(index int) (v *url.URL) { + return t.target[index].IRI } -// AppendTargetIRI adds to the back of target a url.URL type -func (t *Dislike) AppendTargetIRI(v url.URL) { - t.target = append(t.target, &targetDislikeIntermediateType{IRI: &v}) +// AppendTargetIRI adds to the back of target a *url.URL type +func (t *Dislike) AppendTargetIRI(v *url.URL) { + t.target = append(t.target, &targetDislikeIntermediateType{IRI: v}) } -// PrependTargetIRI adds to the front of target a url.URL type -func (t *Dislike) PrependTargetIRI(v url.URL) { - t.target = append([]*targetDislikeIntermediateType{&targetDislikeIntermediateType{IRI: &v}}, t.target...) +// PrependTargetIRI adds to the front of target a *url.URL type +func (t *Dislike) PrependTargetIRI(v *url.URL) { + t.target = append([]*targetDislikeIntermediateType{&targetDislikeIntermediateType{IRI: v}}, t.target...) } @@ -344871,20 +344904,20 @@ func (t *Dislike) IsResultIRI(index int) (ok bool) { } // GetResultIRI returns the value safely if IsResultIRI returned true for the specified index -func (t *Dislike) GetResultIRI(index int) (v url.URL) { - return *t.result[index].IRI +func (t *Dislike) GetResultIRI(index int) (v *url.URL) { + return t.result[index].IRI } -// AppendResultIRI adds to the back of result a url.URL type -func (t *Dislike) AppendResultIRI(v url.URL) { - t.result = append(t.result, &resultDislikeIntermediateType{IRI: &v}) +// AppendResultIRI adds to the back of result a *url.URL type +func (t *Dislike) AppendResultIRI(v *url.URL) { + t.result = append(t.result, &resultDislikeIntermediateType{IRI: v}) } -// PrependResultIRI adds to the front of result a url.URL type -func (t *Dislike) PrependResultIRI(v url.URL) { - t.result = append([]*resultDislikeIntermediateType{&resultDislikeIntermediateType{IRI: &v}}, t.result...) +// PrependResultIRI adds to the front of result a *url.URL type +func (t *Dislike) PrependResultIRI(v *url.URL) { + t.result = append([]*resultDislikeIntermediateType{&resultDislikeIntermediateType{IRI: v}}, t.result...) } @@ -344996,20 +345029,20 @@ func (t *Dislike) IsOriginIRI(index int) (ok bool) { } // GetOriginIRI returns the value safely if IsOriginIRI returned true for the specified index -func (t *Dislike) GetOriginIRI(index int) (v url.URL) { - return *t.origin[index].IRI +func (t *Dislike) GetOriginIRI(index int) (v *url.URL) { + return t.origin[index].IRI } -// AppendOriginIRI adds to the back of origin a url.URL type -func (t *Dislike) AppendOriginIRI(v url.URL) { - t.origin = append(t.origin, &originDislikeIntermediateType{IRI: &v}) +// AppendOriginIRI adds to the back of origin a *url.URL type +func (t *Dislike) AppendOriginIRI(v *url.URL) { + t.origin = append(t.origin, &originDislikeIntermediateType{IRI: v}) } -// PrependOriginIRI adds to the front of origin a url.URL type -func (t *Dislike) PrependOriginIRI(v url.URL) { - t.origin = append([]*originDislikeIntermediateType{&originDislikeIntermediateType{IRI: &v}}, t.origin...) +// PrependOriginIRI adds to the front of origin a *url.URL type +func (t *Dislike) PrependOriginIRI(v *url.URL) { + t.origin = append([]*originDislikeIntermediateType{&originDislikeIntermediateType{IRI: v}}, t.origin...) } @@ -345121,20 +345154,20 @@ func (t *Dislike) IsInstrumentIRI(index int) (ok bool) { } // GetInstrumentIRI returns the value safely if IsInstrumentIRI returned true for the specified index -func (t *Dislike) GetInstrumentIRI(index int) (v url.URL) { - return *t.instrument[index].IRI +func (t *Dislike) GetInstrumentIRI(index int) (v *url.URL) { + return t.instrument[index].IRI } -// AppendInstrumentIRI adds to the back of instrument a url.URL type -func (t *Dislike) AppendInstrumentIRI(v url.URL) { - t.instrument = append(t.instrument, &instrumentDislikeIntermediateType{IRI: &v}) +// AppendInstrumentIRI adds to the back of instrument a *url.URL type +func (t *Dislike) AppendInstrumentIRI(v *url.URL) { + t.instrument = append(t.instrument, &instrumentDislikeIntermediateType{IRI: v}) } -// PrependInstrumentIRI adds to the front of instrument a url.URL type -func (t *Dislike) PrependInstrumentIRI(v url.URL) { - t.instrument = append([]*instrumentDislikeIntermediateType{&instrumentDislikeIntermediateType{IRI: &v}}, t.instrument...) +// PrependInstrumentIRI adds to the front of instrument a *url.URL type +func (t *Dislike) PrependInstrumentIRI(v *url.URL) { + t.instrument = append([]*instrumentDislikeIntermediateType{&instrumentDislikeIntermediateType{IRI: v}}, t.instrument...) } @@ -345194,14 +345227,14 @@ func (t *Dislike) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Dislike) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Dislike) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Dislike) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeDislikeIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Dislike) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeDislikeIntermediateType{IRI: v} } @@ -345305,20 +345338,20 @@ func (t *Dislike) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Dislike) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Dislike) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Dislike) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentDislikeIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Dislike) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentDislikeIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Dislike) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentDislikeIntermediateType{&attachmentDislikeIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Dislike) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentDislikeIntermediateType{&attachmentDislikeIntermediateType{IRI: v}}, t.attachment...) } @@ -345430,20 +345463,20 @@ func (t *Dislike) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Dislike) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Dislike) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Dislike) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToDislikeIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Dislike) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToDislikeIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Dislike) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToDislikeIntermediateType{&attributedToDislikeIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Dislike) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToDislikeIntermediateType{&attributedToDislikeIntermediateType{IRI: v}}, t.attributedTo...) } @@ -345555,20 +345588,20 @@ func (t *Dislike) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Dislike) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Dislike) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Dislike) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceDislikeIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Dislike) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceDislikeIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Dislike) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceDislikeIntermediateType{&audienceDislikeIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Dislike) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceDislikeIntermediateType{&audienceDislikeIntermediateType{IRI: v}}, t.audience...) } @@ -345680,20 +345713,20 @@ func (t *Dislike) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Dislike) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Dislike) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Dislike) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentDislikeIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Dislike) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentDislikeIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Dislike) PrependContentIRI(v url.URL) { - t.content = append([]*contentDislikeIntermediateType{&contentDislikeIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Dislike) PrependContentIRI(v *url.URL) { + t.content = append([]*contentDislikeIntermediateType{&contentDislikeIntermediateType{IRI: v}}, t.content...) } @@ -345840,20 +345873,20 @@ func (t *Dislike) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Dislike) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Dislike) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Dislike) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextDislikeIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Dislike) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextDislikeIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Dislike) PrependContextIRI(v url.URL) { - t.context = append([]*contextDislikeIntermediateType{&contextDislikeIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Dislike) PrependContextIRI(v *url.URL) { + t.context = append([]*contextDislikeIntermediateType{&contextDislikeIntermediateType{IRI: v}}, t.context...) } @@ -345965,20 +345998,20 @@ func (t *Dislike) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Dislike) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Dislike) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Dislike) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameDislikeIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Dislike) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameDislikeIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Dislike) PrependNameIRI(v url.URL) { - t.name = append([]*nameDislikeIntermediateType{&nameDislikeIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Dislike) PrependNameIRI(v *url.URL) { + t.name = append([]*nameDislikeIntermediateType{&nameDislikeIntermediateType{IRI: v}}, t.name...) } @@ -346073,14 +346106,14 @@ func (t *Dislike) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Dislike) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Dislike) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Dislike) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeDislikeIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Dislike) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeDislikeIntermediateType{IRI: v} } @@ -346184,20 +346217,20 @@ func (t *Dislike) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Dislike) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Dislike) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Dislike) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorDislikeIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Dislike) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorDislikeIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Dislike) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorDislikeIntermediateType{&generatorDislikeIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Dislike) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorDislikeIntermediateType{&generatorDislikeIntermediateType{IRI: v}}, t.generator...) } @@ -346309,20 +346342,20 @@ func (t *Dislike) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Dislike) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Dislike) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Dislike) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconDislikeIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Dislike) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconDislikeIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Dislike) PrependIconIRI(v url.URL) { - t.icon = append([]*iconDislikeIntermediateType{&iconDislikeIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Dislike) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconDislikeIntermediateType{&iconDislikeIntermediateType{IRI: v}}, t.icon...) } @@ -346364,14 +346397,14 @@ func (t *Dislike) HasId() (ok bool) { } // GetId returns the value for id -func (t *Dislike) GetId() (v url.URL) { - return *t.id +func (t *Dislike) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Dislike) SetId(v url.URL) { - t.id = &v +func (t *Dislike) SetId(v *url.URL) { + t.id = v } @@ -346473,20 +346506,20 @@ func (t *Dislike) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Dislike) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Dislike) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Dislike) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageDislikeIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Dislike) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageDislikeIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Dislike) PrependImageIRI(v url.URL) { - t.image = append([]*imageDislikeIntermediateType{&imageDislikeIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Dislike) PrependImageIRI(v *url.URL) { + t.image = append([]*imageDislikeIntermediateType{&imageDislikeIntermediateType{IRI: v}}, t.image...) } @@ -346598,20 +346631,20 @@ func (t *Dislike) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Dislike) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Dislike) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Dislike) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToDislikeIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Dislike) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToDislikeIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Dislike) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToDislikeIntermediateType{&inReplyToDislikeIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Dislike) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToDislikeIntermediateType{&inReplyToDislikeIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -346723,20 +346756,20 @@ func (t *Dislike) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Dislike) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Dislike) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Dislike) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationDislikeIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Dislike) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationDislikeIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Dislike) PrependLocationIRI(v url.URL) { - t.location = append([]*locationDislikeIntermediateType{&locationDislikeIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Dislike) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationDislikeIntermediateType{&locationDislikeIntermediateType{IRI: v}}, t.location...) } @@ -346848,20 +346881,20 @@ func (t *Dislike) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Dislike) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Dislike) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Dislike) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewDislikeIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Dislike) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewDislikeIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Dislike) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewDislikeIntermediateType{&previewDislikeIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Dislike) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewDislikeIntermediateType{&previewDislikeIntermediateType{IRI: v}}, t.preview...) } @@ -346921,14 +346954,14 @@ func (t *Dislike) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Dislike) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Dislike) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Dislike) SetPublishedIRI(v url.URL) { - t.published = &publishedDislikeIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Dislike) SetPublishedIRI(v *url.URL) { + t.published = &publishedDislikeIntermediateType{IRI: v} } @@ -346980,14 +347013,14 @@ func (t *Dislike) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Dislike) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Dislike) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Dislike) SetRepliesIRI(v url.URL) { - t.replies = &repliesDislikeIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Dislike) SetRepliesIRI(v *url.URL) { + t.replies = &repliesDislikeIntermediateType{IRI: v} } @@ -347039,14 +347072,14 @@ func (t *Dislike) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Dislike) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Dislike) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Dislike) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeDislikeIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Dislike) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeDislikeIntermediateType{IRI: v} } @@ -347150,20 +347183,20 @@ func (t *Dislike) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Dislike) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Dislike) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Dislike) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryDislikeIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Dislike) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryDislikeIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Dislike) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryDislikeIntermediateType{&summaryDislikeIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Dislike) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryDislikeIntermediateType{&summaryDislikeIntermediateType{IRI: v}}, t.summary...) } @@ -347310,20 +347343,20 @@ func (t *Dislike) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Dislike) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Dislike) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Dislike) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagDislikeIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Dislike) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagDislikeIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Dislike) PrependTagIRI(v url.URL) { - t.tag = append([]*tagDislikeIntermediateType{&tagDislikeIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Dislike) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagDislikeIntermediateType{&tagDislikeIntermediateType{IRI: v}}, t.tag...) } @@ -347415,14 +347448,14 @@ func (t *Dislike) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Dislike) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Dislike) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Dislike) SetUpdatedIRI(v url.URL) { - t.updated = &updatedDislikeIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Dislike) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedDislikeIntermediateType{IRI: v} } @@ -347462,20 +347495,20 @@ func (t *Dislike) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Dislike) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Dislike) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Dislike) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlDislikeIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Dislike) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlDislikeIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Dislike) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlDislikeIntermediateType{&urlDislikeIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Dislike) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlDislikeIntermediateType{&urlDislikeIntermediateType{anyURI: v}}, t.url...) } @@ -347619,20 +347652,20 @@ func (t *Dislike) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Dislike) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Dislike) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Dislike) AppendToIRI(v url.URL) { - t.to = append(t.to, &toDislikeIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Dislike) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toDislikeIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Dislike) PrependToIRI(v url.URL) { - t.to = append([]*toDislikeIntermediateType{&toDislikeIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Dislike) PrependToIRI(v *url.URL) { + t.to = append([]*toDislikeIntermediateType{&toDislikeIntermediateType{IRI: v}}, t.to...) } @@ -347744,20 +347777,20 @@ func (t *Dislike) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Dislike) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Dislike) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Dislike) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoDislikeIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Dislike) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoDislikeIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Dislike) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoDislikeIntermediateType{&btoDislikeIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Dislike) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoDislikeIntermediateType{&btoDislikeIntermediateType{IRI: v}}, t.bto...) } @@ -347869,20 +347902,20 @@ func (t *Dislike) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Dislike) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Dislike) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Dislike) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccDislikeIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Dislike) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccDislikeIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Dislike) PrependCcIRI(v url.URL) { - t.cc = append([]*ccDislikeIntermediateType{&ccDislikeIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Dislike) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccDislikeIntermediateType{&ccDislikeIntermediateType{IRI: v}}, t.cc...) } @@ -347994,20 +348027,20 @@ func (t *Dislike) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Dislike) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Dislike) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Dislike) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccDislikeIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Dislike) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccDislikeIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Dislike) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccDislikeIntermediateType{&bccDislikeIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Dislike) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccDislikeIntermediateType{&bccDislikeIntermediateType{IRI: v}}, t.bcc...) } @@ -348067,14 +348100,14 @@ func (t *Dislike) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Dislike) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Dislike) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Dislike) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeDislikeIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Dislike) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeDislikeIntermediateType{IRI: v} } @@ -348126,14 +348159,14 @@ func (t *Dislike) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Dislike) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Dislike) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Dislike) SetDurationIRI(v url.URL) { - t.duration = &durationDislikeIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Dislike) SetDurationIRI(v *url.URL) { + t.duration = &durationDislikeIntermediateType{IRI: v} } @@ -348185,14 +348218,14 @@ func (t *Dislike) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Dislike) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Dislike) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Dislike) SetSourceIRI(v url.URL) { - t.source = &sourceDislikeIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Dislike) SetSourceIRI(v *url.URL) { + t.source = &sourceDislikeIntermediateType{IRI: v} } @@ -348244,14 +348277,14 @@ func (t *Dislike) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Dislike) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Dislike) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Dislike) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxDislikeIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Dislike) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxDislikeIntermediateType{anyURI: v} } @@ -348303,14 +348336,14 @@ func (t *Dislike) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Dislike) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Dislike) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Dislike) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxDislikeIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Dislike) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxDislikeIntermediateType{anyURI: v} } @@ -348380,14 +348413,14 @@ func (t *Dislike) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Dislike) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Dislike) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Dislike) SetFollowingAnyURI(v url.URL) { - t.following = &followingDislikeIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Dislike) SetFollowingAnyURI(v *url.URL) { + t.following = &followingDislikeIntermediateType{anyURI: v} } @@ -348457,14 +348490,14 @@ func (t *Dislike) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Dislike) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Dislike) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Dislike) SetFollowersAnyURI(v url.URL) { - t.followers = &followersDislikeIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Dislike) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersDislikeIntermediateType{anyURI: v} } @@ -348534,14 +348567,14 @@ func (t *Dislike) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Dislike) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Dislike) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Dislike) SetLikedAnyURI(v url.URL) { - t.liked = &likedDislikeIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Dislike) SetLikedAnyURI(v *url.URL) { + t.liked = &likedDislikeIntermediateType{anyURI: v} } @@ -348611,14 +348644,14 @@ func (t *Dislike) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Dislike) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Dislike) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Dislike) SetLikesAnyURI(v url.URL) { - t.likes = &likesDislikeIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Dislike) SetLikesAnyURI(v *url.URL) { + t.likes = &likesDislikeIntermediateType{anyURI: v} } @@ -348652,26 +348685,27 @@ func (t *Dislike) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Dislike) GetStreams(index int) (v url.URL) { +func (t *Dislike) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Dislike) AppendStreams(v url.URL) { +func (t *Dislike) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Dislike) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Dislike) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Dislike) 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] } @@ -348722,14 +348756,14 @@ func (t *Dislike) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Dislike) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Dislike) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Dislike) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameDislikeIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Dislike) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameDislikeIntermediateType{IRI: v} } @@ -348816,14 +348850,14 @@ func (t *Dislike) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Dislike) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Dislike) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Dislike) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsDislikeIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Dislike) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsDislikeIntermediateType{IRI: v} } @@ -348857,14 +348891,14 @@ func (t *Dislike) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Dislike) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Dislike) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Dislike) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Dislike) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -348896,14 +348930,14 @@ func (t *Dislike) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Dislike) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Dislike) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Dislike) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Dislike) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -348935,14 +348969,14 @@ func (t *Dislike) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Dislike) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Dislike) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Dislike) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Dislike) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -348974,14 +349008,14 @@ func (t *Dislike) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Dislike) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Dislike) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Dislike) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Dislike) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -349013,14 +349047,14 @@ func (t *Dislike) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Dislike) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Dislike) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Dislike) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Dislike) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -349052,14 +349086,14 @@ func (t *Dislike) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Dislike) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Dislike) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Dislike) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Dislike) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -349317,7 +349351,7 @@ func (t *Dislike) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -349623,7 +349657,7 @@ func (t *Dislike) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -349638,7 +349672,7 @@ func (t *Dislike) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -349653,7 +349687,7 @@ func (t *Dislike) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -349668,7 +349702,7 @@ func (t *Dislike) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -349683,7 +349717,7 @@ func (t *Dislike) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -349698,7 +349732,7 @@ func (t *Dislike) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -350664,7 +350698,7 @@ func (t *Dislike) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -350673,7 +350707,7 @@ func (t *Dislike) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -350887,7 +350921,7 @@ func (t *actorDislikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -350955,7 +350989,7 @@ func (t *objectDislikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -351038,7 +351072,7 @@ func (t *targetDislikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -351121,7 +351155,7 @@ func (t *resultDislikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -351204,7 +351238,7 @@ func (t *originDislikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -351287,7 +351321,7 @@ func (t *instrumentDislikeIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -351341,7 +351375,7 @@ func (t *altitudeDislikeIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -351424,7 +351458,7 @@ func (t *attachmentDislikeIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -351507,7 +351541,7 @@ func (t *attributedToDislikeIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -351590,7 +351624,7 @@ func (t *audienceDislikeIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -351658,7 +351692,7 @@ func (t *contentDislikeIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -351741,7 +351775,7 @@ func (t *contextDislikeIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -351809,7 +351843,7 @@ func (t *nameDislikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -351863,7 +351897,7 @@ func (t *endTimeDislikeIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -351946,7 +351980,7 @@ func (t *generatorDislikeIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -352029,7 +352063,7 @@ func (t *iconDislikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -352112,7 +352146,7 @@ func (t *imageDislikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -352195,7 +352229,7 @@ func (t *inReplyToDislikeIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -352278,7 +352312,7 @@ func (t *locationDislikeIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -352361,7 +352395,7 @@ func (t *previewDislikeIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -352415,7 +352449,7 @@ func (t *publishedDislikeIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -352483,7 +352517,7 @@ func (t *repliesDislikeIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -352537,7 +352571,7 @@ func (t *startTimeDislikeIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -352605,7 +352639,7 @@ func (t *summaryDislikeIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -352688,7 +352722,7 @@ func (t *tagDislikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -352742,7 +352776,7 @@ func (t *updatedDislikeIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -352806,7 +352840,7 @@ func (t *urlDislikeIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlDislikeIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -352893,7 +352927,7 @@ func (t *toDislikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -352976,7 +353010,7 @@ func (t *btoDislikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -353059,7 +353093,7 @@ func (t *ccDislikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -353142,7 +353176,7 @@ func (t *bccDislikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -353196,7 +353230,7 @@ func (t *mediaTypeDislikeIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -353250,7 +353284,7 @@ func (t *durationDislikeIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -353318,7 +353352,7 @@ func (t *sourceDislikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -353386,7 +353420,7 @@ func (t *inboxDislikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -353454,7 +353488,7 @@ func (t *outboxDislikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -353537,7 +353571,7 @@ func (t *followingDislikeIntermediateType) Serialize() (i interface{}, err error return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -353620,7 +353654,7 @@ func (t *followersDislikeIntermediateType) Serialize() (i interface{}, err error return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -353703,7 +353737,7 @@ func (t *likedDislikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -353786,7 +353820,7 @@ func (t *likesDislikeIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -353840,7 +353874,7 @@ func (t *preferredUsernameDislikeIntermediateType) Serialize() (i interface{}, e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -353908,7 +353942,7 @@ func (t *endpointsDislikeIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -354014,7 +354048,7 @@ type Question struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesQuestionIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameQuestionIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -354112,20 +354146,20 @@ func (t *Question) IsOneOfIRI(index int) (ok bool) { } // GetOneOfIRI returns the value safely if IsOneOfIRI returned true for the specified index -func (t *Question) GetOneOfIRI(index int) (v url.URL) { - return *t.oneOf[index].IRI +func (t *Question) GetOneOfIRI(index int) (v *url.URL) { + return t.oneOf[index].IRI } -// AppendOneOfIRI adds to the back of oneOf a url.URL type -func (t *Question) AppendOneOfIRI(v url.URL) { - t.oneOf = append(t.oneOf, &oneOfQuestionIntermediateType{IRI: &v}) +// AppendOneOfIRI adds to the back of oneOf a *url.URL type +func (t *Question) AppendOneOfIRI(v *url.URL) { + t.oneOf = append(t.oneOf, &oneOfQuestionIntermediateType{IRI: v}) } -// PrependOneOfIRI adds to the front of oneOf a url.URL type -func (t *Question) PrependOneOfIRI(v url.URL) { - t.oneOf = append([]*oneOfQuestionIntermediateType{&oneOfQuestionIntermediateType{IRI: &v}}, t.oneOf...) +// PrependOneOfIRI adds to the front of oneOf a *url.URL type +func (t *Question) PrependOneOfIRI(v *url.URL) { + t.oneOf = append([]*oneOfQuestionIntermediateType{&oneOfQuestionIntermediateType{IRI: v}}, t.oneOf...) } @@ -354237,20 +354271,20 @@ func (t *Question) IsAnyOfIRI(index int) (ok bool) { } // GetAnyOfIRI returns the value safely if IsAnyOfIRI returned true for the specified index -func (t *Question) GetAnyOfIRI(index int) (v url.URL) { - return *t.anyOf[index].IRI +func (t *Question) GetAnyOfIRI(index int) (v *url.URL) { + return t.anyOf[index].IRI } -// AppendAnyOfIRI adds to the back of anyOf a url.URL type -func (t *Question) AppendAnyOfIRI(v url.URL) { - t.anyOf = append(t.anyOf, &anyOfQuestionIntermediateType{IRI: &v}) +// AppendAnyOfIRI adds to the back of anyOf a *url.URL type +func (t *Question) AppendAnyOfIRI(v *url.URL) { + t.anyOf = append(t.anyOf, &anyOfQuestionIntermediateType{IRI: v}) } -// PrependAnyOfIRI adds to the front of anyOf a url.URL type -func (t *Question) PrependAnyOfIRI(v url.URL) { - t.anyOf = append([]*anyOfQuestionIntermediateType{&anyOfQuestionIntermediateType{IRI: &v}}, t.anyOf...) +// PrependAnyOfIRI adds to the front of anyOf a *url.URL type +func (t *Question) PrependAnyOfIRI(v *url.URL) { + t.anyOf = append([]*anyOfQuestionIntermediateType{&anyOfQuestionIntermediateType{IRI: v}}, t.anyOf...) } @@ -354426,20 +354460,20 @@ func (t *Question) IsClosedIRI(index int) (ok bool) { } // GetClosedIRI returns the value safely if IsClosedIRI returned true for the specified index -func (t *Question) GetClosedIRI(index int) (v url.URL) { - return *t.closed[index].IRI +func (t *Question) GetClosedIRI(index int) (v *url.URL) { + return t.closed[index].IRI } -// AppendClosedIRI adds to the back of closed a url.URL type -func (t *Question) AppendClosedIRI(v url.URL) { - t.closed = append(t.closed, &closedQuestionIntermediateType{IRI: &v}) +// AppendClosedIRI adds to the back of closed a *url.URL type +func (t *Question) AppendClosedIRI(v *url.URL) { + t.closed = append(t.closed, &closedQuestionIntermediateType{IRI: v}) } -// PrependClosedIRI adds to the front of closed a url.URL type -func (t *Question) PrependClosedIRI(v url.URL) { - t.closed = append([]*closedQuestionIntermediateType{&closedQuestionIntermediateType{IRI: &v}}, t.closed...) +// PrependClosedIRI adds to the front of closed a *url.URL type +func (t *Question) PrependClosedIRI(v *url.URL) { + t.closed = append([]*closedQuestionIntermediateType{&closedQuestionIntermediateType{IRI: v}}, t.closed...) } @@ -354551,20 +354585,20 @@ func (t *Question) IsActorIRI(index int) (ok bool) { } // GetActorIRI returns the value safely if IsActorIRI returned true for the specified index -func (t *Question) GetActorIRI(index int) (v url.URL) { - return *t.actor[index].IRI +func (t *Question) GetActorIRI(index int) (v *url.URL) { + return t.actor[index].IRI } -// AppendActorIRI adds to the back of actor a url.URL type -func (t *Question) AppendActorIRI(v url.URL) { - t.actor = append(t.actor, &actorQuestionIntermediateType{IRI: &v}) +// AppendActorIRI adds to the back of actor a *url.URL type +func (t *Question) AppendActorIRI(v *url.URL) { + t.actor = append(t.actor, &actorQuestionIntermediateType{IRI: v}) } -// PrependActorIRI adds to the front of actor a url.URL type -func (t *Question) PrependActorIRI(v url.URL) { - t.actor = append([]*actorQuestionIntermediateType{&actorQuestionIntermediateType{IRI: &v}}, t.actor...) +// PrependActorIRI adds to the front of actor a *url.URL type +func (t *Question) PrependActorIRI(v *url.URL) { + t.actor = append([]*actorQuestionIntermediateType{&actorQuestionIntermediateType{IRI: v}}, t.actor...) } @@ -354676,20 +354710,20 @@ func (t *Question) IsTargetIRI(index int) (ok bool) { } // GetTargetIRI returns the value safely if IsTargetIRI returned true for the specified index -func (t *Question) GetTargetIRI(index int) (v url.URL) { - return *t.target[index].IRI +func (t *Question) GetTargetIRI(index int) (v *url.URL) { + return t.target[index].IRI } -// AppendTargetIRI adds to the back of target a url.URL type -func (t *Question) AppendTargetIRI(v url.URL) { - t.target = append(t.target, &targetQuestionIntermediateType{IRI: &v}) +// AppendTargetIRI adds to the back of target a *url.URL type +func (t *Question) AppendTargetIRI(v *url.URL) { + t.target = append(t.target, &targetQuestionIntermediateType{IRI: v}) } -// PrependTargetIRI adds to the front of target a url.URL type -func (t *Question) PrependTargetIRI(v url.URL) { - t.target = append([]*targetQuestionIntermediateType{&targetQuestionIntermediateType{IRI: &v}}, t.target...) +// PrependTargetIRI adds to the front of target a *url.URL type +func (t *Question) PrependTargetIRI(v *url.URL) { + t.target = append([]*targetQuestionIntermediateType{&targetQuestionIntermediateType{IRI: v}}, t.target...) } @@ -354801,20 +354835,20 @@ func (t *Question) IsResultIRI(index int) (ok bool) { } // GetResultIRI returns the value safely if IsResultIRI returned true for the specified index -func (t *Question) GetResultIRI(index int) (v url.URL) { - return *t.result[index].IRI +func (t *Question) GetResultIRI(index int) (v *url.URL) { + return t.result[index].IRI } -// AppendResultIRI adds to the back of result a url.URL type -func (t *Question) AppendResultIRI(v url.URL) { - t.result = append(t.result, &resultQuestionIntermediateType{IRI: &v}) +// AppendResultIRI adds to the back of result a *url.URL type +func (t *Question) AppendResultIRI(v *url.URL) { + t.result = append(t.result, &resultQuestionIntermediateType{IRI: v}) } -// PrependResultIRI adds to the front of result a url.URL type -func (t *Question) PrependResultIRI(v url.URL) { - t.result = append([]*resultQuestionIntermediateType{&resultQuestionIntermediateType{IRI: &v}}, t.result...) +// PrependResultIRI adds to the front of result a *url.URL type +func (t *Question) PrependResultIRI(v *url.URL) { + t.result = append([]*resultQuestionIntermediateType{&resultQuestionIntermediateType{IRI: v}}, t.result...) } @@ -354926,20 +354960,20 @@ func (t *Question) IsOriginIRI(index int) (ok bool) { } // GetOriginIRI returns the value safely if IsOriginIRI returned true for the specified index -func (t *Question) GetOriginIRI(index int) (v url.URL) { - return *t.origin[index].IRI +func (t *Question) GetOriginIRI(index int) (v *url.URL) { + return t.origin[index].IRI } -// AppendOriginIRI adds to the back of origin a url.URL type -func (t *Question) AppendOriginIRI(v url.URL) { - t.origin = append(t.origin, &originQuestionIntermediateType{IRI: &v}) +// AppendOriginIRI adds to the back of origin a *url.URL type +func (t *Question) AppendOriginIRI(v *url.URL) { + t.origin = append(t.origin, &originQuestionIntermediateType{IRI: v}) } -// PrependOriginIRI adds to the front of origin a url.URL type -func (t *Question) PrependOriginIRI(v url.URL) { - t.origin = append([]*originQuestionIntermediateType{&originQuestionIntermediateType{IRI: &v}}, t.origin...) +// PrependOriginIRI adds to the front of origin a *url.URL type +func (t *Question) PrependOriginIRI(v *url.URL) { + t.origin = append([]*originQuestionIntermediateType{&originQuestionIntermediateType{IRI: v}}, t.origin...) } @@ -355051,20 +355085,20 @@ func (t *Question) IsInstrumentIRI(index int) (ok bool) { } // GetInstrumentIRI returns the value safely if IsInstrumentIRI returned true for the specified index -func (t *Question) GetInstrumentIRI(index int) (v url.URL) { - return *t.instrument[index].IRI +func (t *Question) GetInstrumentIRI(index int) (v *url.URL) { + return t.instrument[index].IRI } -// AppendInstrumentIRI adds to the back of instrument a url.URL type -func (t *Question) AppendInstrumentIRI(v url.URL) { - t.instrument = append(t.instrument, &instrumentQuestionIntermediateType{IRI: &v}) +// AppendInstrumentIRI adds to the back of instrument a *url.URL type +func (t *Question) AppendInstrumentIRI(v *url.URL) { + t.instrument = append(t.instrument, &instrumentQuestionIntermediateType{IRI: v}) } -// PrependInstrumentIRI adds to the front of instrument a url.URL type -func (t *Question) PrependInstrumentIRI(v url.URL) { - t.instrument = append([]*instrumentQuestionIntermediateType{&instrumentQuestionIntermediateType{IRI: &v}}, t.instrument...) +// PrependInstrumentIRI adds to the front of instrument a *url.URL type +func (t *Question) PrependInstrumentIRI(v *url.URL) { + t.instrument = append([]*instrumentQuestionIntermediateType{&instrumentQuestionIntermediateType{IRI: v}}, t.instrument...) } @@ -355124,14 +355158,14 @@ func (t *Question) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Question) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Question) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Question) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeQuestionIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Question) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeQuestionIntermediateType{IRI: v} } @@ -355235,20 +355269,20 @@ func (t *Question) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Question) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Question) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Question) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentQuestionIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Question) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentQuestionIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Question) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentQuestionIntermediateType{&attachmentQuestionIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Question) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentQuestionIntermediateType{&attachmentQuestionIntermediateType{IRI: v}}, t.attachment...) } @@ -355360,20 +355394,20 @@ func (t *Question) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Question) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Question) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Question) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToQuestionIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Question) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToQuestionIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Question) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToQuestionIntermediateType{&attributedToQuestionIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Question) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToQuestionIntermediateType{&attributedToQuestionIntermediateType{IRI: v}}, t.attributedTo...) } @@ -355485,20 +355519,20 @@ func (t *Question) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Question) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Question) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Question) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceQuestionIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Question) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceQuestionIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Question) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceQuestionIntermediateType{&audienceQuestionIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Question) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceQuestionIntermediateType{&audienceQuestionIntermediateType{IRI: v}}, t.audience...) } @@ -355610,20 +355644,20 @@ func (t *Question) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Question) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Question) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Question) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentQuestionIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Question) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentQuestionIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Question) PrependContentIRI(v url.URL) { - t.content = append([]*contentQuestionIntermediateType{&contentQuestionIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Question) PrependContentIRI(v *url.URL) { + t.content = append([]*contentQuestionIntermediateType{&contentQuestionIntermediateType{IRI: v}}, t.content...) } @@ -355770,20 +355804,20 @@ func (t *Question) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Question) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Question) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Question) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextQuestionIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Question) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextQuestionIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Question) PrependContextIRI(v url.URL) { - t.context = append([]*contextQuestionIntermediateType{&contextQuestionIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Question) PrependContextIRI(v *url.URL) { + t.context = append([]*contextQuestionIntermediateType{&contextQuestionIntermediateType{IRI: v}}, t.context...) } @@ -355895,20 +355929,20 @@ func (t *Question) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Question) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Question) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Question) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameQuestionIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Question) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameQuestionIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Question) PrependNameIRI(v url.URL) { - t.name = append([]*nameQuestionIntermediateType{&nameQuestionIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Question) PrependNameIRI(v *url.URL) { + t.name = append([]*nameQuestionIntermediateType{&nameQuestionIntermediateType{IRI: v}}, t.name...) } @@ -356003,14 +356037,14 @@ func (t *Question) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Question) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Question) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Question) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeQuestionIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Question) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeQuestionIntermediateType{IRI: v} } @@ -356114,20 +356148,20 @@ func (t *Question) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Question) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Question) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Question) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorQuestionIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Question) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorQuestionIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Question) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorQuestionIntermediateType{&generatorQuestionIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Question) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorQuestionIntermediateType{&generatorQuestionIntermediateType{IRI: v}}, t.generator...) } @@ -356239,20 +356273,20 @@ func (t *Question) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Question) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Question) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Question) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconQuestionIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Question) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconQuestionIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Question) PrependIconIRI(v url.URL) { - t.icon = append([]*iconQuestionIntermediateType{&iconQuestionIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Question) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconQuestionIntermediateType{&iconQuestionIntermediateType{IRI: v}}, t.icon...) } @@ -356294,14 +356328,14 @@ func (t *Question) HasId() (ok bool) { } // GetId returns the value for id -func (t *Question) GetId() (v url.URL) { - return *t.id +func (t *Question) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Question) SetId(v url.URL) { - t.id = &v +func (t *Question) SetId(v *url.URL) { + t.id = v } @@ -356403,20 +356437,20 @@ func (t *Question) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Question) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Question) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Question) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageQuestionIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Question) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageQuestionIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Question) PrependImageIRI(v url.URL) { - t.image = append([]*imageQuestionIntermediateType{&imageQuestionIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Question) PrependImageIRI(v *url.URL) { + t.image = append([]*imageQuestionIntermediateType{&imageQuestionIntermediateType{IRI: v}}, t.image...) } @@ -356528,20 +356562,20 @@ func (t *Question) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Question) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Question) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Question) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToQuestionIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Question) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToQuestionIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Question) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToQuestionIntermediateType{&inReplyToQuestionIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Question) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToQuestionIntermediateType{&inReplyToQuestionIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -356653,20 +356687,20 @@ func (t *Question) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Question) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Question) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Question) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationQuestionIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Question) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationQuestionIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Question) PrependLocationIRI(v url.URL) { - t.location = append([]*locationQuestionIntermediateType{&locationQuestionIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Question) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationQuestionIntermediateType{&locationQuestionIntermediateType{IRI: v}}, t.location...) } @@ -356778,20 +356812,20 @@ func (t *Question) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Question) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Question) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Question) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewQuestionIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Question) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewQuestionIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Question) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewQuestionIntermediateType{&previewQuestionIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Question) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewQuestionIntermediateType{&previewQuestionIntermediateType{IRI: v}}, t.preview...) } @@ -356851,14 +356885,14 @@ func (t *Question) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Question) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Question) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Question) SetPublishedIRI(v url.URL) { - t.published = &publishedQuestionIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Question) SetPublishedIRI(v *url.URL) { + t.published = &publishedQuestionIntermediateType{IRI: v} } @@ -356910,14 +356944,14 @@ func (t *Question) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Question) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Question) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Question) SetRepliesIRI(v url.URL) { - t.replies = &repliesQuestionIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Question) SetRepliesIRI(v *url.URL) { + t.replies = &repliesQuestionIntermediateType{IRI: v} } @@ -356969,14 +357003,14 @@ func (t *Question) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Question) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Question) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Question) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeQuestionIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Question) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeQuestionIntermediateType{IRI: v} } @@ -357080,20 +357114,20 @@ func (t *Question) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Question) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Question) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Question) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryQuestionIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Question) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryQuestionIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Question) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryQuestionIntermediateType{&summaryQuestionIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Question) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryQuestionIntermediateType{&summaryQuestionIntermediateType{IRI: v}}, t.summary...) } @@ -357240,20 +357274,20 @@ func (t *Question) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Question) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Question) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Question) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagQuestionIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Question) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagQuestionIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Question) PrependTagIRI(v url.URL) { - t.tag = append([]*tagQuestionIntermediateType{&tagQuestionIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Question) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagQuestionIntermediateType{&tagQuestionIntermediateType{IRI: v}}, t.tag...) } @@ -357345,14 +357379,14 @@ func (t *Question) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Question) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Question) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Question) SetUpdatedIRI(v url.URL) { - t.updated = &updatedQuestionIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Question) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedQuestionIntermediateType{IRI: v} } @@ -357392,20 +357426,20 @@ func (t *Question) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Question) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Question) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Question) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlQuestionIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Question) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlQuestionIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Question) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlQuestionIntermediateType{&urlQuestionIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Question) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlQuestionIntermediateType{&urlQuestionIntermediateType{anyURI: v}}, t.url...) } @@ -357549,20 +357583,20 @@ func (t *Question) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Question) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Question) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Question) AppendToIRI(v url.URL) { - t.to = append(t.to, &toQuestionIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Question) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toQuestionIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Question) PrependToIRI(v url.URL) { - t.to = append([]*toQuestionIntermediateType{&toQuestionIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Question) PrependToIRI(v *url.URL) { + t.to = append([]*toQuestionIntermediateType{&toQuestionIntermediateType{IRI: v}}, t.to...) } @@ -357674,20 +357708,20 @@ func (t *Question) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Question) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Question) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Question) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoQuestionIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Question) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoQuestionIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Question) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoQuestionIntermediateType{&btoQuestionIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Question) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoQuestionIntermediateType{&btoQuestionIntermediateType{IRI: v}}, t.bto...) } @@ -357799,20 +357833,20 @@ func (t *Question) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Question) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Question) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Question) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccQuestionIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Question) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccQuestionIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Question) PrependCcIRI(v url.URL) { - t.cc = append([]*ccQuestionIntermediateType{&ccQuestionIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Question) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccQuestionIntermediateType{&ccQuestionIntermediateType{IRI: v}}, t.cc...) } @@ -357924,20 +357958,20 @@ func (t *Question) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Question) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Question) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Question) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccQuestionIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Question) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccQuestionIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Question) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccQuestionIntermediateType{&bccQuestionIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Question) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccQuestionIntermediateType{&bccQuestionIntermediateType{IRI: v}}, t.bcc...) } @@ -357997,14 +358031,14 @@ func (t *Question) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Question) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Question) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Question) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeQuestionIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Question) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeQuestionIntermediateType{IRI: v} } @@ -358056,14 +358090,14 @@ func (t *Question) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Question) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Question) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Question) SetDurationIRI(v url.URL) { - t.duration = &durationQuestionIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Question) SetDurationIRI(v *url.URL) { + t.duration = &durationQuestionIntermediateType{IRI: v} } @@ -358115,14 +358149,14 @@ func (t *Question) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Question) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Question) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Question) SetSourceIRI(v url.URL) { - t.source = &sourceQuestionIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Question) SetSourceIRI(v *url.URL) { + t.source = &sourceQuestionIntermediateType{IRI: v} } @@ -358174,14 +358208,14 @@ func (t *Question) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Question) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Question) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Question) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxQuestionIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Question) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxQuestionIntermediateType{anyURI: v} } @@ -358233,14 +358267,14 @@ func (t *Question) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Question) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Question) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Question) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxQuestionIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Question) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxQuestionIntermediateType{anyURI: v} } @@ -358310,14 +358344,14 @@ func (t *Question) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Question) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Question) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Question) SetFollowingAnyURI(v url.URL) { - t.following = &followingQuestionIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Question) SetFollowingAnyURI(v *url.URL) { + t.following = &followingQuestionIntermediateType{anyURI: v} } @@ -358387,14 +358421,14 @@ func (t *Question) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Question) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Question) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Question) SetFollowersAnyURI(v url.URL) { - t.followers = &followersQuestionIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Question) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersQuestionIntermediateType{anyURI: v} } @@ -358464,14 +358498,14 @@ func (t *Question) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Question) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Question) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Question) SetLikedAnyURI(v url.URL) { - t.liked = &likedQuestionIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Question) SetLikedAnyURI(v *url.URL) { + t.liked = &likedQuestionIntermediateType{anyURI: v} } @@ -358541,14 +358575,14 @@ func (t *Question) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Question) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Question) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Question) SetLikesAnyURI(v url.URL) { - t.likes = &likesQuestionIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Question) SetLikesAnyURI(v *url.URL) { + t.likes = &likesQuestionIntermediateType{anyURI: v} } @@ -358582,26 +358616,27 @@ func (t *Question) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Question) GetStreams(index int) (v url.URL) { +func (t *Question) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Question) AppendStreams(v url.URL) { +func (t *Question) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Question) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Question) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Question) 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] } @@ -358652,14 +358687,14 @@ func (t *Question) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Question) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Question) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Question) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameQuestionIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Question) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameQuestionIntermediateType{IRI: v} } @@ -358746,14 +358781,14 @@ func (t *Question) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Question) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Question) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Question) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsQuestionIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Question) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsQuestionIntermediateType{IRI: v} } @@ -358787,14 +358822,14 @@ func (t *Question) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Question) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Question) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Question) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Question) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -358826,14 +358861,14 @@ func (t *Question) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Question) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Question) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Question) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Question) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -358865,14 +358900,14 @@ func (t *Question) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Question) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Question) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Question) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Question) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -358904,14 +358939,14 @@ func (t *Question) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Question) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Question) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Question) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Question) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -358943,14 +358978,14 @@ func (t *Question) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Question) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Question) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Question) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Question) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -358982,14 +359017,14 @@ func (t *Question) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Question) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Question) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Question) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Question) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -359269,7 +359304,7 @@ func (t *Question) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -359575,7 +359610,7 @@ func (t *Question) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -359590,7 +359625,7 @@ func (t *Question) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -359605,7 +359640,7 @@ func (t *Question) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -359620,7 +359655,7 @@ func (t *Question) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -359635,7 +359670,7 @@ func (t *Question) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -359650,7 +359685,7 @@ func (t *Question) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -360672,7 +360707,7 @@ func (t *Question) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -360681,7 +360716,7 @@ func (t *Question) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -360895,7 +360930,7 @@ func (t *oneOfQuestionIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -360978,7 +361013,7 @@ func (t *anyOfQuestionIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -361089,7 +361124,7 @@ func (t *closedQuestionIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -361172,7 +361207,7 @@ func (t *actorQuestionIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -361255,7 +361290,7 @@ func (t *targetQuestionIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -361338,7 +361373,7 @@ func (t *resultQuestionIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -361421,7 +361456,7 @@ func (t *originQuestionIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -361504,7 +361539,7 @@ func (t *instrumentQuestionIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -361558,7 +361593,7 @@ func (t *altitudeQuestionIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -361641,7 +361676,7 @@ func (t *attachmentQuestionIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -361724,7 +361759,7 @@ func (t *attributedToQuestionIntermediateType) Serialize() (i interface{}, err e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -361807,7 +361842,7 @@ func (t *audienceQuestionIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -361875,7 +361910,7 @@ func (t *contentQuestionIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -361958,7 +361993,7 @@ func (t *contextQuestionIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -362026,7 +362061,7 @@ func (t *nameQuestionIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -362080,7 +362115,7 @@ func (t *endTimeQuestionIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -362163,7 +362198,7 @@ func (t *generatorQuestionIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -362246,7 +362281,7 @@ func (t *iconQuestionIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -362329,7 +362364,7 @@ func (t *imageQuestionIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -362412,7 +362447,7 @@ func (t *inReplyToQuestionIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -362495,7 +362530,7 @@ func (t *locationQuestionIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -362578,7 +362613,7 @@ func (t *previewQuestionIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -362632,7 +362667,7 @@ func (t *publishedQuestionIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -362700,7 +362735,7 @@ func (t *repliesQuestionIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -362754,7 +362789,7 @@ func (t *startTimeQuestionIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -362822,7 +362857,7 @@ func (t *summaryQuestionIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -362905,7 +362940,7 @@ func (t *tagQuestionIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -362959,7 +362994,7 @@ func (t *updatedQuestionIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -363023,7 +363058,7 @@ func (t *urlQuestionIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlQuestionIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -363110,7 +363145,7 @@ func (t *toQuestionIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -363193,7 +363228,7 @@ func (t *btoQuestionIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -363276,7 +363311,7 @@ func (t *ccQuestionIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -363359,7 +363394,7 @@ func (t *bccQuestionIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -363413,7 +363448,7 @@ func (t *mediaTypeQuestionIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -363467,7 +363502,7 @@ func (t *durationQuestionIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -363535,7 +363570,7 @@ func (t *sourceQuestionIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -363603,7 +363638,7 @@ func (t *inboxQuestionIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -363671,7 +363706,7 @@ func (t *outboxQuestionIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -363754,7 +363789,7 @@ func (t *followingQuestionIntermediateType) Serialize() (i interface{}, err erro return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -363837,7 +363872,7 @@ func (t *followersQuestionIntermediateType) Serialize() (i interface{}, err erro return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -363920,7 +363955,7 @@ func (t *likedQuestionIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -364003,7 +364038,7 @@ func (t *likesQuestionIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -364057,7 +364092,7 @@ func (t *preferredUsernameQuestionIntermediateType) Serialize() (i interface{}, return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -364125,7 +364160,7 @@ func (t *endpointsQuestionIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -364215,7 +364250,7 @@ type Application struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesApplicationIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameApplicationIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -364261,14 +364296,14 @@ func (t *Application) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Application) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Application) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Application) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeApplicationIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Application) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeApplicationIntermediateType{IRI: v} } @@ -364372,20 +364407,20 @@ func (t *Application) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Application) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Application) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Application) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentApplicationIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Application) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentApplicationIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Application) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentApplicationIntermediateType{&attachmentApplicationIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Application) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentApplicationIntermediateType{&attachmentApplicationIntermediateType{IRI: v}}, t.attachment...) } @@ -364497,20 +364532,20 @@ func (t *Application) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Application) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Application) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Application) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToApplicationIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Application) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToApplicationIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Application) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToApplicationIntermediateType{&attributedToApplicationIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Application) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToApplicationIntermediateType{&attributedToApplicationIntermediateType{IRI: v}}, t.attributedTo...) } @@ -364622,20 +364657,20 @@ func (t *Application) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Application) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Application) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Application) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceApplicationIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Application) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceApplicationIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Application) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceApplicationIntermediateType{&audienceApplicationIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Application) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceApplicationIntermediateType{&audienceApplicationIntermediateType{IRI: v}}, t.audience...) } @@ -364747,20 +364782,20 @@ func (t *Application) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Application) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Application) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Application) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentApplicationIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Application) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentApplicationIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Application) PrependContentIRI(v url.URL) { - t.content = append([]*contentApplicationIntermediateType{&contentApplicationIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Application) PrependContentIRI(v *url.URL) { + t.content = append([]*contentApplicationIntermediateType{&contentApplicationIntermediateType{IRI: v}}, t.content...) } @@ -364907,20 +364942,20 @@ func (t *Application) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Application) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Application) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Application) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextApplicationIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Application) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextApplicationIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Application) PrependContextIRI(v url.URL) { - t.context = append([]*contextApplicationIntermediateType{&contextApplicationIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Application) PrependContextIRI(v *url.URL) { + t.context = append([]*contextApplicationIntermediateType{&contextApplicationIntermediateType{IRI: v}}, t.context...) } @@ -365032,20 +365067,20 @@ func (t *Application) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Application) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Application) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Application) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameApplicationIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Application) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameApplicationIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Application) PrependNameIRI(v url.URL) { - t.name = append([]*nameApplicationIntermediateType{&nameApplicationIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Application) PrependNameIRI(v *url.URL) { + t.name = append([]*nameApplicationIntermediateType{&nameApplicationIntermediateType{IRI: v}}, t.name...) } @@ -365140,14 +365175,14 @@ func (t *Application) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Application) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Application) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Application) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeApplicationIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Application) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeApplicationIntermediateType{IRI: v} } @@ -365251,20 +365286,20 @@ func (t *Application) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Application) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Application) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Application) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorApplicationIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Application) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorApplicationIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Application) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorApplicationIntermediateType{&generatorApplicationIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Application) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorApplicationIntermediateType{&generatorApplicationIntermediateType{IRI: v}}, t.generator...) } @@ -365376,20 +365411,20 @@ func (t *Application) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Application) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Application) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Application) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconApplicationIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Application) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconApplicationIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Application) PrependIconIRI(v url.URL) { - t.icon = append([]*iconApplicationIntermediateType{&iconApplicationIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Application) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconApplicationIntermediateType{&iconApplicationIntermediateType{IRI: v}}, t.icon...) } @@ -365431,14 +365466,14 @@ func (t *Application) HasId() (ok bool) { } // GetId returns the value for id -func (t *Application) GetId() (v url.URL) { - return *t.id +func (t *Application) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Application) SetId(v url.URL) { - t.id = &v +func (t *Application) SetId(v *url.URL) { + t.id = v } @@ -365540,20 +365575,20 @@ func (t *Application) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Application) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Application) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Application) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageApplicationIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Application) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageApplicationIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Application) PrependImageIRI(v url.URL) { - t.image = append([]*imageApplicationIntermediateType{&imageApplicationIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Application) PrependImageIRI(v *url.URL) { + t.image = append([]*imageApplicationIntermediateType{&imageApplicationIntermediateType{IRI: v}}, t.image...) } @@ -365665,20 +365700,20 @@ func (t *Application) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Application) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Application) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Application) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToApplicationIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Application) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToApplicationIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Application) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToApplicationIntermediateType{&inReplyToApplicationIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Application) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToApplicationIntermediateType{&inReplyToApplicationIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -365790,20 +365825,20 @@ func (t *Application) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Application) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Application) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Application) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationApplicationIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Application) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationApplicationIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Application) PrependLocationIRI(v url.URL) { - t.location = append([]*locationApplicationIntermediateType{&locationApplicationIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Application) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationApplicationIntermediateType{&locationApplicationIntermediateType{IRI: v}}, t.location...) } @@ -365915,20 +365950,20 @@ func (t *Application) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Application) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Application) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Application) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewApplicationIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Application) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewApplicationIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Application) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewApplicationIntermediateType{&previewApplicationIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Application) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewApplicationIntermediateType{&previewApplicationIntermediateType{IRI: v}}, t.preview...) } @@ -365988,14 +366023,14 @@ func (t *Application) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Application) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Application) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Application) SetPublishedIRI(v url.URL) { - t.published = &publishedApplicationIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Application) SetPublishedIRI(v *url.URL) { + t.published = &publishedApplicationIntermediateType{IRI: v} } @@ -366047,14 +366082,14 @@ func (t *Application) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Application) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Application) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Application) SetRepliesIRI(v url.URL) { - t.replies = &repliesApplicationIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Application) SetRepliesIRI(v *url.URL) { + t.replies = &repliesApplicationIntermediateType{IRI: v} } @@ -366106,14 +366141,14 @@ func (t *Application) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Application) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Application) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Application) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeApplicationIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Application) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeApplicationIntermediateType{IRI: v} } @@ -366217,20 +366252,20 @@ func (t *Application) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Application) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Application) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Application) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryApplicationIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Application) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryApplicationIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Application) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryApplicationIntermediateType{&summaryApplicationIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Application) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryApplicationIntermediateType{&summaryApplicationIntermediateType{IRI: v}}, t.summary...) } @@ -366377,20 +366412,20 @@ func (t *Application) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Application) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Application) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Application) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagApplicationIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Application) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagApplicationIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Application) PrependTagIRI(v url.URL) { - t.tag = append([]*tagApplicationIntermediateType{&tagApplicationIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Application) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagApplicationIntermediateType{&tagApplicationIntermediateType{IRI: v}}, t.tag...) } @@ -366482,14 +366517,14 @@ func (t *Application) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Application) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Application) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Application) SetUpdatedIRI(v url.URL) { - t.updated = &updatedApplicationIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Application) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedApplicationIntermediateType{IRI: v} } @@ -366529,20 +366564,20 @@ func (t *Application) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Application) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Application) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Application) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlApplicationIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Application) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlApplicationIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Application) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlApplicationIntermediateType{&urlApplicationIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Application) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlApplicationIntermediateType{&urlApplicationIntermediateType{anyURI: v}}, t.url...) } @@ -366686,20 +366721,20 @@ func (t *Application) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Application) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Application) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Application) AppendToIRI(v url.URL) { - t.to = append(t.to, &toApplicationIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Application) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toApplicationIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Application) PrependToIRI(v url.URL) { - t.to = append([]*toApplicationIntermediateType{&toApplicationIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Application) PrependToIRI(v *url.URL) { + t.to = append([]*toApplicationIntermediateType{&toApplicationIntermediateType{IRI: v}}, t.to...) } @@ -366811,20 +366846,20 @@ func (t *Application) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Application) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Application) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Application) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoApplicationIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Application) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoApplicationIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Application) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoApplicationIntermediateType{&btoApplicationIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Application) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoApplicationIntermediateType{&btoApplicationIntermediateType{IRI: v}}, t.bto...) } @@ -366936,20 +366971,20 @@ func (t *Application) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Application) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Application) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Application) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccApplicationIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Application) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccApplicationIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Application) PrependCcIRI(v url.URL) { - t.cc = append([]*ccApplicationIntermediateType{&ccApplicationIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Application) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccApplicationIntermediateType{&ccApplicationIntermediateType{IRI: v}}, t.cc...) } @@ -367061,20 +367096,20 @@ func (t *Application) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Application) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Application) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Application) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccApplicationIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Application) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccApplicationIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Application) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccApplicationIntermediateType{&bccApplicationIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Application) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccApplicationIntermediateType{&bccApplicationIntermediateType{IRI: v}}, t.bcc...) } @@ -367134,14 +367169,14 @@ func (t *Application) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Application) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Application) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Application) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeApplicationIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Application) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeApplicationIntermediateType{IRI: v} } @@ -367193,14 +367228,14 @@ func (t *Application) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Application) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Application) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Application) SetDurationIRI(v url.URL) { - t.duration = &durationApplicationIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Application) SetDurationIRI(v *url.URL) { + t.duration = &durationApplicationIntermediateType{IRI: v} } @@ -367252,14 +367287,14 @@ func (t *Application) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Application) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Application) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Application) SetSourceIRI(v url.URL) { - t.source = &sourceApplicationIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Application) SetSourceIRI(v *url.URL) { + t.source = &sourceApplicationIntermediateType{IRI: v} } @@ -367311,14 +367346,14 @@ func (t *Application) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Application) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Application) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Application) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxApplicationIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Application) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxApplicationIntermediateType{anyURI: v} } @@ -367370,14 +367405,14 @@ func (t *Application) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Application) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Application) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Application) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxApplicationIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Application) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxApplicationIntermediateType{anyURI: v} } @@ -367447,14 +367482,14 @@ func (t *Application) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Application) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Application) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Application) SetFollowingAnyURI(v url.URL) { - t.following = &followingApplicationIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Application) SetFollowingAnyURI(v *url.URL) { + t.following = &followingApplicationIntermediateType{anyURI: v} } @@ -367524,14 +367559,14 @@ func (t *Application) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Application) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Application) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Application) SetFollowersAnyURI(v url.URL) { - t.followers = &followersApplicationIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Application) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersApplicationIntermediateType{anyURI: v} } @@ -367601,14 +367636,14 @@ func (t *Application) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Application) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Application) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Application) SetLikedAnyURI(v url.URL) { - t.liked = &likedApplicationIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Application) SetLikedAnyURI(v *url.URL) { + t.liked = &likedApplicationIntermediateType{anyURI: v} } @@ -367678,14 +367713,14 @@ func (t *Application) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Application) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Application) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Application) SetLikesAnyURI(v url.URL) { - t.likes = &likesApplicationIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Application) SetLikesAnyURI(v *url.URL) { + t.likes = &likesApplicationIntermediateType{anyURI: v} } @@ -367719,26 +367754,27 @@ func (t *Application) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Application) GetStreams(index int) (v url.URL) { +func (t *Application) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Application) AppendStreams(v url.URL) { +func (t *Application) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Application) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Application) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Application) 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] } @@ -367789,14 +367825,14 @@ func (t *Application) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Application) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Application) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Application) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameApplicationIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Application) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameApplicationIntermediateType{IRI: v} } @@ -367883,14 +367919,14 @@ func (t *Application) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Application) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Application) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Application) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsApplicationIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Application) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsApplicationIntermediateType{IRI: v} } @@ -367924,14 +367960,14 @@ func (t *Application) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Application) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Application) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Application) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Application) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -367963,14 +367999,14 @@ func (t *Application) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Application) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Application) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Application) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Application) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -368002,14 +368038,14 @@ func (t *Application) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Application) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Application) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Application) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Application) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -368041,14 +368077,14 @@ func (t *Application) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Application) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Application) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Application) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Application) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -368080,14 +368116,14 @@ func (t *Application) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Application) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Application) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Application) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Application) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -368119,14 +368155,14 @@ func (t *Application) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Application) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Application) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Application) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Application) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -368318,7 +368354,7 @@ func (t *Application) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -368624,7 +368660,7 @@ func (t *Application) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -368639,7 +368675,7 @@ func (t *Application) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -368654,7 +368690,7 @@ func (t *Application) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -368669,7 +368705,7 @@ func (t *Application) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -368684,7 +368720,7 @@ func (t *Application) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -368699,7 +368735,7 @@ func (t *Application) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -369497,7 +369533,7 @@ func (t *Application) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -369506,7 +369542,7 @@ func (t *Application) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -369691,7 +369727,7 @@ func (t *altitudeApplicationIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -369774,7 +369810,7 @@ func (t *attachmentApplicationIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -369857,7 +369893,7 @@ func (t *attributedToApplicationIntermediateType) Serialize() (i interface{}, er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -369940,7 +369976,7 @@ func (t *audienceApplicationIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -370008,7 +370044,7 @@ func (t *contentApplicationIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -370091,7 +370127,7 @@ func (t *contextApplicationIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -370159,7 +370195,7 @@ func (t *nameApplicationIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -370213,7 +370249,7 @@ func (t *endTimeApplicationIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -370296,7 +370332,7 @@ func (t *generatorApplicationIntermediateType) Serialize() (i interface{}, err e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -370379,7 +370415,7 @@ func (t *iconApplicationIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -370462,7 +370498,7 @@ func (t *imageApplicationIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -370545,7 +370581,7 @@ func (t *inReplyToApplicationIntermediateType) Serialize() (i interface{}, err e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -370628,7 +370664,7 @@ func (t *locationApplicationIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -370711,7 +370747,7 @@ func (t *previewApplicationIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -370765,7 +370801,7 @@ func (t *publishedApplicationIntermediateType) Serialize() (i interface{}, err e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -370833,7 +370869,7 @@ func (t *repliesApplicationIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -370887,7 +370923,7 @@ func (t *startTimeApplicationIntermediateType) Serialize() (i interface{}, err e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -370955,7 +370991,7 @@ func (t *summaryApplicationIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -371038,7 +371074,7 @@ func (t *tagApplicationIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -371092,7 +371128,7 @@ func (t *updatedApplicationIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -371156,7 +371192,7 @@ func (t *urlApplicationIntermediateType) Deserialize(i interface{}) (err error) // Serialize turns this object into an interface{}. func (t *urlApplicationIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -371243,7 +371279,7 @@ func (t *toApplicationIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -371326,7 +371362,7 @@ func (t *btoApplicationIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -371409,7 +371445,7 @@ func (t *ccApplicationIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -371492,7 +371528,7 @@ func (t *bccApplicationIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -371546,7 +371582,7 @@ func (t *mediaTypeApplicationIntermediateType) Serialize() (i interface{}, err e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -371600,7 +371636,7 @@ func (t *durationApplicationIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -371668,7 +371704,7 @@ func (t *sourceApplicationIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -371736,7 +371772,7 @@ func (t *inboxApplicationIntermediateType) Serialize() (i interface{}, err error return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -371804,7 +371840,7 @@ func (t *outboxApplicationIntermediateType) Serialize() (i interface{}, err erro return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -371887,7 +371923,7 @@ func (t *followingApplicationIntermediateType) Serialize() (i interface{}, err e return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -371970,7 +372006,7 @@ func (t *followersApplicationIntermediateType) Serialize() (i interface{}, err e return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -372053,7 +372089,7 @@ func (t *likedApplicationIntermediateType) Serialize() (i interface{}, err error return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -372136,7 +372172,7 @@ func (t *likesApplicationIntermediateType) Serialize() (i interface{}, err error return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -372190,7 +372226,7 @@ func (t *preferredUsernameApplicationIntermediateType) Serialize() (i interface{ return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -372258,7 +372294,7 @@ func (t *endpointsApplicationIntermediateType) Serialize() (i interface{}, err e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -372348,7 +372384,7 @@ type Group struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesGroupIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameGroupIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -372394,14 +372430,14 @@ func (t *Group) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Group) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Group) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Group) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeGroupIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Group) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeGroupIntermediateType{IRI: v} } @@ -372505,20 +372541,20 @@ func (t *Group) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Group) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Group) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Group) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentGroupIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Group) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentGroupIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Group) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentGroupIntermediateType{&attachmentGroupIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Group) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentGroupIntermediateType{&attachmentGroupIntermediateType{IRI: v}}, t.attachment...) } @@ -372630,20 +372666,20 @@ func (t *Group) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Group) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Group) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Group) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToGroupIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Group) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToGroupIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Group) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToGroupIntermediateType{&attributedToGroupIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Group) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToGroupIntermediateType{&attributedToGroupIntermediateType{IRI: v}}, t.attributedTo...) } @@ -372755,20 +372791,20 @@ func (t *Group) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Group) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Group) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Group) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceGroupIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Group) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceGroupIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Group) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceGroupIntermediateType{&audienceGroupIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Group) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceGroupIntermediateType{&audienceGroupIntermediateType{IRI: v}}, t.audience...) } @@ -372880,20 +372916,20 @@ func (t *Group) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Group) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Group) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Group) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentGroupIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Group) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentGroupIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Group) PrependContentIRI(v url.URL) { - t.content = append([]*contentGroupIntermediateType{&contentGroupIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Group) PrependContentIRI(v *url.URL) { + t.content = append([]*contentGroupIntermediateType{&contentGroupIntermediateType{IRI: v}}, t.content...) } @@ -373040,20 +373076,20 @@ func (t *Group) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Group) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Group) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Group) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextGroupIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Group) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextGroupIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Group) PrependContextIRI(v url.URL) { - t.context = append([]*contextGroupIntermediateType{&contextGroupIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Group) PrependContextIRI(v *url.URL) { + t.context = append([]*contextGroupIntermediateType{&contextGroupIntermediateType{IRI: v}}, t.context...) } @@ -373165,20 +373201,20 @@ func (t *Group) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Group) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Group) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Group) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameGroupIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Group) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameGroupIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Group) PrependNameIRI(v url.URL) { - t.name = append([]*nameGroupIntermediateType{&nameGroupIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Group) PrependNameIRI(v *url.URL) { + t.name = append([]*nameGroupIntermediateType{&nameGroupIntermediateType{IRI: v}}, t.name...) } @@ -373273,14 +373309,14 @@ func (t *Group) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Group) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Group) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Group) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeGroupIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Group) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeGroupIntermediateType{IRI: v} } @@ -373384,20 +373420,20 @@ func (t *Group) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Group) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Group) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Group) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorGroupIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Group) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorGroupIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Group) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorGroupIntermediateType{&generatorGroupIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Group) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorGroupIntermediateType{&generatorGroupIntermediateType{IRI: v}}, t.generator...) } @@ -373509,20 +373545,20 @@ func (t *Group) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Group) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Group) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Group) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconGroupIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Group) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconGroupIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Group) PrependIconIRI(v url.URL) { - t.icon = append([]*iconGroupIntermediateType{&iconGroupIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Group) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconGroupIntermediateType{&iconGroupIntermediateType{IRI: v}}, t.icon...) } @@ -373564,14 +373600,14 @@ func (t *Group) HasId() (ok bool) { } // GetId returns the value for id -func (t *Group) GetId() (v url.URL) { - return *t.id +func (t *Group) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Group) SetId(v url.URL) { - t.id = &v +func (t *Group) SetId(v *url.URL) { + t.id = v } @@ -373673,20 +373709,20 @@ func (t *Group) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Group) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Group) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Group) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageGroupIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Group) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageGroupIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Group) PrependImageIRI(v url.URL) { - t.image = append([]*imageGroupIntermediateType{&imageGroupIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Group) PrependImageIRI(v *url.URL) { + t.image = append([]*imageGroupIntermediateType{&imageGroupIntermediateType{IRI: v}}, t.image...) } @@ -373798,20 +373834,20 @@ func (t *Group) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Group) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Group) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Group) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToGroupIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Group) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToGroupIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Group) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToGroupIntermediateType{&inReplyToGroupIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Group) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToGroupIntermediateType{&inReplyToGroupIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -373923,20 +373959,20 @@ func (t *Group) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Group) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Group) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Group) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationGroupIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Group) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationGroupIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Group) PrependLocationIRI(v url.URL) { - t.location = append([]*locationGroupIntermediateType{&locationGroupIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Group) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationGroupIntermediateType{&locationGroupIntermediateType{IRI: v}}, t.location...) } @@ -374048,20 +374084,20 @@ func (t *Group) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Group) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Group) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Group) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewGroupIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Group) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewGroupIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Group) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewGroupIntermediateType{&previewGroupIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Group) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewGroupIntermediateType{&previewGroupIntermediateType{IRI: v}}, t.preview...) } @@ -374121,14 +374157,14 @@ func (t *Group) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Group) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Group) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Group) SetPublishedIRI(v url.URL) { - t.published = &publishedGroupIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Group) SetPublishedIRI(v *url.URL) { + t.published = &publishedGroupIntermediateType{IRI: v} } @@ -374180,14 +374216,14 @@ func (t *Group) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Group) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Group) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Group) SetRepliesIRI(v url.URL) { - t.replies = &repliesGroupIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Group) SetRepliesIRI(v *url.URL) { + t.replies = &repliesGroupIntermediateType{IRI: v} } @@ -374239,14 +374275,14 @@ func (t *Group) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Group) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Group) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Group) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeGroupIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Group) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeGroupIntermediateType{IRI: v} } @@ -374350,20 +374386,20 @@ func (t *Group) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Group) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Group) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Group) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryGroupIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Group) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryGroupIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Group) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryGroupIntermediateType{&summaryGroupIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Group) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryGroupIntermediateType{&summaryGroupIntermediateType{IRI: v}}, t.summary...) } @@ -374510,20 +374546,20 @@ func (t *Group) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Group) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Group) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Group) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagGroupIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Group) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagGroupIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Group) PrependTagIRI(v url.URL) { - t.tag = append([]*tagGroupIntermediateType{&tagGroupIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Group) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagGroupIntermediateType{&tagGroupIntermediateType{IRI: v}}, t.tag...) } @@ -374615,14 +374651,14 @@ func (t *Group) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Group) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Group) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Group) SetUpdatedIRI(v url.URL) { - t.updated = &updatedGroupIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Group) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedGroupIntermediateType{IRI: v} } @@ -374662,20 +374698,20 @@ func (t *Group) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Group) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Group) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Group) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlGroupIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Group) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlGroupIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Group) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlGroupIntermediateType{&urlGroupIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Group) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlGroupIntermediateType{&urlGroupIntermediateType{anyURI: v}}, t.url...) } @@ -374819,20 +374855,20 @@ func (t *Group) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Group) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Group) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Group) AppendToIRI(v url.URL) { - t.to = append(t.to, &toGroupIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Group) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toGroupIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Group) PrependToIRI(v url.URL) { - t.to = append([]*toGroupIntermediateType{&toGroupIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Group) PrependToIRI(v *url.URL) { + t.to = append([]*toGroupIntermediateType{&toGroupIntermediateType{IRI: v}}, t.to...) } @@ -374944,20 +374980,20 @@ func (t *Group) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Group) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Group) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Group) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoGroupIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Group) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoGroupIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Group) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoGroupIntermediateType{&btoGroupIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Group) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoGroupIntermediateType{&btoGroupIntermediateType{IRI: v}}, t.bto...) } @@ -375069,20 +375105,20 @@ func (t *Group) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Group) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Group) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Group) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccGroupIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Group) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccGroupIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Group) PrependCcIRI(v url.URL) { - t.cc = append([]*ccGroupIntermediateType{&ccGroupIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Group) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccGroupIntermediateType{&ccGroupIntermediateType{IRI: v}}, t.cc...) } @@ -375194,20 +375230,20 @@ func (t *Group) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Group) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Group) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Group) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccGroupIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Group) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccGroupIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Group) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccGroupIntermediateType{&bccGroupIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Group) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccGroupIntermediateType{&bccGroupIntermediateType{IRI: v}}, t.bcc...) } @@ -375267,14 +375303,14 @@ func (t *Group) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Group) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Group) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Group) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeGroupIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Group) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeGroupIntermediateType{IRI: v} } @@ -375326,14 +375362,14 @@ func (t *Group) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Group) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Group) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Group) SetDurationIRI(v url.URL) { - t.duration = &durationGroupIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Group) SetDurationIRI(v *url.URL) { + t.duration = &durationGroupIntermediateType{IRI: v} } @@ -375385,14 +375421,14 @@ func (t *Group) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Group) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Group) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Group) SetSourceIRI(v url.URL) { - t.source = &sourceGroupIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Group) SetSourceIRI(v *url.URL) { + t.source = &sourceGroupIntermediateType{IRI: v} } @@ -375444,14 +375480,14 @@ func (t *Group) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Group) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Group) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Group) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxGroupIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Group) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxGroupIntermediateType{anyURI: v} } @@ -375503,14 +375539,14 @@ func (t *Group) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Group) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Group) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Group) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxGroupIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Group) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxGroupIntermediateType{anyURI: v} } @@ -375580,14 +375616,14 @@ func (t *Group) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Group) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Group) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Group) SetFollowingAnyURI(v url.URL) { - t.following = &followingGroupIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Group) SetFollowingAnyURI(v *url.URL) { + t.following = &followingGroupIntermediateType{anyURI: v} } @@ -375657,14 +375693,14 @@ func (t *Group) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Group) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Group) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Group) SetFollowersAnyURI(v url.URL) { - t.followers = &followersGroupIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Group) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersGroupIntermediateType{anyURI: v} } @@ -375734,14 +375770,14 @@ func (t *Group) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Group) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Group) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Group) SetLikedAnyURI(v url.URL) { - t.liked = &likedGroupIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Group) SetLikedAnyURI(v *url.URL) { + t.liked = &likedGroupIntermediateType{anyURI: v} } @@ -375811,14 +375847,14 @@ func (t *Group) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Group) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Group) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Group) SetLikesAnyURI(v url.URL) { - t.likes = &likesGroupIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Group) SetLikesAnyURI(v *url.URL) { + t.likes = &likesGroupIntermediateType{anyURI: v} } @@ -375852,26 +375888,27 @@ func (t *Group) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Group) GetStreams(index int) (v url.URL) { +func (t *Group) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Group) AppendStreams(v url.URL) { +func (t *Group) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Group) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Group) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Group) 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] } @@ -375922,14 +375959,14 @@ func (t *Group) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Group) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Group) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Group) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameGroupIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Group) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameGroupIntermediateType{IRI: v} } @@ -376016,14 +376053,14 @@ func (t *Group) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Group) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Group) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Group) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsGroupIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Group) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsGroupIntermediateType{IRI: v} } @@ -376057,14 +376094,14 @@ func (t *Group) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Group) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Group) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Group) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Group) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -376096,14 +376133,14 @@ func (t *Group) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Group) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Group) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Group) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Group) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -376135,14 +376172,14 @@ func (t *Group) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Group) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Group) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Group) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Group) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -376174,14 +376211,14 @@ func (t *Group) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Group) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Group) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Group) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Group) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -376213,14 +376250,14 @@ func (t *Group) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Group) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Group) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Group) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Group) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -376252,14 +376289,14 @@ func (t *Group) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Group) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Group) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Group) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Group) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -376451,7 +376488,7 @@ func (t *Group) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -376757,7 +376794,7 @@ func (t *Group) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -376772,7 +376809,7 @@ func (t *Group) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -376787,7 +376824,7 @@ func (t *Group) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -376802,7 +376839,7 @@ func (t *Group) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -376817,7 +376854,7 @@ func (t *Group) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -376832,7 +376869,7 @@ func (t *Group) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -377630,7 +377667,7 @@ func (t *Group) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -377639,7 +377676,7 @@ func (t *Group) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -377824,7 +377861,7 @@ func (t *altitudeGroupIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -377907,7 +377944,7 @@ func (t *attachmentGroupIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -377990,7 +378027,7 @@ func (t *attributedToGroupIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -378073,7 +378110,7 @@ func (t *audienceGroupIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -378141,7 +378178,7 @@ func (t *contentGroupIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -378224,7 +378261,7 @@ func (t *contextGroupIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -378292,7 +378329,7 @@ func (t *nameGroupIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -378346,7 +378383,7 @@ func (t *endTimeGroupIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -378429,7 +378466,7 @@ func (t *generatorGroupIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -378512,7 +378549,7 @@ func (t *iconGroupIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -378595,7 +378632,7 @@ func (t *imageGroupIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -378678,7 +378715,7 @@ func (t *inReplyToGroupIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -378761,7 +378798,7 @@ func (t *locationGroupIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -378844,7 +378881,7 @@ func (t *previewGroupIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -378898,7 +378935,7 @@ func (t *publishedGroupIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -378966,7 +379003,7 @@ func (t *repliesGroupIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -379020,7 +379057,7 @@ func (t *startTimeGroupIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -379088,7 +379125,7 @@ func (t *summaryGroupIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -379171,7 +379208,7 @@ func (t *tagGroupIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -379225,7 +379262,7 @@ func (t *updatedGroupIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -379289,7 +379326,7 @@ func (t *urlGroupIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlGroupIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -379376,7 +379413,7 @@ func (t *toGroupIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -379459,7 +379496,7 @@ func (t *btoGroupIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -379542,7 +379579,7 @@ func (t *ccGroupIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -379625,7 +379662,7 @@ func (t *bccGroupIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -379679,7 +379716,7 @@ func (t *mediaTypeGroupIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -379733,7 +379770,7 @@ func (t *durationGroupIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -379801,7 +379838,7 @@ func (t *sourceGroupIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -379869,7 +379906,7 @@ func (t *inboxGroupIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -379937,7 +379974,7 @@ func (t *outboxGroupIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -380020,7 +380057,7 @@ func (t *followingGroupIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -380103,7 +380140,7 @@ func (t *followersGroupIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -380186,7 +380223,7 @@ func (t *likedGroupIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -380269,7 +380306,7 @@ func (t *likesGroupIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -380323,7 +380360,7 @@ func (t *preferredUsernameGroupIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -380391,7 +380428,7 @@ func (t *endpointsGroupIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -380481,7 +380518,7 @@ type Organization struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesOrganizationIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameOrganizationIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -380527,14 +380564,14 @@ func (t *Organization) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Organization) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Organization) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Organization) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeOrganizationIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Organization) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeOrganizationIntermediateType{IRI: v} } @@ -380638,20 +380675,20 @@ func (t *Organization) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Organization) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Organization) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Organization) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentOrganizationIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Organization) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentOrganizationIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Organization) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentOrganizationIntermediateType{&attachmentOrganizationIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Organization) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentOrganizationIntermediateType{&attachmentOrganizationIntermediateType{IRI: v}}, t.attachment...) } @@ -380763,20 +380800,20 @@ func (t *Organization) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Organization) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Organization) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Organization) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToOrganizationIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Organization) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToOrganizationIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Organization) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToOrganizationIntermediateType{&attributedToOrganizationIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Organization) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToOrganizationIntermediateType{&attributedToOrganizationIntermediateType{IRI: v}}, t.attributedTo...) } @@ -380888,20 +380925,20 @@ func (t *Organization) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Organization) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Organization) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Organization) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceOrganizationIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Organization) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceOrganizationIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Organization) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceOrganizationIntermediateType{&audienceOrganizationIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Organization) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceOrganizationIntermediateType{&audienceOrganizationIntermediateType{IRI: v}}, t.audience...) } @@ -381013,20 +381050,20 @@ func (t *Organization) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Organization) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Organization) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Organization) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentOrganizationIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Organization) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentOrganizationIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Organization) PrependContentIRI(v url.URL) { - t.content = append([]*contentOrganizationIntermediateType{&contentOrganizationIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Organization) PrependContentIRI(v *url.URL) { + t.content = append([]*contentOrganizationIntermediateType{&contentOrganizationIntermediateType{IRI: v}}, t.content...) } @@ -381173,20 +381210,20 @@ func (t *Organization) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Organization) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Organization) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Organization) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextOrganizationIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Organization) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextOrganizationIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Organization) PrependContextIRI(v url.URL) { - t.context = append([]*contextOrganizationIntermediateType{&contextOrganizationIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Organization) PrependContextIRI(v *url.URL) { + t.context = append([]*contextOrganizationIntermediateType{&contextOrganizationIntermediateType{IRI: v}}, t.context...) } @@ -381298,20 +381335,20 @@ func (t *Organization) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Organization) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Organization) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Organization) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameOrganizationIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Organization) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameOrganizationIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Organization) PrependNameIRI(v url.URL) { - t.name = append([]*nameOrganizationIntermediateType{&nameOrganizationIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Organization) PrependNameIRI(v *url.URL) { + t.name = append([]*nameOrganizationIntermediateType{&nameOrganizationIntermediateType{IRI: v}}, t.name...) } @@ -381406,14 +381443,14 @@ func (t *Organization) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Organization) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Organization) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Organization) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeOrganizationIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Organization) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeOrganizationIntermediateType{IRI: v} } @@ -381517,20 +381554,20 @@ func (t *Organization) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Organization) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Organization) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Organization) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorOrganizationIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Organization) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorOrganizationIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Organization) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorOrganizationIntermediateType{&generatorOrganizationIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Organization) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorOrganizationIntermediateType{&generatorOrganizationIntermediateType{IRI: v}}, t.generator...) } @@ -381642,20 +381679,20 @@ func (t *Organization) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Organization) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Organization) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Organization) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconOrganizationIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Organization) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconOrganizationIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Organization) PrependIconIRI(v url.URL) { - t.icon = append([]*iconOrganizationIntermediateType{&iconOrganizationIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Organization) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconOrganizationIntermediateType{&iconOrganizationIntermediateType{IRI: v}}, t.icon...) } @@ -381697,14 +381734,14 @@ func (t *Organization) HasId() (ok bool) { } // GetId returns the value for id -func (t *Organization) GetId() (v url.URL) { - return *t.id +func (t *Organization) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Organization) SetId(v url.URL) { - t.id = &v +func (t *Organization) SetId(v *url.URL) { + t.id = v } @@ -381806,20 +381843,20 @@ func (t *Organization) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Organization) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Organization) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Organization) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageOrganizationIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Organization) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageOrganizationIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Organization) PrependImageIRI(v url.URL) { - t.image = append([]*imageOrganizationIntermediateType{&imageOrganizationIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Organization) PrependImageIRI(v *url.URL) { + t.image = append([]*imageOrganizationIntermediateType{&imageOrganizationIntermediateType{IRI: v}}, t.image...) } @@ -381931,20 +381968,20 @@ func (t *Organization) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Organization) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Organization) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Organization) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToOrganizationIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Organization) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToOrganizationIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Organization) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToOrganizationIntermediateType{&inReplyToOrganizationIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Organization) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToOrganizationIntermediateType{&inReplyToOrganizationIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -382056,20 +382093,20 @@ func (t *Organization) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Organization) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Organization) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Organization) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationOrganizationIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Organization) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationOrganizationIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Organization) PrependLocationIRI(v url.URL) { - t.location = append([]*locationOrganizationIntermediateType{&locationOrganizationIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Organization) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationOrganizationIntermediateType{&locationOrganizationIntermediateType{IRI: v}}, t.location...) } @@ -382181,20 +382218,20 @@ func (t *Organization) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Organization) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Organization) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Organization) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewOrganizationIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Organization) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewOrganizationIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Organization) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewOrganizationIntermediateType{&previewOrganizationIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Organization) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewOrganizationIntermediateType{&previewOrganizationIntermediateType{IRI: v}}, t.preview...) } @@ -382254,14 +382291,14 @@ func (t *Organization) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Organization) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Organization) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Organization) SetPublishedIRI(v url.URL) { - t.published = &publishedOrganizationIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Organization) SetPublishedIRI(v *url.URL) { + t.published = &publishedOrganizationIntermediateType{IRI: v} } @@ -382313,14 +382350,14 @@ func (t *Organization) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Organization) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Organization) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Organization) SetRepliesIRI(v url.URL) { - t.replies = &repliesOrganizationIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Organization) SetRepliesIRI(v *url.URL) { + t.replies = &repliesOrganizationIntermediateType{IRI: v} } @@ -382372,14 +382409,14 @@ func (t *Organization) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Organization) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Organization) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Organization) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeOrganizationIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Organization) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeOrganizationIntermediateType{IRI: v} } @@ -382483,20 +382520,20 @@ func (t *Organization) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Organization) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Organization) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Organization) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryOrganizationIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Organization) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryOrganizationIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Organization) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryOrganizationIntermediateType{&summaryOrganizationIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Organization) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryOrganizationIntermediateType{&summaryOrganizationIntermediateType{IRI: v}}, t.summary...) } @@ -382643,20 +382680,20 @@ func (t *Organization) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Organization) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Organization) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Organization) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagOrganizationIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Organization) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagOrganizationIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Organization) PrependTagIRI(v url.URL) { - t.tag = append([]*tagOrganizationIntermediateType{&tagOrganizationIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Organization) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagOrganizationIntermediateType{&tagOrganizationIntermediateType{IRI: v}}, t.tag...) } @@ -382748,14 +382785,14 @@ func (t *Organization) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Organization) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Organization) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Organization) SetUpdatedIRI(v url.URL) { - t.updated = &updatedOrganizationIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Organization) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedOrganizationIntermediateType{IRI: v} } @@ -382795,20 +382832,20 @@ func (t *Organization) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Organization) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Organization) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Organization) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlOrganizationIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Organization) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlOrganizationIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Organization) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlOrganizationIntermediateType{&urlOrganizationIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Organization) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlOrganizationIntermediateType{&urlOrganizationIntermediateType{anyURI: v}}, t.url...) } @@ -382952,20 +382989,20 @@ func (t *Organization) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Organization) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Organization) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Organization) AppendToIRI(v url.URL) { - t.to = append(t.to, &toOrganizationIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Organization) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toOrganizationIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Organization) PrependToIRI(v url.URL) { - t.to = append([]*toOrganizationIntermediateType{&toOrganizationIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Organization) PrependToIRI(v *url.URL) { + t.to = append([]*toOrganizationIntermediateType{&toOrganizationIntermediateType{IRI: v}}, t.to...) } @@ -383077,20 +383114,20 @@ func (t *Organization) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Organization) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Organization) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Organization) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoOrganizationIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Organization) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoOrganizationIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Organization) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoOrganizationIntermediateType{&btoOrganizationIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Organization) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoOrganizationIntermediateType{&btoOrganizationIntermediateType{IRI: v}}, t.bto...) } @@ -383202,20 +383239,20 @@ func (t *Organization) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Organization) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Organization) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Organization) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccOrganizationIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Organization) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccOrganizationIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Organization) PrependCcIRI(v url.URL) { - t.cc = append([]*ccOrganizationIntermediateType{&ccOrganizationIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Organization) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccOrganizationIntermediateType{&ccOrganizationIntermediateType{IRI: v}}, t.cc...) } @@ -383327,20 +383364,20 @@ func (t *Organization) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Organization) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Organization) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Organization) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccOrganizationIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Organization) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccOrganizationIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Organization) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccOrganizationIntermediateType{&bccOrganizationIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Organization) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccOrganizationIntermediateType{&bccOrganizationIntermediateType{IRI: v}}, t.bcc...) } @@ -383400,14 +383437,14 @@ func (t *Organization) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Organization) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Organization) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Organization) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeOrganizationIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Organization) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeOrganizationIntermediateType{IRI: v} } @@ -383459,14 +383496,14 @@ func (t *Organization) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Organization) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Organization) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Organization) SetDurationIRI(v url.URL) { - t.duration = &durationOrganizationIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Organization) SetDurationIRI(v *url.URL) { + t.duration = &durationOrganizationIntermediateType{IRI: v} } @@ -383518,14 +383555,14 @@ func (t *Organization) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Organization) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Organization) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Organization) SetSourceIRI(v url.URL) { - t.source = &sourceOrganizationIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Organization) SetSourceIRI(v *url.URL) { + t.source = &sourceOrganizationIntermediateType{IRI: v} } @@ -383577,14 +383614,14 @@ func (t *Organization) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Organization) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Organization) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Organization) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxOrganizationIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Organization) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxOrganizationIntermediateType{anyURI: v} } @@ -383636,14 +383673,14 @@ func (t *Organization) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Organization) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Organization) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Organization) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxOrganizationIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Organization) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxOrganizationIntermediateType{anyURI: v} } @@ -383713,14 +383750,14 @@ func (t *Organization) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Organization) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Organization) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Organization) SetFollowingAnyURI(v url.URL) { - t.following = &followingOrganizationIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Organization) SetFollowingAnyURI(v *url.URL) { + t.following = &followingOrganizationIntermediateType{anyURI: v} } @@ -383790,14 +383827,14 @@ func (t *Organization) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Organization) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Organization) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Organization) SetFollowersAnyURI(v url.URL) { - t.followers = &followersOrganizationIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Organization) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersOrganizationIntermediateType{anyURI: v} } @@ -383867,14 +383904,14 @@ func (t *Organization) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Organization) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Organization) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Organization) SetLikedAnyURI(v url.URL) { - t.liked = &likedOrganizationIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Organization) SetLikedAnyURI(v *url.URL) { + t.liked = &likedOrganizationIntermediateType{anyURI: v} } @@ -383944,14 +383981,14 @@ func (t *Organization) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Organization) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Organization) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Organization) SetLikesAnyURI(v url.URL) { - t.likes = &likesOrganizationIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Organization) SetLikesAnyURI(v *url.URL) { + t.likes = &likesOrganizationIntermediateType{anyURI: v} } @@ -383985,26 +384022,27 @@ func (t *Organization) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Organization) GetStreams(index int) (v url.URL) { +func (t *Organization) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Organization) AppendStreams(v url.URL) { +func (t *Organization) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Organization) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Organization) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Organization) 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] } @@ -384055,14 +384093,14 @@ func (t *Organization) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Organization) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Organization) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Organization) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameOrganizationIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Organization) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameOrganizationIntermediateType{IRI: v} } @@ -384149,14 +384187,14 @@ func (t *Organization) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Organization) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Organization) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Organization) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsOrganizationIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Organization) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsOrganizationIntermediateType{IRI: v} } @@ -384190,14 +384228,14 @@ func (t *Organization) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Organization) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Organization) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Organization) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Organization) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -384229,14 +384267,14 @@ func (t *Organization) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Organization) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Organization) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Organization) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Organization) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -384268,14 +384306,14 @@ func (t *Organization) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Organization) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Organization) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Organization) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Organization) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -384307,14 +384345,14 @@ func (t *Organization) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Organization) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Organization) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Organization) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Organization) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -384346,14 +384384,14 @@ func (t *Organization) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Organization) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Organization) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Organization) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Organization) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -384385,14 +384423,14 @@ func (t *Organization) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Organization) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Organization) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Organization) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Organization) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -384584,7 +384622,7 @@ func (t *Organization) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -384890,7 +384928,7 @@ func (t *Organization) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -384905,7 +384943,7 @@ func (t *Organization) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -384920,7 +384958,7 @@ func (t *Organization) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -384935,7 +384973,7 @@ func (t *Organization) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -384950,7 +384988,7 @@ func (t *Organization) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -384965,7 +385003,7 @@ func (t *Organization) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -385763,7 +385801,7 @@ func (t *Organization) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -385772,7 +385810,7 @@ func (t *Organization) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -385957,7 +385995,7 @@ func (t *altitudeOrganizationIntermediateType) Serialize() (i interface{}, err e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -386040,7 +386078,7 @@ func (t *attachmentOrganizationIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -386123,7 +386161,7 @@ func (t *attributedToOrganizationIntermediateType) Serialize() (i interface{}, e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -386206,7 +386244,7 @@ func (t *audienceOrganizationIntermediateType) Serialize() (i interface{}, err e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -386274,7 +386312,7 @@ func (t *contentOrganizationIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -386357,7 +386395,7 @@ func (t *contextOrganizationIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -386425,7 +386463,7 @@ func (t *nameOrganizationIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -386479,7 +386517,7 @@ func (t *endTimeOrganizationIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -386562,7 +386600,7 @@ func (t *generatorOrganizationIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -386645,7 +386683,7 @@ func (t *iconOrganizationIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -386728,7 +386766,7 @@ func (t *imageOrganizationIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -386811,7 +386849,7 @@ func (t *inReplyToOrganizationIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -386894,7 +386932,7 @@ func (t *locationOrganizationIntermediateType) Serialize() (i interface{}, err e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -386977,7 +387015,7 @@ func (t *previewOrganizationIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -387031,7 +387069,7 @@ func (t *publishedOrganizationIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -387099,7 +387137,7 @@ func (t *repliesOrganizationIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -387153,7 +387191,7 @@ func (t *startTimeOrganizationIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -387221,7 +387259,7 @@ func (t *summaryOrganizationIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -387304,7 +387342,7 @@ func (t *tagOrganizationIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -387358,7 +387396,7 @@ func (t *updatedOrganizationIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -387422,7 +387460,7 @@ func (t *urlOrganizationIntermediateType) Deserialize(i interface{}) (err error) // Serialize turns this object into an interface{}. func (t *urlOrganizationIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -387509,7 +387547,7 @@ func (t *toOrganizationIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -387592,7 +387630,7 @@ func (t *btoOrganizationIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -387675,7 +387713,7 @@ func (t *ccOrganizationIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -387758,7 +387796,7 @@ func (t *bccOrganizationIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -387812,7 +387850,7 @@ func (t *mediaTypeOrganizationIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -387866,7 +387904,7 @@ func (t *durationOrganizationIntermediateType) Serialize() (i interface{}, err e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -387934,7 +387972,7 @@ func (t *sourceOrganizationIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -388002,7 +388040,7 @@ func (t *inboxOrganizationIntermediateType) Serialize() (i interface{}, err erro return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -388070,7 +388108,7 @@ func (t *outboxOrganizationIntermediateType) Serialize() (i interface{}, err err return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -388153,7 +388191,7 @@ func (t *followingOrganizationIntermediateType) Serialize() (i interface{}, err return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -388236,7 +388274,7 @@ func (t *followersOrganizationIntermediateType) Serialize() (i interface{}, err return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -388319,7 +388357,7 @@ func (t *likedOrganizationIntermediateType) Serialize() (i interface{}, err erro return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -388402,7 +388440,7 @@ func (t *likesOrganizationIntermediateType) Serialize() (i interface{}, err erro return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -388456,7 +388494,7 @@ func (t *preferredUsernameOrganizationIntermediateType) Serialize() (i interface return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -388524,7 +388562,7 @@ func (t *endpointsOrganizationIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -388614,7 +388652,7 @@ type Person struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesPersonIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernamePersonIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -388660,14 +388698,14 @@ func (t *Person) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Person) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Person) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Person) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudePersonIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Person) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudePersonIntermediateType{IRI: v} } @@ -388771,20 +388809,20 @@ func (t *Person) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Person) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Person) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Person) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentPersonIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Person) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentPersonIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Person) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentPersonIntermediateType{&attachmentPersonIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Person) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentPersonIntermediateType{&attachmentPersonIntermediateType{IRI: v}}, t.attachment...) } @@ -388896,20 +388934,20 @@ func (t *Person) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Person) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Person) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Person) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToPersonIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Person) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToPersonIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Person) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToPersonIntermediateType{&attributedToPersonIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Person) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToPersonIntermediateType{&attributedToPersonIntermediateType{IRI: v}}, t.attributedTo...) } @@ -389021,20 +389059,20 @@ func (t *Person) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Person) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Person) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Person) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audiencePersonIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Person) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audiencePersonIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Person) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audiencePersonIntermediateType{&audiencePersonIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Person) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audiencePersonIntermediateType{&audiencePersonIntermediateType{IRI: v}}, t.audience...) } @@ -389146,20 +389184,20 @@ func (t *Person) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Person) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Person) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Person) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentPersonIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Person) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentPersonIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Person) PrependContentIRI(v url.URL) { - t.content = append([]*contentPersonIntermediateType{&contentPersonIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Person) PrependContentIRI(v *url.URL) { + t.content = append([]*contentPersonIntermediateType{&contentPersonIntermediateType{IRI: v}}, t.content...) } @@ -389306,20 +389344,20 @@ func (t *Person) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Person) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Person) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Person) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextPersonIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Person) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextPersonIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Person) PrependContextIRI(v url.URL) { - t.context = append([]*contextPersonIntermediateType{&contextPersonIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Person) PrependContextIRI(v *url.URL) { + t.context = append([]*contextPersonIntermediateType{&contextPersonIntermediateType{IRI: v}}, t.context...) } @@ -389431,20 +389469,20 @@ func (t *Person) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Person) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Person) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Person) AppendNameIRI(v url.URL) { - t.name = append(t.name, &namePersonIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Person) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &namePersonIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Person) PrependNameIRI(v url.URL) { - t.name = append([]*namePersonIntermediateType{&namePersonIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Person) PrependNameIRI(v *url.URL) { + t.name = append([]*namePersonIntermediateType{&namePersonIntermediateType{IRI: v}}, t.name...) } @@ -389539,14 +389577,14 @@ func (t *Person) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Person) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Person) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Person) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimePersonIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Person) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimePersonIntermediateType{IRI: v} } @@ -389650,20 +389688,20 @@ func (t *Person) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Person) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Person) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Person) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorPersonIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Person) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorPersonIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Person) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorPersonIntermediateType{&generatorPersonIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Person) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorPersonIntermediateType{&generatorPersonIntermediateType{IRI: v}}, t.generator...) } @@ -389775,20 +389813,20 @@ func (t *Person) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Person) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Person) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Person) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconPersonIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Person) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconPersonIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Person) PrependIconIRI(v url.URL) { - t.icon = append([]*iconPersonIntermediateType{&iconPersonIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Person) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconPersonIntermediateType{&iconPersonIntermediateType{IRI: v}}, t.icon...) } @@ -389830,14 +389868,14 @@ func (t *Person) HasId() (ok bool) { } // GetId returns the value for id -func (t *Person) GetId() (v url.URL) { - return *t.id +func (t *Person) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Person) SetId(v url.URL) { - t.id = &v +func (t *Person) SetId(v *url.URL) { + t.id = v } @@ -389939,20 +389977,20 @@ func (t *Person) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Person) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Person) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Person) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imagePersonIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Person) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imagePersonIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Person) PrependImageIRI(v url.URL) { - t.image = append([]*imagePersonIntermediateType{&imagePersonIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Person) PrependImageIRI(v *url.URL) { + t.image = append([]*imagePersonIntermediateType{&imagePersonIntermediateType{IRI: v}}, t.image...) } @@ -390064,20 +390102,20 @@ func (t *Person) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Person) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Person) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Person) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToPersonIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Person) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToPersonIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Person) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToPersonIntermediateType{&inReplyToPersonIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Person) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToPersonIntermediateType{&inReplyToPersonIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -390189,20 +390227,20 @@ func (t *Person) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Person) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Person) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Person) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationPersonIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Person) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationPersonIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Person) PrependLocationIRI(v url.URL) { - t.location = append([]*locationPersonIntermediateType{&locationPersonIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Person) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationPersonIntermediateType{&locationPersonIntermediateType{IRI: v}}, t.location...) } @@ -390314,20 +390352,20 @@ func (t *Person) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Person) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Person) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Person) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewPersonIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Person) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewPersonIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Person) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewPersonIntermediateType{&previewPersonIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Person) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewPersonIntermediateType{&previewPersonIntermediateType{IRI: v}}, t.preview...) } @@ -390387,14 +390425,14 @@ func (t *Person) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Person) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Person) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Person) SetPublishedIRI(v url.URL) { - t.published = &publishedPersonIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Person) SetPublishedIRI(v *url.URL) { + t.published = &publishedPersonIntermediateType{IRI: v} } @@ -390446,14 +390484,14 @@ func (t *Person) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Person) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Person) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Person) SetRepliesIRI(v url.URL) { - t.replies = &repliesPersonIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Person) SetRepliesIRI(v *url.URL) { + t.replies = &repliesPersonIntermediateType{IRI: v} } @@ -390505,14 +390543,14 @@ func (t *Person) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Person) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Person) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Person) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimePersonIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Person) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimePersonIntermediateType{IRI: v} } @@ -390616,20 +390654,20 @@ func (t *Person) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Person) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Person) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Person) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryPersonIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Person) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryPersonIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Person) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryPersonIntermediateType{&summaryPersonIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Person) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryPersonIntermediateType{&summaryPersonIntermediateType{IRI: v}}, t.summary...) } @@ -390776,20 +390814,20 @@ func (t *Person) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Person) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Person) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Person) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagPersonIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Person) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagPersonIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Person) PrependTagIRI(v url.URL) { - t.tag = append([]*tagPersonIntermediateType{&tagPersonIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Person) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagPersonIntermediateType{&tagPersonIntermediateType{IRI: v}}, t.tag...) } @@ -390881,14 +390919,14 @@ func (t *Person) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Person) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Person) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Person) SetUpdatedIRI(v url.URL) { - t.updated = &updatedPersonIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Person) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedPersonIntermediateType{IRI: v} } @@ -390928,20 +390966,20 @@ func (t *Person) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Person) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Person) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Person) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlPersonIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Person) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlPersonIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Person) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlPersonIntermediateType{&urlPersonIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Person) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlPersonIntermediateType{&urlPersonIntermediateType{anyURI: v}}, t.url...) } @@ -391085,20 +391123,20 @@ func (t *Person) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Person) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Person) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Person) AppendToIRI(v url.URL) { - t.to = append(t.to, &toPersonIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Person) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toPersonIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Person) PrependToIRI(v url.URL) { - t.to = append([]*toPersonIntermediateType{&toPersonIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Person) PrependToIRI(v *url.URL) { + t.to = append([]*toPersonIntermediateType{&toPersonIntermediateType{IRI: v}}, t.to...) } @@ -391210,20 +391248,20 @@ func (t *Person) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Person) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Person) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Person) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoPersonIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Person) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoPersonIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Person) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoPersonIntermediateType{&btoPersonIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Person) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoPersonIntermediateType{&btoPersonIntermediateType{IRI: v}}, t.bto...) } @@ -391335,20 +391373,20 @@ func (t *Person) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Person) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Person) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Person) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccPersonIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Person) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccPersonIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Person) PrependCcIRI(v url.URL) { - t.cc = append([]*ccPersonIntermediateType{&ccPersonIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Person) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccPersonIntermediateType{&ccPersonIntermediateType{IRI: v}}, t.cc...) } @@ -391460,20 +391498,20 @@ func (t *Person) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Person) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Person) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Person) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccPersonIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Person) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccPersonIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Person) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccPersonIntermediateType{&bccPersonIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Person) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccPersonIntermediateType{&bccPersonIntermediateType{IRI: v}}, t.bcc...) } @@ -391533,14 +391571,14 @@ func (t *Person) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Person) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Person) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Person) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypePersonIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Person) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypePersonIntermediateType{IRI: v} } @@ -391592,14 +391630,14 @@ func (t *Person) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Person) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Person) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Person) SetDurationIRI(v url.URL) { - t.duration = &durationPersonIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Person) SetDurationIRI(v *url.URL) { + t.duration = &durationPersonIntermediateType{IRI: v} } @@ -391651,14 +391689,14 @@ func (t *Person) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Person) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Person) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Person) SetSourceIRI(v url.URL) { - t.source = &sourcePersonIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Person) SetSourceIRI(v *url.URL) { + t.source = &sourcePersonIntermediateType{IRI: v} } @@ -391710,14 +391748,14 @@ func (t *Person) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Person) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Person) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Person) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxPersonIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Person) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxPersonIntermediateType{anyURI: v} } @@ -391769,14 +391807,14 @@ func (t *Person) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Person) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Person) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Person) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxPersonIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Person) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxPersonIntermediateType{anyURI: v} } @@ -391846,14 +391884,14 @@ func (t *Person) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Person) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Person) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Person) SetFollowingAnyURI(v url.URL) { - t.following = &followingPersonIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Person) SetFollowingAnyURI(v *url.URL) { + t.following = &followingPersonIntermediateType{anyURI: v} } @@ -391923,14 +391961,14 @@ func (t *Person) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Person) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Person) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Person) SetFollowersAnyURI(v url.URL) { - t.followers = &followersPersonIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Person) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersPersonIntermediateType{anyURI: v} } @@ -392000,14 +392038,14 @@ func (t *Person) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Person) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Person) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Person) SetLikedAnyURI(v url.URL) { - t.liked = &likedPersonIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Person) SetLikedAnyURI(v *url.URL) { + t.liked = &likedPersonIntermediateType{anyURI: v} } @@ -392077,14 +392115,14 @@ func (t *Person) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Person) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Person) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Person) SetLikesAnyURI(v url.URL) { - t.likes = &likesPersonIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Person) SetLikesAnyURI(v *url.URL) { + t.likes = &likesPersonIntermediateType{anyURI: v} } @@ -392118,26 +392156,27 @@ func (t *Person) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Person) GetStreams(index int) (v url.URL) { +func (t *Person) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Person) AppendStreams(v url.URL) { +func (t *Person) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Person) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Person) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Person) 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] } @@ -392188,14 +392227,14 @@ func (t *Person) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Person) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Person) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Person) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernamePersonIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Person) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernamePersonIntermediateType{IRI: v} } @@ -392282,14 +392321,14 @@ func (t *Person) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Person) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Person) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Person) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsPersonIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Person) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsPersonIntermediateType{IRI: v} } @@ -392323,14 +392362,14 @@ func (t *Person) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Person) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Person) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Person) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Person) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -392362,14 +392401,14 @@ func (t *Person) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Person) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Person) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Person) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Person) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -392401,14 +392440,14 @@ func (t *Person) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Person) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Person) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Person) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Person) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -392440,14 +392479,14 @@ func (t *Person) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Person) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Person) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Person) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Person) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -392479,14 +392518,14 @@ func (t *Person) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Person) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Person) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Person) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Person) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -392518,14 +392557,14 @@ func (t *Person) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Person) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Person) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Person) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Person) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -392717,7 +392756,7 @@ func (t *Person) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -393023,7 +393062,7 @@ func (t *Person) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -393038,7 +393077,7 @@ func (t *Person) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -393053,7 +393092,7 @@ func (t *Person) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -393068,7 +393107,7 @@ func (t *Person) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -393083,7 +393122,7 @@ func (t *Person) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -393098,7 +393137,7 @@ func (t *Person) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -393896,7 +393935,7 @@ func (t *Person) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -393905,7 +393944,7 @@ func (t *Person) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -394090,7 +394129,7 @@ func (t *altitudePersonIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -394173,7 +394212,7 @@ func (t *attachmentPersonIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -394256,7 +394295,7 @@ func (t *attributedToPersonIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -394339,7 +394378,7 @@ func (t *audiencePersonIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -394407,7 +394446,7 @@ func (t *contentPersonIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -394490,7 +394529,7 @@ func (t *contextPersonIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -394558,7 +394597,7 @@ func (t *namePersonIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -394612,7 +394651,7 @@ func (t *endTimePersonIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -394695,7 +394734,7 @@ func (t *generatorPersonIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -394778,7 +394817,7 @@ func (t *iconPersonIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -394861,7 +394900,7 @@ func (t *imagePersonIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -394944,7 +394983,7 @@ func (t *inReplyToPersonIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -395027,7 +395066,7 @@ func (t *locationPersonIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -395110,7 +395149,7 @@ func (t *previewPersonIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -395164,7 +395203,7 @@ func (t *publishedPersonIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -395232,7 +395271,7 @@ func (t *repliesPersonIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -395286,7 +395325,7 @@ func (t *startTimePersonIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -395354,7 +395393,7 @@ func (t *summaryPersonIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -395437,7 +395476,7 @@ func (t *tagPersonIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -395491,7 +395530,7 @@ func (t *updatedPersonIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -395555,7 +395594,7 @@ func (t *urlPersonIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlPersonIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -395642,7 +395681,7 @@ func (t *toPersonIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -395725,7 +395764,7 @@ func (t *btoPersonIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -395808,7 +395847,7 @@ func (t *ccPersonIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -395891,7 +395930,7 @@ func (t *bccPersonIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -395945,7 +395984,7 @@ func (t *mediaTypePersonIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -395999,7 +396038,7 @@ func (t *durationPersonIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -396067,7 +396106,7 @@ func (t *sourcePersonIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -396135,7 +396174,7 @@ func (t *inboxPersonIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -396203,7 +396242,7 @@ func (t *outboxPersonIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -396286,7 +396325,7 @@ func (t *followingPersonIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -396369,7 +396408,7 @@ func (t *followersPersonIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -396452,7 +396491,7 @@ func (t *likedPersonIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -396535,7 +396574,7 @@ func (t *likesPersonIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -396589,7 +396628,7 @@ func (t *preferredUsernamePersonIntermediateType) Serialize() (i interface{}, er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -396657,7 +396696,7 @@ func (t *endpointsPersonIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -396747,7 +396786,7 @@ type Service struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesServiceIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameServiceIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -396793,14 +396832,14 @@ func (t *Service) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Service) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Service) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Service) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeServiceIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Service) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeServiceIntermediateType{IRI: v} } @@ -396904,20 +396943,20 @@ func (t *Service) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Service) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Service) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Service) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentServiceIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Service) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentServiceIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Service) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentServiceIntermediateType{&attachmentServiceIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Service) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentServiceIntermediateType{&attachmentServiceIntermediateType{IRI: v}}, t.attachment...) } @@ -397029,20 +397068,20 @@ func (t *Service) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Service) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Service) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Service) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToServiceIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Service) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToServiceIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Service) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToServiceIntermediateType{&attributedToServiceIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Service) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToServiceIntermediateType{&attributedToServiceIntermediateType{IRI: v}}, t.attributedTo...) } @@ -397154,20 +397193,20 @@ func (t *Service) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Service) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Service) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Service) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceServiceIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Service) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceServiceIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Service) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceServiceIntermediateType{&audienceServiceIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Service) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceServiceIntermediateType{&audienceServiceIntermediateType{IRI: v}}, t.audience...) } @@ -397279,20 +397318,20 @@ func (t *Service) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Service) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Service) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Service) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentServiceIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Service) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentServiceIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Service) PrependContentIRI(v url.URL) { - t.content = append([]*contentServiceIntermediateType{&contentServiceIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Service) PrependContentIRI(v *url.URL) { + t.content = append([]*contentServiceIntermediateType{&contentServiceIntermediateType{IRI: v}}, t.content...) } @@ -397439,20 +397478,20 @@ func (t *Service) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Service) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Service) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Service) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextServiceIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Service) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextServiceIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Service) PrependContextIRI(v url.URL) { - t.context = append([]*contextServiceIntermediateType{&contextServiceIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Service) PrependContextIRI(v *url.URL) { + t.context = append([]*contextServiceIntermediateType{&contextServiceIntermediateType{IRI: v}}, t.context...) } @@ -397564,20 +397603,20 @@ func (t *Service) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Service) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Service) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Service) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameServiceIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Service) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameServiceIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Service) PrependNameIRI(v url.URL) { - t.name = append([]*nameServiceIntermediateType{&nameServiceIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Service) PrependNameIRI(v *url.URL) { + t.name = append([]*nameServiceIntermediateType{&nameServiceIntermediateType{IRI: v}}, t.name...) } @@ -397672,14 +397711,14 @@ func (t *Service) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Service) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Service) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Service) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeServiceIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Service) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeServiceIntermediateType{IRI: v} } @@ -397783,20 +397822,20 @@ func (t *Service) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Service) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Service) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Service) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorServiceIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Service) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorServiceIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Service) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorServiceIntermediateType{&generatorServiceIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Service) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorServiceIntermediateType{&generatorServiceIntermediateType{IRI: v}}, t.generator...) } @@ -397908,20 +397947,20 @@ func (t *Service) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Service) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Service) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Service) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconServiceIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Service) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconServiceIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Service) PrependIconIRI(v url.URL) { - t.icon = append([]*iconServiceIntermediateType{&iconServiceIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Service) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconServiceIntermediateType{&iconServiceIntermediateType{IRI: v}}, t.icon...) } @@ -397963,14 +398002,14 @@ func (t *Service) HasId() (ok bool) { } // GetId returns the value for id -func (t *Service) GetId() (v url.URL) { - return *t.id +func (t *Service) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Service) SetId(v url.URL) { - t.id = &v +func (t *Service) SetId(v *url.URL) { + t.id = v } @@ -398072,20 +398111,20 @@ func (t *Service) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Service) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Service) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Service) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageServiceIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Service) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageServiceIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Service) PrependImageIRI(v url.URL) { - t.image = append([]*imageServiceIntermediateType{&imageServiceIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Service) PrependImageIRI(v *url.URL) { + t.image = append([]*imageServiceIntermediateType{&imageServiceIntermediateType{IRI: v}}, t.image...) } @@ -398197,20 +398236,20 @@ func (t *Service) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Service) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Service) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Service) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToServiceIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Service) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToServiceIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Service) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToServiceIntermediateType{&inReplyToServiceIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Service) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToServiceIntermediateType{&inReplyToServiceIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -398322,20 +398361,20 @@ func (t *Service) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Service) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Service) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Service) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationServiceIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Service) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationServiceIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Service) PrependLocationIRI(v url.URL) { - t.location = append([]*locationServiceIntermediateType{&locationServiceIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Service) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationServiceIntermediateType{&locationServiceIntermediateType{IRI: v}}, t.location...) } @@ -398447,20 +398486,20 @@ func (t *Service) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Service) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Service) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Service) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewServiceIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Service) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewServiceIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Service) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewServiceIntermediateType{&previewServiceIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Service) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewServiceIntermediateType{&previewServiceIntermediateType{IRI: v}}, t.preview...) } @@ -398520,14 +398559,14 @@ func (t *Service) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Service) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Service) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Service) SetPublishedIRI(v url.URL) { - t.published = &publishedServiceIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Service) SetPublishedIRI(v *url.URL) { + t.published = &publishedServiceIntermediateType{IRI: v} } @@ -398579,14 +398618,14 @@ func (t *Service) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Service) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Service) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Service) SetRepliesIRI(v url.URL) { - t.replies = &repliesServiceIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Service) SetRepliesIRI(v *url.URL) { + t.replies = &repliesServiceIntermediateType{IRI: v} } @@ -398638,14 +398677,14 @@ func (t *Service) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Service) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Service) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Service) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeServiceIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Service) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeServiceIntermediateType{IRI: v} } @@ -398749,20 +398788,20 @@ func (t *Service) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Service) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Service) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Service) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryServiceIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Service) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryServiceIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Service) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryServiceIntermediateType{&summaryServiceIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Service) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryServiceIntermediateType{&summaryServiceIntermediateType{IRI: v}}, t.summary...) } @@ -398909,20 +398948,20 @@ func (t *Service) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Service) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Service) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Service) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagServiceIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Service) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagServiceIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Service) PrependTagIRI(v url.URL) { - t.tag = append([]*tagServiceIntermediateType{&tagServiceIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Service) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagServiceIntermediateType{&tagServiceIntermediateType{IRI: v}}, t.tag...) } @@ -399014,14 +399053,14 @@ func (t *Service) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Service) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Service) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Service) SetUpdatedIRI(v url.URL) { - t.updated = &updatedServiceIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Service) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedServiceIntermediateType{IRI: v} } @@ -399061,20 +399100,20 @@ func (t *Service) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Service) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Service) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Service) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlServiceIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Service) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlServiceIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Service) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlServiceIntermediateType{&urlServiceIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Service) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlServiceIntermediateType{&urlServiceIntermediateType{anyURI: v}}, t.url...) } @@ -399218,20 +399257,20 @@ func (t *Service) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Service) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Service) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Service) AppendToIRI(v url.URL) { - t.to = append(t.to, &toServiceIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Service) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toServiceIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Service) PrependToIRI(v url.URL) { - t.to = append([]*toServiceIntermediateType{&toServiceIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Service) PrependToIRI(v *url.URL) { + t.to = append([]*toServiceIntermediateType{&toServiceIntermediateType{IRI: v}}, t.to...) } @@ -399343,20 +399382,20 @@ func (t *Service) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Service) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Service) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Service) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoServiceIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Service) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoServiceIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Service) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoServiceIntermediateType{&btoServiceIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Service) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoServiceIntermediateType{&btoServiceIntermediateType{IRI: v}}, t.bto...) } @@ -399468,20 +399507,20 @@ func (t *Service) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Service) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Service) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Service) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccServiceIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Service) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccServiceIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Service) PrependCcIRI(v url.URL) { - t.cc = append([]*ccServiceIntermediateType{&ccServiceIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Service) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccServiceIntermediateType{&ccServiceIntermediateType{IRI: v}}, t.cc...) } @@ -399593,20 +399632,20 @@ func (t *Service) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Service) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Service) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Service) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccServiceIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Service) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccServiceIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Service) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccServiceIntermediateType{&bccServiceIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Service) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccServiceIntermediateType{&bccServiceIntermediateType{IRI: v}}, t.bcc...) } @@ -399666,14 +399705,14 @@ func (t *Service) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Service) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Service) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Service) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeServiceIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Service) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeServiceIntermediateType{IRI: v} } @@ -399725,14 +399764,14 @@ func (t *Service) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Service) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Service) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Service) SetDurationIRI(v url.URL) { - t.duration = &durationServiceIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Service) SetDurationIRI(v *url.URL) { + t.duration = &durationServiceIntermediateType{IRI: v} } @@ -399784,14 +399823,14 @@ func (t *Service) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Service) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Service) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Service) SetSourceIRI(v url.URL) { - t.source = &sourceServiceIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Service) SetSourceIRI(v *url.URL) { + t.source = &sourceServiceIntermediateType{IRI: v} } @@ -399843,14 +399882,14 @@ func (t *Service) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Service) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Service) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Service) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxServiceIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Service) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxServiceIntermediateType{anyURI: v} } @@ -399902,14 +399941,14 @@ func (t *Service) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Service) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Service) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Service) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxServiceIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Service) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxServiceIntermediateType{anyURI: v} } @@ -399979,14 +400018,14 @@ func (t *Service) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Service) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Service) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Service) SetFollowingAnyURI(v url.URL) { - t.following = &followingServiceIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Service) SetFollowingAnyURI(v *url.URL) { + t.following = &followingServiceIntermediateType{anyURI: v} } @@ -400056,14 +400095,14 @@ func (t *Service) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Service) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Service) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Service) SetFollowersAnyURI(v url.URL) { - t.followers = &followersServiceIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Service) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersServiceIntermediateType{anyURI: v} } @@ -400133,14 +400172,14 @@ func (t *Service) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Service) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Service) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Service) SetLikedAnyURI(v url.URL) { - t.liked = &likedServiceIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Service) SetLikedAnyURI(v *url.URL) { + t.liked = &likedServiceIntermediateType{anyURI: v} } @@ -400210,14 +400249,14 @@ func (t *Service) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Service) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Service) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Service) SetLikesAnyURI(v url.URL) { - t.likes = &likesServiceIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Service) SetLikesAnyURI(v *url.URL) { + t.likes = &likesServiceIntermediateType{anyURI: v} } @@ -400251,26 +400290,27 @@ func (t *Service) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Service) GetStreams(index int) (v url.URL) { +func (t *Service) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Service) AppendStreams(v url.URL) { +func (t *Service) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Service) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Service) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Service) 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] } @@ -400321,14 +400361,14 @@ func (t *Service) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Service) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Service) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Service) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameServiceIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Service) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameServiceIntermediateType{IRI: v} } @@ -400415,14 +400455,14 @@ func (t *Service) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Service) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Service) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Service) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsServiceIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Service) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsServiceIntermediateType{IRI: v} } @@ -400456,14 +400496,14 @@ func (t *Service) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Service) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Service) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Service) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Service) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -400495,14 +400535,14 @@ func (t *Service) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Service) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Service) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Service) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Service) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -400534,14 +400574,14 @@ func (t *Service) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Service) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Service) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Service) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Service) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -400573,14 +400613,14 @@ func (t *Service) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Service) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Service) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Service) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Service) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -400612,14 +400652,14 @@ func (t *Service) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Service) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Service) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Service) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Service) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -400651,14 +400691,14 @@ func (t *Service) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Service) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Service) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Service) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Service) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -400850,7 +400890,7 @@ func (t *Service) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -401156,7 +401196,7 @@ func (t *Service) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -401171,7 +401211,7 @@ func (t *Service) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -401186,7 +401226,7 @@ func (t *Service) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -401201,7 +401241,7 @@ func (t *Service) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -401216,7 +401256,7 @@ func (t *Service) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -401231,7 +401271,7 @@ func (t *Service) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -402029,7 +402069,7 @@ func (t *Service) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -402038,7 +402078,7 @@ func (t *Service) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -402223,7 +402263,7 @@ func (t *altitudeServiceIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -402306,7 +402346,7 @@ func (t *attachmentServiceIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -402389,7 +402429,7 @@ func (t *attributedToServiceIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -402472,7 +402512,7 @@ func (t *audienceServiceIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -402540,7 +402580,7 @@ func (t *contentServiceIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -402623,7 +402663,7 @@ func (t *contextServiceIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -402691,7 +402731,7 @@ func (t *nameServiceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -402745,7 +402785,7 @@ func (t *endTimeServiceIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -402828,7 +402868,7 @@ func (t *generatorServiceIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -402911,7 +402951,7 @@ func (t *iconServiceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -402994,7 +403034,7 @@ func (t *imageServiceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -403077,7 +403117,7 @@ func (t *inReplyToServiceIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -403160,7 +403200,7 @@ func (t *locationServiceIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -403243,7 +403283,7 @@ func (t *previewServiceIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -403297,7 +403337,7 @@ func (t *publishedServiceIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -403365,7 +403405,7 @@ func (t *repliesServiceIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -403419,7 +403459,7 @@ func (t *startTimeServiceIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -403487,7 +403527,7 @@ func (t *summaryServiceIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -403570,7 +403610,7 @@ func (t *tagServiceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -403624,7 +403664,7 @@ func (t *updatedServiceIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -403688,7 +403728,7 @@ func (t *urlServiceIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlServiceIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -403775,7 +403815,7 @@ func (t *toServiceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -403858,7 +403898,7 @@ func (t *btoServiceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -403941,7 +403981,7 @@ func (t *ccServiceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -404024,7 +404064,7 @@ func (t *bccServiceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -404078,7 +404118,7 @@ func (t *mediaTypeServiceIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -404132,7 +404172,7 @@ func (t *durationServiceIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -404200,7 +404240,7 @@ func (t *sourceServiceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -404268,7 +404308,7 @@ func (t *inboxServiceIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -404336,7 +404376,7 @@ func (t *outboxServiceIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -404419,7 +404459,7 @@ func (t *followingServiceIntermediateType) Serialize() (i interface{}, err error return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -404502,7 +404542,7 @@ func (t *followersServiceIntermediateType) Serialize() (i interface{}, err error return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -404585,7 +404625,7 @@ func (t *likedServiceIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -404668,7 +404708,7 @@ func (t *likesServiceIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -404722,7 +404762,7 @@ func (t *preferredUsernameServiceIntermediateType) Serialize() (i interface{}, e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -404790,7 +404830,7 @@ func (t *endpointsServiceIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -404886,7 +404926,7 @@ type Relationship struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesRelationshipIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameRelationshipIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -404950,14 +404990,14 @@ func (t *Relationship) IsSubjectIRI() (ok bool) { } // GetSubjectIRI returns the value safely if IsSubjectIRI returned true -func (t *Relationship) GetSubjectIRI() (v url.URL) { - return *t.subject.IRI +func (t *Relationship) GetSubjectIRI() (v *url.URL) { + return t.subject.IRI } -// SetSubjectIRI sets the value of subject to be of url.URL type -func (t *Relationship) SetSubjectIRI(v url.URL) { - t.subject = &subjectRelationshipIntermediateType{IRI: &v} +// SetSubjectIRI sets the value of subject to be of *url.URL type +func (t *Relationship) SetSubjectIRI(v *url.URL) { + t.subject = &subjectRelationshipIntermediateType{IRI: v} } @@ -405029,20 +405069,20 @@ func (t *Relationship) IsObjectIRI(index int) (ok bool) { } // GetObjectIRI returns the value safely if IsObjectIRI returned true for the specified index -func (t *Relationship) GetObjectIRI(index int) (v url.URL) { - return *t.object[index].IRI +func (t *Relationship) GetObjectIRI(index int) (v *url.URL) { + return t.object[index].IRI } -// AppendObjectIRI adds to the back of object a url.URL type -func (t *Relationship) AppendObjectIRI(v url.URL) { - t.object = append(t.object, &objectRelationshipIntermediateType{IRI: &v}) +// AppendObjectIRI adds to the back of object a *url.URL type +func (t *Relationship) AppendObjectIRI(v *url.URL) { + t.object = append(t.object, &objectRelationshipIntermediateType{IRI: v}) } -// PrependObjectIRI adds to the front of object a url.URL type -func (t *Relationship) PrependObjectIRI(v url.URL) { - t.object = append([]*objectRelationshipIntermediateType{&objectRelationshipIntermediateType{IRI: &v}}, t.object...) +// PrependObjectIRI adds to the front of object a *url.URL type +func (t *Relationship) PrependObjectIRI(v *url.URL) { + t.object = append([]*objectRelationshipIntermediateType{&objectRelationshipIntermediateType{IRI: v}}, t.object...) } @@ -405102,14 +405142,14 @@ func (t *Relationship) IsRelationshipIRI() (ok bool) { } // GetRelationshipIRI returns the value safely if IsRelationshipIRI returned true -func (t *Relationship) GetRelationshipIRI() (v url.URL) { - return *t.relationship.IRI +func (t *Relationship) GetRelationshipIRI() (v *url.URL) { + return t.relationship.IRI } -// SetRelationshipIRI sets the value of relationship to be of url.URL type -func (t *Relationship) SetRelationshipIRI(v url.URL) { - t.relationship = &relationshipRelationshipIntermediateType{IRI: &v} +// SetRelationshipIRI sets the value of relationship to be of *url.URL type +func (t *Relationship) SetRelationshipIRI(v *url.URL) { + t.relationship = &relationshipRelationshipIntermediateType{IRI: v} } @@ -405161,14 +405201,14 @@ func (t *Relationship) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Relationship) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Relationship) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Relationship) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeRelationshipIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Relationship) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeRelationshipIntermediateType{IRI: v} } @@ -405272,20 +405312,20 @@ func (t *Relationship) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Relationship) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Relationship) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Relationship) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentRelationshipIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Relationship) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentRelationshipIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Relationship) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentRelationshipIntermediateType{&attachmentRelationshipIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Relationship) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentRelationshipIntermediateType{&attachmentRelationshipIntermediateType{IRI: v}}, t.attachment...) } @@ -405397,20 +405437,20 @@ func (t *Relationship) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Relationship) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Relationship) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Relationship) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToRelationshipIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Relationship) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToRelationshipIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Relationship) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToRelationshipIntermediateType{&attributedToRelationshipIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Relationship) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToRelationshipIntermediateType{&attributedToRelationshipIntermediateType{IRI: v}}, t.attributedTo...) } @@ -405522,20 +405562,20 @@ func (t *Relationship) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Relationship) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Relationship) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Relationship) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceRelationshipIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Relationship) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceRelationshipIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Relationship) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceRelationshipIntermediateType{&audienceRelationshipIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Relationship) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceRelationshipIntermediateType{&audienceRelationshipIntermediateType{IRI: v}}, t.audience...) } @@ -405647,20 +405687,20 @@ func (t *Relationship) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Relationship) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Relationship) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Relationship) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentRelationshipIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Relationship) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentRelationshipIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Relationship) PrependContentIRI(v url.URL) { - t.content = append([]*contentRelationshipIntermediateType{&contentRelationshipIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Relationship) PrependContentIRI(v *url.URL) { + t.content = append([]*contentRelationshipIntermediateType{&contentRelationshipIntermediateType{IRI: v}}, t.content...) } @@ -405807,20 +405847,20 @@ func (t *Relationship) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Relationship) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Relationship) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Relationship) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextRelationshipIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Relationship) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextRelationshipIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Relationship) PrependContextIRI(v url.URL) { - t.context = append([]*contextRelationshipIntermediateType{&contextRelationshipIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Relationship) PrependContextIRI(v *url.URL) { + t.context = append([]*contextRelationshipIntermediateType{&contextRelationshipIntermediateType{IRI: v}}, t.context...) } @@ -405932,20 +405972,20 @@ func (t *Relationship) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Relationship) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Relationship) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Relationship) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameRelationshipIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Relationship) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameRelationshipIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Relationship) PrependNameIRI(v url.URL) { - t.name = append([]*nameRelationshipIntermediateType{&nameRelationshipIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Relationship) PrependNameIRI(v *url.URL) { + t.name = append([]*nameRelationshipIntermediateType{&nameRelationshipIntermediateType{IRI: v}}, t.name...) } @@ -406040,14 +406080,14 @@ func (t *Relationship) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Relationship) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Relationship) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Relationship) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeRelationshipIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Relationship) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeRelationshipIntermediateType{IRI: v} } @@ -406151,20 +406191,20 @@ func (t *Relationship) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Relationship) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Relationship) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Relationship) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorRelationshipIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Relationship) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorRelationshipIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Relationship) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorRelationshipIntermediateType{&generatorRelationshipIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Relationship) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorRelationshipIntermediateType{&generatorRelationshipIntermediateType{IRI: v}}, t.generator...) } @@ -406276,20 +406316,20 @@ func (t *Relationship) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Relationship) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Relationship) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Relationship) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconRelationshipIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Relationship) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconRelationshipIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Relationship) PrependIconIRI(v url.URL) { - t.icon = append([]*iconRelationshipIntermediateType{&iconRelationshipIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Relationship) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconRelationshipIntermediateType{&iconRelationshipIntermediateType{IRI: v}}, t.icon...) } @@ -406331,14 +406371,14 @@ func (t *Relationship) HasId() (ok bool) { } // GetId returns the value for id -func (t *Relationship) GetId() (v url.URL) { - return *t.id +func (t *Relationship) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Relationship) SetId(v url.URL) { - t.id = &v +func (t *Relationship) SetId(v *url.URL) { + t.id = v } @@ -406440,20 +406480,20 @@ func (t *Relationship) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Relationship) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Relationship) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Relationship) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageRelationshipIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Relationship) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageRelationshipIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Relationship) PrependImageIRI(v url.URL) { - t.image = append([]*imageRelationshipIntermediateType{&imageRelationshipIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Relationship) PrependImageIRI(v *url.URL) { + t.image = append([]*imageRelationshipIntermediateType{&imageRelationshipIntermediateType{IRI: v}}, t.image...) } @@ -406565,20 +406605,20 @@ func (t *Relationship) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Relationship) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Relationship) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Relationship) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToRelationshipIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Relationship) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToRelationshipIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Relationship) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToRelationshipIntermediateType{&inReplyToRelationshipIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Relationship) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToRelationshipIntermediateType{&inReplyToRelationshipIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -406690,20 +406730,20 @@ func (t *Relationship) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Relationship) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Relationship) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Relationship) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationRelationshipIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Relationship) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationRelationshipIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Relationship) PrependLocationIRI(v url.URL) { - t.location = append([]*locationRelationshipIntermediateType{&locationRelationshipIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Relationship) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationRelationshipIntermediateType{&locationRelationshipIntermediateType{IRI: v}}, t.location...) } @@ -406815,20 +406855,20 @@ func (t *Relationship) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Relationship) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Relationship) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Relationship) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewRelationshipIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Relationship) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewRelationshipIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Relationship) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewRelationshipIntermediateType{&previewRelationshipIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Relationship) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewRelationshipIntermediateType{&previewRelationshipIntermediateType{IRI: v}}, t.preview...) } @@ -406888,14 +406928,14 @@ func (t *Relationship) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Relationship) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Relationship) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Relationship) SetPublishedIRI(v url.URL) { - t.published = &publishedRelationshipIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Relationship) SetPublishedIRI(v *url.URL) { + t.published = &publishedRelationshipIntermediateType{IRI: v} } @@ -406947,14 +406987,14 @@ func (t *Relationship) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Relationship) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Relationship) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Relationship) SetRepliesIRI(v url.URL) { - t.replies = &repliesRelationshipIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Relationship) SetRepliesIRI(v *url.URL) { + t.replies = &repliesRelationshipIntermediateType{IRI: v} } @@ -407006,14 +407046,14 @@ func (t *Relationship) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Relationship) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Relationship) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Relationship) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeRelationshipIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Relationship) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeRelationshipIntermediateType{IRI: v} } @@ -407117,20 +407157,20 @@ func (t *Relationship) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Relationship) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Relationship) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Relationship) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryRelationshipIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Relationship) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryRelationshipIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Relationship) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryRelationshipIntermediateType{&summaryRelationshipIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Relationship) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryRelationshipIntermediateType{&summaryRelationshipIntermediateType{IRI: v}}, t.summary...) } @@ -407277,20 +407317,20 @@ func (t *Relationship) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Relationship) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Relationship) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Relationship) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagRelationshipIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Relationship) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagRelationshipIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Relationship) PrependTagIRI(v url.URL) { - t.tag = append([]*tagRelationshipIntermediateType{&tagRelationshipIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Relationship) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagRelationshipIntermediateType{&tagRelationshipIntermediateType{IRI: v}}, t.tag...) } @@ -407382,14 +407422,14 @@ func (t *Relationship) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Relationship) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Relationship) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Relationship) SetUpdatedIRI(v url.URL) { - t.updated = &updatedRelationshipIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Relationship) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedRelationshipIntermediateType{IRI: v} } @@ -407429,20 +407469,20 @@ func (t *Relationship) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Relationship) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Relationship) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Relationship) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlRelationshipIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Relationship) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlRelationshipIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Relationship) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlRelationshipIntermediateType{&urlRelationshipIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Relationship) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlRelationshipIntermediateType{&urlRelationshipIntermediateType{anyURI: v}}, t.url...) } @@ -407586,20 +407626,20 @@ func (t *Relationship) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Relationship) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Relationship) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Relationship) AppendToIRI(v url.URL) { - t.to = append(t.to, &toRelationshipIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Relationship) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toRelationshipIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Relationship) PrependToIRI(v url.URL) { - t.to = append([]*toRelationshipIntermediateType{&toRelationshipIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Relationship) PrependToIRI(v *url.URL) { + t.to = append([]*toRelationshipIntermediateType{&toRelationshipIntermediateType{IRI: v}}, t.to...) } @@ -407711,20 +407751,20 @@ func (t *Relationship) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Relationship) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Relationship) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Relationship) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoRelationshipIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Relationship) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoRelationshipIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Relationship) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoRelationshipIntermediateType{&btoRelationshipIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Relationship) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoRelationshipIntermediateType{&btoRelationshipIntermediateType{IRI: v}}, t.bto...) } @@ -407836,20 +407876,20 @@ func (t *Relationship) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Relationship) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Relationship) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Relationship) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccRelationshipIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Relationship) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccRelationshipIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Relationship) PrependCcIRI(v url.URL) { - t.cc = append([]*ccRelationshipIntermediateType{&ccRelationshipIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Relationship) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccRelationshipIntermediateType{&ccRelationshipIntermediateType{IRI: v}}, t.cc...) } @@ -407961,20 +408001,20 @@ func (t *Relationship) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Relationship) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Relationship) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Relationship) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccRelationshipIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Relationship) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccRelationshipIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Relationship) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccRelationshipIntermediateType{&bccRelationshipIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Relationship) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccRelationshipIntermediateType{&bccRelationshipIntermediateType{IRI: v}}, t.bcc...) } @@ -408034,14 +408074,14 @@ func (t *Relationship) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Relationship) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Relationship) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Relationship) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeRelationshipIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Relationship) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeRelationshipIntermediateType{IRI: v} } @@ -408093,14 +408133,14 @@ func (t *Relationship) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Relationship) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Relationship) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Relationship) SetDurationIRI(v url.URL) { - t.duration = &durationRelationshipIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Relationship) SetDurationIRI(v *url.URL) { + t.duration = &durationRelationshipIntermediateType{IRI: v} } @@ -408152,14 +408192,14 @@ func (t *Relationship) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Relationship) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Relationship) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Relationship) SetSourceIRI(v url.URL) { - t.source = &sourceRelationshipIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Relationship) SetSourceIRI(v *url.URL) { + t.source = &sourceRelationshipIntermediateType{IRI: v} } @@ -408211,14 +408251,14 @@ func (t *Relationship) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Relationship) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Relationship) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Relationship) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxRelationshipIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Relationship) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxRelationshipIntermediateType{anyURI: v} } @@ -408270,14 +408310,14 @@ func (t *Relationship) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Relationship) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Relationship) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Relationship) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxRelationshipIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Relationship) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxRelationshipIntermediateType{anyURI: v} } @@ -408347,14 +408387,14 @@ func (t *Relationship) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Relationship) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Relationship) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Relationship) SetFollowingAnyURI(v url.URL) { - t.following = &followingRelationshipIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Relationship) SetFollowingAnyURI(v *url.URL) { + t.following = &followingRelationshipIntermediateType{anyURI: v} } @@ -408424,14 +408464,14 @@ func (t *Relationship) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Relationship) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Relationship) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Relationship) SetFollowersAnyURI(v url.URL) { - t.followers = &followersRelationshipIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Relationship) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersRelationshipIntermediateType{anyURI: v} } @@ -408501,14 +408541,14 @@ func (t *Relationship) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Relationship) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Relationship) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Relationship) SetLikedAnyURI(v url.URL) { - t.liked = &likedRelationshipIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Relationship) SetLikedAnyURI(v *url.URL) { + t.liked = &likedRelationshipIntermediateType{anyURI: v} } @@ -408578,14 +408618,14 @@ func (t *Relationship) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Relationship) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Relationship) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Relationship) SetLikesAnyURI(v url.URL) { - t.likes = &likesRelationshipIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Relationship) SetLikesAnyURI(v *url.URL) { + t.likes = &likesRelationshipIntermediateType{anyURI: v} } @@ -408619,26 +408659,27 @@ func (t *Relationship) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Relationship) GetStreams(index int) (v url.URL) { +func (t *Relationship) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Relationship) AppendStreams(v url.URL) { +func (t *Relationship) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Relationship) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Relationship) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Relationship) 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] } @@ -408689,14 +408730,14 @@ func (t *Relationship) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Relationship) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Relationship) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Relationship) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameRelationshipIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Relationship) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameRelationshipIntermediateType{IRI: v} } @@ -408783,14 +408824,14 @@ func (t *Relationship) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Relationship) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Relationship) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Relationship) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsRelationshipIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Relationship) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsRelationshipIntermediateType{IRI: v} } @@ -408824,14 +408865,14 @@ func (t *Relationship) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Relationship) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Relationship) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Relationship) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Relationship) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -408863,14 +408904,14 @@ func (t *Relationship) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Relationship) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Relationship) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Relationship) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Relationship) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -408902,14 +408943,14 @@ func (t *Relationship) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Relationship) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Relationship) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Relationship) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Relationship) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -408941,14 +408982,14 @@ func (t *Relationship) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Relationship) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Relationship) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Relationship) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Relationship) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -408980,14 +409021,14 @@ func (t *Relationship) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Relationship) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Relationship) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Relationship) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Relationship) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -409019,14 +409060,14 @@ func (t *Relationship) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Relationship) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Relationship) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Relationship) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Relationship) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -409247,7 +409288,7 @@ func (t *Relationship) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -409553,7 +409594,7 @@ func (t *Relationship) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -409568,7 +409609,7 @@ func (t *Relationship) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -409583,7 +409624,7 @@ func (t *Relationship) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -409598,7 +409639,7 @@ func (t *Relationship) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -409613,7 +409654,7 @@ func (t *Relationship) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -409628,7 +409669,7 @@ func (t *Relationship) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -410476,7 +410517,7 @@ func (t *Relationship) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -410485,7 +410526,7 @@ func (t *Relationship) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -410699,7 +410740,7 @@ func (t *subjectRelationshipIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -410767,7 +410808,7 @@ func (t *objectRelationshipIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -410835,7 +410876,7 @@ func (t *relationshipRelationshipIntermediateType) Serialize() (i interface{}, e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -410889,7 +410930,7 @@ func (t *altitudeRelationshipIntermediateType) Serialize() (i interface{}, err e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -410972,7 +411013,7 @@ func (t *attachmentRelationshipIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -411055,7 +411096,7 @@ func (t *attributedToRelationshipIntermediateType) Serialize() (i interface{}, e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -411138,7 +411179,7 @@ func (t *audienceRelationshipIntermediateType) Serialize() (i interface{}, err e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -411206,7 +411247,7 @@ func (t *contentRelationshipIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -411289,7 +411330,7 @@ func (t *contextRelationshipIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -411357,7 +411398,7 @@ func (t *nameRelationshipIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -411411,7 +411452,7 @@ func (t *endTimeRelationshipIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -411494,7 +411535,7 @@ func (t *generatorRelationshipIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -411577,7 +411618,7 @@ func (t *iconRelationshipIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -411660,7 +411701,7 @@ func (t *imageRelationshipIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -411743,7 +411784,7 @@ func (t *inReplyToRelationshipIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -411826,7 +411867,7 @@ func (t *locationRelationshipIntermediateType) Serialize() (i interface{}, err e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -411909,7 +411950,7 @@ func (t *previewRelationshipIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -411963,7 +412004,7 @@ func (t *publishedRelationshipIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -412031,7 +412072,7 @@ func (t *repliesRelationshipIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -412085,7 +412126,7 @@ func (t *startTimeRelationshipIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -412153,7 +412194,7 @@ func (t *summaryRelationshipIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -412236,7 +412277,7 @@ func (t *tagRelationshipIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -412290,7 +412331,7 @@ func (t *updatedRelationshipIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -412354,7 +412395,7 @@ func (t *urlRelationshipIntermediateType) Deserialize(i interface{}) (err error) // Serialize turns this object into an interface{}. func (t *urlRelationshipIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -412441,7 +412482,7 @@ func (t *toRelationshipIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -412524,7 +412565,7 @@ func (t *btoRelationshipIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -412607,7 +412648,7 @@ func (t *ccRelationshipIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -412690,7 +412731,7 @@ func (t *bccRelationshipIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -412744,7 +412785,7 @@ func (t *mediaTypeRelationshipIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -412798,7 +412839,7 @@ func (t *durationRelationshipIntermediateType) Serialize() (i interface{}, err e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -412866,7 +412907,7 @@ func (t *sourceRelationshipIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -412934,7 +412975,7 @@ func (t *inboxRelationshipIntermediateType) Serialize() (i interface{}, err erro return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -413002,7 +413043,7 @@ func (t *outboxRelationshipIntermediateType) Serialize() (i interface{}, err err return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -413085,7 +413126,7 @@ func (t *followingRelationshipIntermediateType) Serialize() (i interface{}, err return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -413168,7 +413209,7 @@ func (t *followersRelationshipIntermediateType) Serialize() (i interface{}, err return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -413251,7 +413292,7 @@ func (t *likedRelationshipIntermediateType) Serialize() (i interface{}, err erro return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -413334,7 +413375,7 @@ func (t *likesRelationshipIntermediateType) Serialize() (i interface{}, err erro return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -413388,7 +413429,7 @@ func (t *preferredUsernameRelationshipIntermediateType) Serialize() (i interface return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -413456,7 +413497,7 @@ func (t *endpointsRelationshipIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -413546,7 +413587,7 @@ type Article struct { // 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 + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameArticleIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -413592,14 +413633,14 @@ func (t *Article) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Article) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +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} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Article) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeArticleIntermediateType{IRI: v} } @@ -413703,20 +413744,20 @@ func (t *Article) IsAttachmentIRI(index int) (ok bool) { } // 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 +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}) +// 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...) +// 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...) } @@ -413828,20 +413869,20 @@ func (t *Article) IsAttributedToIRI(index int) (ok bool) { } // 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 +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}) +// 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...) +// 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...) } @@ -413953,20 +413994,20 @@ func (t *Article) IsAudienceIRI(index int) (ok bool) { } // 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 +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}) +// 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...) +// 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...) } @@ -414078,20 +414119,20 @@ func (t *Article) IsContentIRI(index int) (ok bool) { } // 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 +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}) +// 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...) +// 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...) } @@ -414238,20 +414279,20 @@ func (t *Article) IsContextIRI(index int) (ok bool) { } // 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 +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}) +// 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...) +// 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...) } @@ -414363,20 +414404,20 @@ func (t *Article) IsNameIRI(index int) (ok bool) { } // 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 +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}) +// 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...) +// 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...) } @@ -414471,14 +414512,14 @@ func (t *Article) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Article) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +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} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Article) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeArticleIntermediateType{IRI: v} } @@ -414582,20 +414623,20 @@ func (t *Article) IsGeneratorIRI(index int) (ok bool) { } // 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 +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}) +// 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...) +// 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...) } @@ -414707,20 +414748,20 @@ func (t *Article) IsIconIRI(index int) (ok bool) { } // 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 +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}) +// 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...) +// 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...) } @@ -414762,14 +414803,14 @@ func (t *Article) HasId() (ok bool) { } // GetId returns the value for id -func (t *Article) GetId() (v url.URL) { - return *t.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 +func (t *Article) SetId(v *url.URL) { + t.id = v } @@ -414871,20 +414912,20 @@ func (t *Article) IsImageIRI(index int) (ok bool) { } // 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 +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}) +// 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...) +// 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...) } @@ -414996,20 +415037,20 @@ func (t *Article) IsInReplyToIRI(index int) (ok bool) { } // 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 +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}) +// 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...) +// 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...) } @@ -415121,20 +415162,20 @@ func (t *Article) IsLocationIRI(index int) (ok bool) { } // 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 +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}) +// 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...) +// 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...) } @@ -415246,20 +415287,20 @@ func (t *Article) IsPreviewIRI(index int) (ok bool) { } // 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 +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}) +// 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...) +// 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...) } @@ -415319,14 +415360,14 @@ func (t *Article) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Article) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +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} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Article) SetPublishedIRI(v *url.URL) { + t.published = &publishedArticleIntermediateType{IRI: v} } @@ -415378,14 +415419,14 @@ func (t *Article) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Article) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +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} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Article) SetRepliesIRI(v *url.URL) { + t.replies = &repliesArticleIntermediateType{IRI: v} } @@ -415437,14 +415478,14 @@ func (t *Article) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Article) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +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} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Article) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeArticleIntermediateType{IRI: v} } @@ -415548,20 +415589,20 @@ func (t *Article) IsSummaryIRI(index int) (ok bool) { } // 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 +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}) +// 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...) +// 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...) } @@ -415708,20 +415749,20 @@ func (t *Article) IsTagIRI(index int) (ok bool) { } // 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 +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}) +// 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...) +// 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...) } @@ -415813,14 +415854,14 @@ func (t *Article) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Article) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +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} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Article) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedArticleIntermediateType{IRI: v} } @@ -415860,20 +415901,20 @@ func (t *Article) IsUrlAnyURI(index int) (ok bool) { } // 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 +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}) +// 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...) +// 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...) } @@ -416017,20 +416058,20 @@ func (t *Article) IsToIRI(index int) (ok bool) { } // 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 +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}) +// 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...) +// 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...) } @@ -416142,20 +416183,20 @@ func (t *Article) IsBtoIRI(index int) (ok bool) { } // 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 +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}) +// 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...) +// 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...) } @@ -416267,20 +416308,20 @@ func (t *Article) IsCcIRI(index int) (ok bool) { } // 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 +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}) +// 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...) +// 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...) } @@ -416392,20 +416433,20 @@ func (t *Article) IsBccIRI(index int) (ok bool) { } // 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 +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}) +// 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...) +// 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...) } @@ -416465,14 +416506,14 @@ func (t *Article) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Article) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +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} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Article) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeArticleIntermediateType{IRI: v} } @@ -416524,14 +416565,14 @@ func (t *Article) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Article) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +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} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Article) SetDurationIRI(v *url.URL) { + t.duration = &durationArticleIntermediateType{IRI: v} } @@ -416583,14 +416624,14 @@ func (t *Article) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Article) GetSourceIRI() (v url.URL) { - return *t.source.IRI +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} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Article) SetSourceIRI(v *url.URL) { + t.source = &sourceArticleIntermediateType{IRI: v} } @@ -416642,14 +416683,14 @@ func (t *Article) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Article) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +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} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Article) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxArticleIntermediateType{anyURI: v} } @@ -416701,14 +416742,14 @@ func (t *Article) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Article) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +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} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Article) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxArticleIntermediateType{anyURI: v} } @@ -416778,14 +416819,14 @@ func (t *Article) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Article) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +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} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Article) SetFollowingAnyURI(v *url.URL) { + t.following = &followingArticleIntermediateType{anyURI: v} } @@ -416855,14 +416896,14 @@ func (t *Article) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Article) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +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} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Article) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersArticleIntermediateType{anyURI: v} } @@ -416932,14 +416973,14 @@ func (t *Article) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Article) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +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} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Article) SetLikedAnyURI(v *url.URL) { + t.liked = &likedArticleIntermediateType{anyURI: v} } @@ -417009,14 +417050,14 @@ func (t *Article) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Article) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +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} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Article) SetLikesAnyURI(v *url.URL) { + t.likes = &likesArticleIntermediateType{anyURI: v} } @@ -417050,26 +417091,27 @@ func (t *Article) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Article) GetStreams(index int) (v url.URL) { +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) { +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...) +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] } @@ -417120,14 +417162,14 @@ func (t *Article) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Article) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +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} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Article) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameArticleIntermediateType{IRI: v} } @@ -417214,14 +417256,14 @@ func (t *Article) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Article) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +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} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Article) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsArticleIntermediateType{IRI: v} } @@ -417255,14 +417297,14 @@ func (t *Article) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Article) GetProxyUrl() (v url.URL) { - return *t.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 +func (t *Article) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -417294,14 +417336,14 @@ func (t *Article) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Article) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.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 +func (t *Article) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -417333,14 +417375,14 @@ func (t *Article) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Article) GetOauthTokenEndpoint() (v url.URL) { - return *t.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 +func (t *Article) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -417372,14 +417414,14 @@ func (t *Article) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Article) GetProvideClientKey() (v url.URL) { - return *t.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 +func (t *Article) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -417411,14 +417453,14 @@ func (t *Article) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Article) GetSignClientKey() (v url.URL) { - return *t.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 +func (t *Article) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -417450,14 +417492,14 @@ func (t *Article) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Article) GetSharedInbox() (v url.URL) { - return *t.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 +func (t *Article) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -417649,7 +417691,7 @@ func (t *Article) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -417955,7 +417997,7 @@ func (t *Article) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -417970,7 +418012,7 @@ func (t *Article) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -417985,7 +418027,7 @@ func (t *Article) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -418000,7 +418042,7 @@ func (t *Article) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -418015,7 +418057,7 @@ func (t *Article) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -418030,7 +418072,7 @@ func (t *Article) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -418828,7 +418870,7 @@ func (t *Article) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -418837,7 +418879,7 @@ func (t *Article) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -419022,7 +419064,7 @@ func (t *altitudeArticleIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -419105,7 +419147,7 @@ func (t *attachmentArticleIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -419188,7 +419230,7 @@ func (t *attributedToArticleIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -419271,7 +419313,7 @@ func (t *audienceArticleIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -419339,7 +419381,7 @@ func (t *contentArticleIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -419422,7 +419464,7 @@ func (t *contextArticleIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -419490,7 +419532,7 @@ func (t *nameArticleIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -419544,7 +419586,7 @@ func (t *endTimeArticleIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -419627,7 +419669,7 @@ func (t *generatorArticleIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -419710,7 +419752,7 @@ func (t *iconArticleIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -419793,7 +419835,7 @@ func (t *imageArticleIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -419876,7 +419918,7 @@ func (t *inReplyToArticleIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -419959,7 +420001,7 @@ func (t *locationArticleIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -420042,7 +420084,7 @@ func (t *previewArticleIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -420096,7 +420138,7 @@ func (t *publishedArticleIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -420164,7 +420206,7 @@ func (t *repliesArticleIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -420218,7 +420260,7 @@ func (t *startTimeArticleIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -420286,7 +420328,7 @@ func (t *summaryArticleIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -420369,7 +420411,7 @@ func (t *tagArticleIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -420423,7 +420465,7 @@ func (t *updatedArticleIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -420487,7 +420529,7 @@ func (t *urlArticleIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlArticleIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -420574,7 +420616,7 @@ func (t *toArticleIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -420657,7 +420699,7 @@ func (t *btoArticleIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -420740,7 +420782,7 @@ func (t *ccArticleIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -420823,7 +420865,7 @@ func (t *bccArticleIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -420877,7 +420919,7 @@ func (t *mediaTypeArticleIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -420931,7 +420973,7 @@ func (t *durationArticleIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -420999,7 +421041,7 @@ func (t *sourceArticleIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -421067,7 +421109,7 @@ func (t *inboxArticleIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -421135,7 +421177,7 @@ func (t *outboxArticleIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -421218,7 +421260,7 @@ func (t *followingArticleIntermediateType) Serialize() (i interface{}, err error return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -421301,7 +421343,7 @@ func (t *followersArticleIntermediateType) Serialize() (i interface{}, err error return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -421384,7 +421426,7 @@ func (t *likedArticleIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -421467,7 +421509,7 @@ func (t *likesArticleIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -421521,7 +421563,7 @@ func (t *preferredUsernameArticleIntermediateType) Serialize() (i interface{}, e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -421589,7 +421631,7 @@ func (t *endpointsArticleIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -421679,7 +421721,7 @@ type Document struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesDocumentIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameDocumentIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -421725,14 +421767,14 @@ func (t *Document) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Document) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Document) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Document) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeDocumentIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Document) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeDocumentIntermediateType{IRI: v} } @@ -421836,20 +421878,20 @@ func (t *Document) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Document) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Document) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Document) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentDocumentIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Document) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentDocumentIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Document) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentDocumentIntermediateType{&attachmentDocumentIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Document) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentDocumentIntermediateType{&attachmentDocumentIntermediateType{IRI: v}}, t.attachment...) } @@ -421961,20 +422003,20 @@ func (t *Document) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Document) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Document) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Document) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToDocumentIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Document) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToDocumentIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Document) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToDocumentIntermediateType{&attributedToDocumentIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Document) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToDocumentIntermediateType{&attributedToDocumentIntermediateType{IRI: v}}, t.attributedTo...) } @@ -422086,20 +422128,20 @@ func (t *Document) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Document) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Document) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Document) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceDocumentIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Document) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceDocumentIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Document) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceDocumentIntermediateType{&audienceDocumentIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Document) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceDocumentIntermediateType{&audienceDocumentIntermediateType{IRI: v}}, t.audience...) } @@ -422211,20 +422253,20 @@ func (t *Document) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Document) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Document) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Document) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentDocumentIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Document) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentDocumentIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Document) PrependContentIRI(v url.URL) { - t.content = append([]*contentDocumentIntermediateType{&contentDocumentIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Document) PrependContentIRI(v *url.URL) { + t.content = append([]*contentDocumentIntermediateType{&contentDocumentIntermediateType{IRI: v}}, t.content...) } @@ -422371,20 +422413,20 @@ func (t *Document) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Document) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Document) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Document) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextDocumentIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Document) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextDocumentIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Document) PrependContextIRI(v url.URL) { - t.context = append([]*contextDocumentIntermediateType{&contextDocumentIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Document) PrependContextIRI(v *url.URL) { + t.context = append([]*contextDocumentIntermediateType{&contextDocumentIntermediateType{IRI: v}}, t.context...) } @@ -422496,20 +422538,20 @@ func (t *Document) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Document) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Document) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Document) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameDocumentIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Document) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameDocumentIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Document) PrependNameIRI(v url.URL) { - t.name = append([]*nameDocumentIntermediateType{&nameDocumentIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Document) PrependNameIRI(v *url.URL) { + t.name = append([]*nameDocumentIntermediateType{&nameDocumentIntermediateType{IRI: v}}, t.name...) } @@ -422604,14 +422646,14 @@ func (t *Document) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Document) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Document) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Document) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeDocumentIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Document) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeDocumentIntermediateType{IRI: v} } @@ -422715,20 +422757,20 @@ func (t *Document) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Document) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Document) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Document) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorDocumentIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Document) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorDocumentIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Document) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorDocumentIntermediateType{&generatorDocumentIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Document) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorDocumentIntermediateType{&generatorDocumentIntermediateType{IRI: v}}, t.generator...) } @@ -422840,20 +422882,20 @@ func (t *Document) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Document) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Document) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Document) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconDocumentIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Document) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconDocumentIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Document) PrependIconIRI(v url.URL) { - t.icon = append([]*iconDocumentIntermediateType{&iconDocumentIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Document) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconDocumentIntermediateType{&iconDocumentIntermediateType{IRI: v}}, t.icon...) } @@ -422895,14 +422937,14 @@ func (t *Document) HasId() (ok bool) { } // GetId returns the value for id -func (t *Document) GetId() (v url.URL) { - return *t.id +func (t *Document) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Document) SetId(v url.URL) { - t.id = &v +func (t *Document) SetId(v *url.URL) { + t.id = v } @@ -423004,20 +423046,20 @@ func (t *Document) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Document) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Document) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Document) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageDocumentIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Document) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageDocumentIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Document) PrependImageIRI(v url.URL) { - t.image = append([]*imageDocumentIntermediateType{&imageDocumentIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Document) PrependImageIRI(v *url.URL) { + t.image = append([]*imageDocumentIntermediateType{&imageDocumentIntermediateType{IRI: v}}, t.image...) } @@ -423129,20 +423171,20 @@ func (t *Document) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Document) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Document) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Document) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToDocumentIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Document) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToDocumentIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Document) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToDocumentIntermediateType{&inReplyToDocumentIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Document) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToDocumentIntermediateType{&inReplyToDocumentIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -423254,20 +423296,20 @@ func (t *Document) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Document) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Document) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Document) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationDocumentIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Document) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationDocumentIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Document) PrependLocationIRI(v url.URL) { - t.location = append([]*locationDocumentIntermediateType{&locationDocumentIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Document) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationDocumentIntermediateType{&locationDocumentIntermediateType{IRI: v}}, t.location...) } @@ -423379,20 +423421,20 @@ func (t *Document) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Document) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Document) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Document) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewDocumentIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Document) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewDocumentIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Document) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewDocumentIntermediateType{&previewDocumentIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Document) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewDocumentIntermediateType{&previewDocumentIntermediateType{IRI: v}}, t.preview...) } @@ -423452,14 +423494,14 @@ func (t *Document) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Document) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Document) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Document) SetPublishedIRI(v url.URL) { - t.published = &publishedDocumentIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Document) SetPublishedIRI(v *url.URL) { + t.published = &publishedDocumentIntermediateType{IRI: v} } @@ -423511,14 +423553,14 @@ func (t *Document) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Document) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Document) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Document) SetRepliesIRI(v url.URL) { - t.replies = &repliesDocumentIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Document) SetRepliesIRI(v *url.URL) { + t.replies = &repliesDocumentIntermediateType{IRI: v} } @@ -423570,14 +423612,14 @@ func (t *Document) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Document) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Document) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Document) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeDocumentIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Document) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeDocumentIntermediateType{IRI: v} } @@ -423681,20 +423723,20 @@ func (t *Document) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Document) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Document) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Document) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryDocumentIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Document) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryDocumentIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Document) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryDocumentIntermediateType{&summaryDocumentIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Document) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryDocumentIntermediateType{&summaryDocumentIntermediateType{IRI: v}}, t.summary...) } @@ -423841,20 +423883,20 @@ func (t *Document) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Document) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Document) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Document) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagDocumentIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Document) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagDocumentIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Document) PrependTagIRI(v url.URL) { - t.tag = append([]*tagDocumentIntermediateType{&tagDocumentIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Document) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagDocumentIntermediateType{&tagDocumentIntermediateType{IRI: v}}, t.tag...) } @@ -423946,14 +423988,14 @@ func (t *Document) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Document) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Document) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Document) SetUpdatedIRI(v url.URL) { - t.updated = &updatedDocumentIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Document) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedDocumentIntermediateType{IRI: v} } @@ -423993,20 +424035,20 @@ func (t *Document) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Document) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Document) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Document) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlDocumentIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Document) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlDocumentIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Document) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlDocumentIntermediateType{&urlDocumentIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Document) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlDocumentIntermediateType{&urlDocumentIntermediateType{anyURI: v}}, t.url...) } @@ -424150,20 +424192,20 @@ func (t *Document) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Document) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Document) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Document) AppendToIRI(v url.URL) { - t.to = append(t.to, &toDocumentIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Document) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toDocumentIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Document) PrependToIRI(v url.URL) { - t.to = append([]*toDocumentIntermediateType{&toDocumentIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Document) PrependToIRI(v *url.URL) { + t.to = append([]*toDocumentIntermediateType{&toDocumentIntermediateType{IRI: v}}, t.to...) } @@ -424275,20 +424317,20 @@ func (t *Document) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Document) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Document) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Document) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoDocumentIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Document) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoDocumentIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Document) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoDocumentIntermediateType{&btoDocumentIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Document) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoDocumentIntermediateType{&btoDocumentIntermediateType{IRI: v}}, t.bto...) } @@ -424400,20 +424442,20 @@ func (t *Document) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Document) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Document) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Document) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccDocumentIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Document) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccDocumentIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Document) PrependCcIRI(v url.URL) { - t.cc = append([]*ccDocumentIntermediateType{&ccDocumentIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Document) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccDocumentIntermediateType{&ccDocumentIntermediateType{IRI: v}}, t.cc...) } @@ -424525,20 +424567,20 @@ func (t *Document) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Document) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Document) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Document) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccDocumentIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Document) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccDocumentIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Document) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccDocumentIntermediateType{&bccDocumentIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Document) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccDocumentIntermediateType{&bccDocumentIntermediateType{IRI: v}}, t.bcc...) } @@ -424598,14 +424640,14 @@ func (t *Document) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Document) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Document) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Document) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeDocumentIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Document) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeDocumentIntermediateType{IRI: v} } @@ -424657,14 +424699,14 @@ func (t *Document) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Document) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Document) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Document) SetDurationIRI(v url.URL) { - t.duration = &durationDocumentIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Document) SetDurationIRI(v *url.URL) { + t.duration = &durationDocumentIntermediateType{IRI: v} } @@ -424716,14 +424758,14 @@ func (t *Document) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Document) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Document) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Document) SetSourceIRI(v url.URL) { - t.source = &sourceDocumentIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Document) SetSourceIRI(v *url.URL) { + t.source = &sourceDocumentIntermediateType{IRI: v} } @@ -424775,14 +424817,14 @@ func (t *Document) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Document) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Document) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Document) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxDocumentIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Document) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxDocumentIntermediateType{anyURI: v} } @@ -424834,14 +424876,14 @@ func (t *Document) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Document) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Document) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Document) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxDocumentIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Document) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxDocumentIntermediateType{anyURI: v} } @@ -424911,14 +424953,14 @@ func (t *Document) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Document) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Document) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Document) SetFollowingAnyURI(v url.URL) { - t.following = &followingDocumentIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Document) SetFollowingAnyURI(v *url.URL) { + t.following = &followingDocumentIntermediateType{anyURI: v} } @@ -424988,14 +425030,14 @@ func (t *Document) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Document) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Document) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Document) SetFollowersAnyURI(v url.URL) { - t.followers = &followersDocumentIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Document) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersDocumentIntermediateType{anyURI: v} } @@ -425065,14 +425107,14 @@ func (t *Document) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Document) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Document) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Document) SetLikedAnyURI(v url.URL) { - t.liked = &likedDocumentIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Document) SetLikedAnyURI(v *url.URL) { + t.liked = &likedDocumentIntermediateType{anyURI: v} } @@ -425142,14 +425184,14 @@ func (t *Document) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Document) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Document) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Document) SetLikesAnyURI(v url.URL) { - t.likes = &likesDocumentIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Document) SetLikesAnyURI(v *url.URL) { + t.likes = &likesDocumentIntermediateType{anyURI: v} } @@ -425183,26 +425225,27 @@ func (t *Document) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Document) GetStreams(index int) (v url.URL) { +func (t *Document) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Document) AppendStreams(v url.URL) { +func (t *Document) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Document) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Document) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Document) 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] } @@ -425253,14 +425296,14 @@ func (t *Document) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Document) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Document) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Document) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameDocumentIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Document) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameDocumentIntermediateType{IRI: v} } @@ -425347,14 +425390,14 @@ func (t *Document) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Document) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Document) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Document) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsDocumentIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Document) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsDocumentIntermediateType{IRI: v} } @@ -425388,14 +425431,14 @@ func (t *Document) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Document) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Document) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Document) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Document) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -425427,14 +425470,14 @@ func (t *Document) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Document) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Document) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Document) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Document) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -425466,14 +425509,14 @@ func (t *Document) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Document) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Document) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Document) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Document) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -425505,14 +425548,14 @@ func (t *Document) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Document) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Document) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Document) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Document) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -425544,14 +425587,14 @@ func (t *Document) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Document) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Document) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Document) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Document) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -425583,14 +425626,14 @@ func (t *Document) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Document) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Document) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Document) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Document) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -425782,7 +425825,7 @@ func (t *Document) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -426088,7 +426131,7 @@ func (t *Document) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -426103,7 +426146,7 @@ func (t *Document) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -426118,7 +426161,7 @@ func (t *Document) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -426133,7 +426176,7 @@ func (t *Document) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -426148,7 +426191,7 @@ func (t *Document) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -426163,7 +426206,7 @@ func (t *Document) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -426961,7 +427004,7 @@ func (t *Document) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -426970,7 +427013,7 @@ func (t *Document) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -427155,7 +427198,7 @@ func (t *altitudeDocumentIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -427238,7 +427281,7 @@ func (t *attachmentDocumentIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -427321,7 +427364,7 @@ func (t *attributedToDocumentIntermediateType) Serialize() (i interface{}, err e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -427404,7 +427447,7 @@ func (t *audienceDocumentIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -427472,7 +427515,7 @@ func (t *contentDocumentIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -427555,7 +427598,7 @@ func (t *contextDocumentIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -427623,7 +427666,7 @@ func (t *nameDocumentIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -427677,7 +427720,7 @@ func (t *endTimeDocumentIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -427760,7 +427803,7 @@ func (t *generatorDocumentIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -427843,7 +427886,7 @@ func (t *iconDocumentIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -427926,7 +427969,7 @@ func (t *imageDocumentIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -428009,7 +428052,7 @@ func (t *inReplyToDocumentIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -428092,7 +428135,7 @@ func (t *locationDocumentIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -428175,7 +428218,7 @@ func (t *previewDocumentIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -428229,7 +428272,7 @@ func (t *publishedDocumentIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -428297,7 +428340,7 @@ func (t *repliesDocumentIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -428351,7 +428394,7 @@ func (t *startTimeDocumentIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -428419,7 +428462,7 @@ func (t *summaryDocumentIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -428502,7 +428545,7 @@ func (t *tagDocumentIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -428556,7 +428599,7 @@ func (t *updatedDocumentIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -428620,7 +428663,7 @@ func (t *urlDocumentIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlDocumentIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -428707,7 +428750,7 @@ func (t *toDocumentIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -428790,7 +428833,7 @@ func (t *btoDocumentIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -428873,7 +428916,7 @@ func (t *ccDocumentIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -428956,7 +428999,7 @@ func (t *bccDocumentIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -429010,7 +429053,7 @@ func (t *mediaTypeDocumentIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -429064,7 +429107,7 @@ func (t *durationDocumentIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -429132,7 +429175,7 @@ func (t *sourceDocumentIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -429200,7 +429243,7 @@ func (t *inboxDocumentIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -429268,7 +429311,7 @@ func (t *outboxDocumentIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -429351,7 +429394,7 @@ func (t *followingDocumentIntermediateType) Serialize() (i interface{}, err erro return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -429434,7 +429477,7 @@ func (t *followersDocumentIntermediateType) Serialize() (i interface{}, err erro return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -429517,7 +429560,7 @@ func (t *likedDocumentIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -429600,7 +429643,7 @@ func (t *likesDocumentIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -429654,7 +429697,7 @@ func (t *preferredUsernameDocumentIntermediateType) Serialize() (i interface{}, return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -429722,7 +429765,7 @@ func (t *endpointsDocumentIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -429812,7 +429855,7 @@ type Audio struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesAudioIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameAudioIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -429858,14 +429901,14 @@ func (t *Audio) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Audio) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Audio) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Audio) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeAudioIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Audio) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeAudioIntermediateType{IRI: v} } @@ -429969,20 +430012,20 @@ func (t *Audio) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Audio) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Audio) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Audio) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentAudioIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Audio) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentAudioIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Audio) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentAudioIntermediateType{&attachmentAudioIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Audio) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentAudioIntermediateType{&attachmentAudioIntermediateType{IRI: v}}, t.attachment...) } @@ -430094,20 +430137,20 @@ func (t *Audio) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Audio) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Audio) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Audio) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToAudioIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Audio) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToAudioIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Audio) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToAudioIntermediateType{&attributedToAudioIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Audio) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToAudioIntermediateType{&attributedToAudioIntermediateType{IRI: v}}, t.attributedTo...) } @@ -430219,20 +430262,20 @@ func (t *Audio) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Audio) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Audio) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Audio) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceAudioIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Audio) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceAudioIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Audio) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceAudioIntermediateType{&audienceAudioIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Audio) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceAudioIntermediateType{&audienceAudioIntermediateType{IRI: v}}, t.audience...) } @@ -430344,20 +430387,20 @@ func (t *Audio) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Audio) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Audio) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Audio) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentAudioIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Audio) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentAudioIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Audio) PrependContentIRI(v url.URL) { - t.content = append([]*contentAudioIntermediateType{&contentAudioIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Audio) PrependContentIRI(v *url.URL) { + t.content = append([]*contentAudioIntermediateType{&contentAudioIntermediateType{IRI: v}}, t.content...) } @@ -430504,20 +430547,20 @@ func (t *Audio) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Audio) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Audio) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Audio) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextAudioIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Audio) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextAudioIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Audio) PrependContextIRI(v url.URL) { - t.context = append([]*contextAudioIntermediateType{&contextAudioIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Audio) PrependContextIRI(v *url.URL) { + t.context = append([]*contextAudioIntermediateType{&contextAudioIntermediateType{IRI: v}}, t.context...) } @@ -430629,20 +430672,20 @@ func (t *Audio) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Audio) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Audio) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Audio) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameAudioIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Audio) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameAudioIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Audio) PrependNameIRI(v url.URL) { - t.name = append([]*nameAudioIntermediateType{&nameAudioIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Audio) PrependNameIRI(v *url.URL) { + t.name = append([]*nameAudioIntermediateType{&nameAudioIntermediateType{IRI: v}}, t.name...) } @@ -430737,14 +430780,14 @@ func (t *Audio) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Audio) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Audio) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Audio) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeAudioIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Audio) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeAudioIntermediateType{IRI: v} } @@ -430848,20 +430891,20 @@ func (t *Audio) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Audio) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Audio) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Audio) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorAudioIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Audio) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorAudioIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Audio) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorAudioIntermediateType{&generatorAudioIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Audio) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorAudioIntermediateType{&generatorAudioIntermediateType{IRI: v}}, t.generator...) } @@ -430973,20 +431016,20 @@ func (t *Audio) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Audio) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Audio) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Audio) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconAudioIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Audio) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconAudioIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Audio) PrependIconIRI(v url.URL) { - t.icon = append([]*iconAudioIntermediateType{&iconAudioIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Audio) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconAudioIntermediateType{&iconAudioIntermediateType{IRI: v}}, t.icon...) } @@ -431028,14 +431071,14 @@ func (t *Audio) HasId() (ok bool) { } // GetId returns the value for id -func (t *Audio) GetId() (v url.URL) { - return *t.id +func (t *Audio) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Audio) SetId(v url.URL) { - t.id = &v +func (t *Audio) SetId(v *url.URL) { + t.id = v } @@ -431137,20 +431180,20 @@ func (t *Audio) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Audio) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Audio) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Audio) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageAudioIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Audio) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageAudioIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Audio) PrependImageIRI(v url.URL) { - t.image = append([]*imageAudioIntermediateType{&imageAudioIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Audio) PrependImageIRI(v *url.URL) { + t.image = append([]*imageAudioIntermediateType{&imageAudioIntermediateType{IRI: v}}, t.image...) } @@ -431262,20 +431305,20 @@ func (t *Audio) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Audio) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Audio) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Audio) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToAudioIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Audio) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToAudioIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Audio) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToAudioIntermediateType{&inReplyToAudioIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Audio) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToAudioIntermediateType{&inReplyToAudioIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -431387,20 +431430,20 @@ func (t *Audio) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Audio) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Audio) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Audio) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationAudioIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Audio) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationAudioIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Audio) PrependLocationIRI(v url.URL) { - t.location = append([]*locationAudioIntermediateType{&locationAudioIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Audio) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationAudioIntermediateType{&locationAudioIntermediateType{IRI: v}}, t.location...) } @@ -431512,20 +431555,20 @@ func (t *Audio) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Audio) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Audio) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Audio) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewAudioIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Audio) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewAudioIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Audio) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewAudioIntermediateType{&previewAudioIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Audio) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewAudioIntermediateType{&previewAudioIntermediateType{IRI: v}}, t.preview...) } @@ -431585,14 +431628,14 @@ func (t *Audio) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Audio) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Audio) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Audio) SetPublishedIRI(v url.URL) { - t.published = &publishedAudioIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Audio) SetPublishedIRI(v *url.URL) { + t.published = &publishedAudioIntermediateType{IRI: v} } @@ -431644,14 +431687,14 @@ func (t *Audio) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Audio) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Audio) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Audio) SetRepliesIRI(v url.URL) { - t.replies = &repliesAudioIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Audio) SetRepliesIRI(v *url.URL) { + t.replies = &repliesAudioIntermediateType{IRI: v} } @@ -431703,14 +431746,14 @@ func (t *Audio) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Audio) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Audio) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Audio) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeAudioIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Audio) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeAudioIntermediateType{IRI: v} } @@ -431814,20 +431857,20 @@ func (t *Audio) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Audio) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Audio) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Audio) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryAudioIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Audio) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryAudioIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Audio) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryAudioIntermediateType{&summaryAudioIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Audio) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryAudioIntermediateType{&summaryAudioIntermediateType{IRI: v}}, t.summary...) } @@ -431974,20 +432017,20 @@ func (t *Audio) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Audio) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Audio) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Audio) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagAudioIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Audio) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagAudioIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Audio) PrependTagIRI(v url.URL) { - t.tag = append([]*tagAudioIntermediateType{&tagAudioIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Audio) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagAudioIntermediateType{&tagAudioIntermediateType{IRI: v}}, t.tag...) } @@ -432079,14 +432122,14 @@ func (t *Audio) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Audio) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Audio) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Audio) SetUpdatedIRI(v url.URL) { - t.updated = &updatedAudioIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Audio) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedAudioIntermediateType{IRI: v} } @@ -432126,20 +432169,20 @@ func (t *Audio) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Audio) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Audio) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Audio) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlAudioIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Audio) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlAudioIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Audio) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlAudioIntermediateType{&urlAudioIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Audio) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlAudioIntermediateType{&urlAudioIntermediateType{anyURI: v}}, t.url...) } @@ -432283,20 +432326,20 @@ func (t *Audio) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Audio) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Audio) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Audio) AppendToIRI(v url.URL) { - t.to = append(t.to, &toAudioIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Audio) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toAudioIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Audio) PrependToIRI(v url.URL) { - t.to = append([]*toAudioIntermediateType{&toAudioIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Audio) PrependToIRI(v *url.URL) { + t.to = append([]*toAudioIntermediateType{&toAudioIntermediateType{IRI: v}}, t.to...) } @@ -432408,20 +432451,20 @@ func (t *Audio) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Audio) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Audio) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Audio) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoAudioIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Audio) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoAudioIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Audio) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoAudioIntermediateType{&btoAudioIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Audio) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoAudioIntermediateType{&btoAudioIntermediateType{IRI: v}}, t.bto...) } @@ -432533,20 +432576,20 @@ func (t *Audio) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Audio) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Audio) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Audio) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccAudioIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Audio) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccAudioIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Audio) PrependCcIRI(v url.URL) { - t.cc = append([]*ccAudioIntermediateType{&ccAudioIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Audio) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccAudioIntermediateType{&ccAudioIntermediateType{IRI: v}}, t.cc...) } @@ -432658,20 +432701,20 @@ func (t *Audio) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Audio) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Audio) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Audio) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccAudioIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Audio) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccAudioIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Audio) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccAudioIntermediateType{&bccAudioIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Audio) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccAudioIntermediateType{&bccAudioIntermediateType{IRI: v}}, t.bcc...) } @@ -432731,14 +432774,14 @@ func (t *Audio) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Audio) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Audio) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Audio) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeAudioIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Audio) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeAudioIntermediateType{IRI: v} } @@ -432790,14 +432833,14 @@ func (t *Audio) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Audio) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Audio) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Audio) SetDurationIRI(v url.URL) { - t.duration = &durationAudioIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Audio) SetDurationIRI(v *url.URL) { + t.duration = &durationAudioIntermediateType{IRI: v} } @@ -432849,14 +432892,14 @@ func (t *Audio) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Audio) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Audio) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Audio) SetSourceIRI(v url.URL) { - t.source = &sourceAudioIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Audio) SetSourceIRI(v *url.URL) { + t.source = &sourceAudioIntermediateType{IRI: v} } @@ -432908,14 +432951,14 @@ func (t *Audio) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Audio) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Audio) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Audio) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxAudioIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Audio) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxAudioIntermediateType{anyURI: v} } @@ -432967,14 +433010,14 @@ func (t *Audio) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Audio) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Audio) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Audio) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxAudioIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Audio) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxAudioIntermediateType{anyURI: v} } @@ -433044,14 +433087,14 @@ func (t *Audio) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Audio) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Audio) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Audio) SetFollowingAnyURI(v url.URL) { - t.following = &followingAudioIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Audio) SetFollowingAnyURI(v *url.URL) { + t.following = &followingAudioIntermediateType{anyURI: v} } @@ -433121,14 +433164,14 @@ func (t *Audio) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Audio) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Audio) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Audio) SetFollowersAnyURI(v url.URL) { - t.followers = &followersAudioIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Audio) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersAudioIntermediateType{anyURI: v} } @@ -433198,14 +433241,14 @@ func (t *Audio) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Audio) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Audio) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Audio) SetLikedAnyURI(v url.URL) { - t.liked = &likedAudioIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Audio) SetLikedAnyURI(v *url.URL) { + t.liked = &likedAudioIntermediateType{anyURI: v} } @@ -433275,14 +433318,14 @@ func (t *Audio) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Audio) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Audio) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Audio) SetLikesAnyURI(v url.URL) { - t.likes = &likesAudioIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Audio) SetLikesAnyURI(v *url.URL) { + t.likes = &likesAudioIntermediateType{anyURI: v} } @@ -433316,26 +433359,27 @@ func (t *Audio) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Audio) GetStreams(index int) (v url.URL) { +func (t *Audio) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Audio) AppendStreams(v url.URL) { +func (t *Audio) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Audio) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Audio) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Audio) 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] } @@ -433386,14 +433430,14 @@ func (t *Audio) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Audio) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Audio) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Audio) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameAudioIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Audio) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameAudioIntermediateType{IRI: v} } @@ -433480,14 +433524,14 @@ func (t *Audio) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Audio) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Audio) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Audio) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsAudioIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Audio) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsAudioIntermediateType{IRI: v} } @@ -433521,14 +433565,14 @@ func (t *Audio) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Audio) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Audio) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Audio) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Audio) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -433560,14 +433604,14 @@ func (t *Audio) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Audio) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Audio) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Audio) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Audio) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -433599,14 +433643,14 @@ func (t *Audio) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Audio) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Audio) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Audio) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Audio) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -433638,14 +433682,14 @@ func (t *Audio) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Audio) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Audio) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Audio) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Audio) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -433677,14 +433721,14 @@ func (t *Audio) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Audio) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Audio) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Audio) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Audio) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -433716,14 +433760,14 @@ func (t *Audio) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Audio) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Audio) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Audio) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Audio) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -433915,7 +433959,7 @@ func (t *Audio) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -434221,7 +434265,7 @@ func (t *Audio) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -434236,7 +434280,7 @@ func (t *Audio) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -434251,7 +434295,7 @@ func (t *Audio) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -434266,7 +434310,7 @@ func (t *Audio) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -434281,7 +434325,7 @@ func (t *Audio) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -434296,7 +434340,7 @@ func (t *Audio) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -435094,7 +435138,7 @@ func (t *Audio) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -435103,7 +435147,7 @@ func (t *Audio) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -435288,7 +435332,7 @@ func (t *altitudeAudioIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -435371,7 +435415,7 @@ func (t *attachmentAudioIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -435454,7 +435498,7 @@ func (t *attributedToAudioIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -435537,7 +435581,7 @@ func (t *audienceAudioIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -435605,7 +435649,7 @@ func (t *contentAudioIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -435688,7 +435732,7 @@ func (t *contextAudioIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -435756,7 +435800,7 @@ func (t *nameAudioIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -435810,7 +435854,7 @@ func (t *endTimeAudioIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -435893,7 +435937,7 @@ func (t *generatorAudioIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -435976,7 +436020,7 @@ func (t *iconAudioIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -436059,7 +436103,7 @@ func (t *imageAudioIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -436142,7 +436186,7 @@ func (t *inReplyToAudioIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -436225,7 +436269,7 @@ func (t *locationAudioIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -436308,7 +436352,7 @@ func (t *previewAudioIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -436362,7 +436406,7 @@ func (t *publishedAudioIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -436430,7 +436474,7 @@ func (t *repliesAudioIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -436484,7 +436528,7 @@ func (t *startTimeAudioIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -436552,7 +436596,7 @@ func (t *summaryAudioIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -436635,7 +436679,7 @@ func (t *tagAudioIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -436689,7 +436733,7 @@ func (t *updatedAudioIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -436753,7 +436797,7 @@ func (t *urlAudioIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlAudioIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -436840,7 +436884,7 @@ func (t *toAudioIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -436923,7 +436967,7 @@ func (t *btoAudioIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -437006,7 +437050,7 @@ func (t *ccAudioIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -437089,7 +437133,7 @@ func (t *bccAudioIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -437143,7 +437187,7 @@ func (t *mediaTypeAudioIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -437197,7 +437241,7 @@ func (t *durationAudioIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -437265,7 +437309,7 @@ func (t *sourceAudioIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -437333,7 +437377,7 @@ func (t *inboxAudioIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -437401,7 +437445,7 @@ func (t *outboxAudioIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -437484,7 +437528,7 @@ func (t *followingAudioIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -437567,7 +437611,7 @@ func (t *followersAudioIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -437650,7 +437694,7 @@ func (t *likedAudioIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -437733,7 +437777,7 @@ func (t *likesAudioIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -437787,7 +437831,7 @@ func (t *preferredUsernameAudioIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -437855,7 +437899,7 @@ func (t *endpointsAudioIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -437949,7 +437993,7 @@ type Image struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesImageIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameImageIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -437995,14 +438039,14 @@ func (t *Image) IsHeightIRI() (ok bool) { } // GetHeightIRI returns the value safely if IsHeightIRI returned true -func (t *Image) GetHeightIRI() (v url.URL) { - return *t.height.IRI +func (t *Image) GetHeightIRI() (v *url.URL) { + return t.height.IRI } -// SetHeightIRI sets the value of height to be of url.URL type -func (t *Image) SetHeightIRI(v url.URL) { - t.height = &heightImageIntermediateType{IRI: &v} +// SetHeightIRI sets the value of height to be of *url.URL type +func (t *Image) SetHeightIRI(v *url.URL) { + t.height = &heightImageIntermediateType{IRI: v} } @@ -438054,14 +438098,14 @@ func (t *Image) IsWidthIRI() (ok bool) { } // GetWidthIRI returns the value safely if IsWidthIRI returned true -func (t *Image) GetWidthIRI() (v url.URL) { - return *t.width.IRI +func (t *Image) GetWidthIRI() (v *url.URL) { + return t.width.IRI } -// SetWidthIRI sets the value of width to be of url.URL type -func (t *Image) SetWidthIRI(v url.URL) { - t.width = &widthImageIntermediateType{IRI: &v} +// SetWidthIRI sets the value of width to be of *url.URL type +func (t *Image) SetWidthIRI(v *url.URL) { + t.width = &widthImageIntermediateType{IRI: v} } @@ -438113,14 +438157,14 @@ func (t *Image) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Image) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Image) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Image) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeImageIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Image) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeImageIntermediateType{IRI: v} } @@ -438224,20 +438268,20 @@ func (t *Image) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Image) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Image) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Image) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentImageIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Image) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentImageIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Image) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentImageIntermediateType{&attachmentImageIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Image) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentImageIntermediateType{&attachmentImageIntermediateType{IRI: v}}, t.attachment...) } @@ -438349,20 +438393,20 @@ func (t *Image) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Image) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Image) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Image) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToImageIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Image) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToImageIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Image) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToImageIntermediateType{&attributedToImageIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Image) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToImageIntermediateType{&attributedToImageIntermediateType{IRI: v}}, t.attributedTo...) } @@ -438474,20 +438518,20 @@ func (t *Image) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Image) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Image) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Image) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceImageIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Image) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceImageIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Image) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceImageIntermediateType{&audienceImageIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Image) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceImageIntermediateType{&audienceImageIntermediateType{IRI: v}}, t.audience...) } @@ -438599,20 +438643,20 @@ func (t *Image) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Image) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Image) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Image) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentImageIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Image) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentImageIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Image) PrependContentIRI(v url.URL) { - t.content = append([]*contentImageIntermediateType{&contentImageIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Image) PrependContentIRI(v *url.URL) { + t.content = append([]*contentImageIntermediateType{&contentImageIntermediateType{IRI: v}}, t.content...) } @@ -438759,20 +438803,20 @@ func (t *Image) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Image) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Image) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Image) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextImageIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Image) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextImageIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Image) PrependContextIRI(v url.URL) { - t.context = append([]*contextImageIntermediateType{&contextImageIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Image) PrependContextIRI(v *url.URL) { + t.context = append([]*contextImageIntermediateType{&contextImageIntermediateType{IRI: v}}, t.context...) } @@ -438884,20 +438928,20 @@ func (t *Image) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Image) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Image) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Image) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameImageIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Image) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameImageIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Image) PrependNameIRI(v url.URL) { - t.name = append([]*nameImageIntermediateType{&nameImageIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Image) PrependNameIRI(v *url.URL) { + t.name = append([]*nameImageIntermediateType{&nameImageIntermediateType{IRI: v}}, t.name...) } @@ -438992,14 +439036,14 @@ func (t *Image) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Image) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Image) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Image) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeImageIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Image) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeImageIntermediateType{IRI: v} } @@ -439103,20 +439147,20 @@ func (t *Image) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Image) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Image) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Image) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorImageIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Image) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorImageIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Image) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorImageIntermediateType{&generatorImageIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Image) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorImageIntermediateType{&generatorImageIntermediateType{IRI: v}}, t.generator...) } @@ -439228,20 +439272,20 @@ func (t *Image) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Image) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Image) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Image) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconImageIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Image) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconImageIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Image) PrependIconIRI(v url.URL) { - t.icon = append([]*iconImageIntermediateType{&iconImageIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Image) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconImageIntermediateType{&iconImageIntermediateType{IRI: v}}, t.icon...) } @@ -439283,14 +439327,14 @@ func (t *Image) HasId() (ok bool) { } // GetId returns the value for id -func (t *Image) GetId() (v url.URL) { - return *t.id +func (t *Image) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Image) SetId(v url.URL) { - t.id = &v +func (t *Image) SetId(v *url.URL) { + t.id = v } @@ -439392,20 +439436,20 @@ func (t *Image) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Image) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Image) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Image) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageImageIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Image) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageImageIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Image) PrependImageIRI(v url.URL) { - t.image = append([]*imageImageIntermediateType{&imageImageIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Image) PrependImageIRI(v *url.URL) { + t.image = append([]*imageImageIntermediateType{&imageImageIntermediateType{IRI: v}}, t.image...) } @@ -439517,20 +439561,20 @@ func (t *Image) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Image) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Image) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Image) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToImageIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Image) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToImageIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Image) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToImageIntermediateType{&inReplyToImageIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Image) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToImageIntermediateType{&inReplyToImageIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -439642,20 +439686,20 @@ func (t *Image) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Image) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Image) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Image) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationImageIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Image) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationImageIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Image) PrependLocationIRI(v url.URL) { - t.location = append([]*locationImageIntermediateType{&locationImageIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Image) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationImageIntermediateType{&locationImageIntermediateType{IRI: v}}, t.location...) } @@ -439767,20 +439811,20 @@ func (t *Image) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Image) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Image) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Image) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewImageIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Image) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewImageIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Image) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewImageIntermediateType{&previewImageIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Image) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewImageIntermediateType{&previewImageIntermediateType{IRI: v}}, t.preview...) } @@ -439840,14 +439884,14 @@ func (t *Image) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Image) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Image) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Image) SetPublishedIRI(v url.URL) { - t.published = &publishedImageIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Image) SetPublishedIRI(v *url.URL) { + t.published = &publishedImageIntermediateType{IRI: v} } @@ -439899,14 +439943,14 @@ func (t *Image) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Image) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Image) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Image) SetRepliesIRI(v url.URL) { - t.replies = &repliesImageIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Image) SetRepliesIRI(v *url.URL) { + t.replies = &repliesImageIntermediateType{IRI: v} } @@ -439958,14 +440002,14 @@ func (t *Image) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Image) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Image) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Image) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeImageIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Image) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeImageIntermediateType{IRI: v} } @@ -440069,20 +440113,20 @@ func (t *Image) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Image) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Image) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Image) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryImageIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Image) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryImageIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Image) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryImageIntermediateType{&summaryImageIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Image) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryImageIntermediateType{&summaryImageIntermediateType{IRI: v}}, t.summary...) } @@ -440229,20 +440273,20 @@ func (t *Image) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Image) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Image) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Image) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagImageIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Image) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagImageIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Image) PrependTagIRI(v url.URL) { - t.tag = append([]*tagImageIntermediateType{&tagImageIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Image) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagImageIntermediateType{&tagImageIntermediateType{IRI: v}}, t.tag...) } @@ -440334,14 +440378,14 @@ func (t *Image) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Image) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Image) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Image) SetUpdatedIRI(v url.URL) { - t.updated = &updatedImageIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Image) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedImageIntermediateType{IRI: v} } @@ -440381,20 +440425,20 @@ func (t *Image) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Image) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Image) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Image) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlImageIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Image) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlImageIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Image) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlImageIntermediateType{&urlImageIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Image) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlImageIntermediateType{&urlImageIntermediateType{anyURI: v}}, t.url...) } @@ -440538,20 +440582,20 @@ func (t *Image) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Image) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Image) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Image) AppendToIRI(v url.URL) { - t.to = append(t.to, &toImageIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Image) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toImageIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Image) PrependToIRI(v url.URL) { - t.to = append([]*toImageIntermediateType{&toImageIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Image) PrependToIRI(v *url.URL) { + t.to = append([]*toImageIntermediateType{&toImageIntermediateType{IRI: v}}, t.to...) } @@ -440663,20 +440707,20 @@ func (t *Image) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Image) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Image) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Image) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoImageIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Image) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoImageIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Image) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoImageIntermediateType{&btoImageIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Image) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoImageIntermediateType{&btoImageIntermediateType{IRI: v}}, t.bto...) } @@ -440788,20 +440832,20 @@ func (t *Image) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Image) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Image) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Image) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccImageIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Image) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccImageIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Image) PrependCcIRI(v url.URL) { - t.cc = append([]*ccImageIntermediateType{&ccImageIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Image) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccImageIntermediateType{&ccImageIntermediateType{IRI: v}}, t.cc...) } @@ -440913,20 +440957,20 @@ func (t *Image) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Image) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Image) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Image) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccImageIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Image) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccImageIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Image) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccImageIntermediateType{&bccImageIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Image) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccImageIntermediateType{&bccImageIntermediateType{IRI: v}}, t.bcc...) } @@ -440986,14 +441030,14 @@ func (t *Image) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Image) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Image) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Image) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeImageIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Image) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeImageIntermediateType{IRI: v} } @@ -441045,14 +441089,14 @@ func (t *Image) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Image) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Image) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Image) SetDurationIRI(v url.URL) { - t.duration = &durationImageIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Image) SetDurationIRI(v *url.URL) { + t.duration = &durationImageIntermediateType{IRI: v} } @@ -441104,14 +441148,14 @@ func (t *Image) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Image) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Image) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Image) SetSourceIRI(v url.URL) { - t.source = &sourceImageIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Image) SetSourceIRI(v *url.URL) { + t.source = &sourceImageIntermediateType{IRI: v} } @@ -441163,14 +441207,14 @@ func (t *Image) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Image) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Image) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Image) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxImageIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Image) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxImageIntermediateType{anyURI: v} } @@ -441222,14 +441266,14 @@ func (t *Image) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Image) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Image) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Image) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxImageIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Image) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxImageIntermediateType{anyURI: v} } @@ -441299,14 +441343,14 @@ func (t *Image) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Image) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Image) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Image) SetFollowingAnyURI(v url.URL) { - t.following = &followingImageIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Image) SetFollowingAnyURI(v *url.URL) { + t.following = &followingImageIntermediateType{anyURI: v} } @@ -441376,14 +441420,14 @@ func (t *Image) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Image) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Image) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Image) SetFollowersAnyURI(v url.URL) { - t.followers = &followersImageIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Image) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersImageIntermediateType{anyURI: v} } @@ -441453,14 +441497,14 @@ func (t *Image) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Image) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Image) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Image) SetLikedAnyURI(v url.URL) { - t.liked = &likedImageIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Image) SetLikedAnyURI(v *url.URL) { + t.liked = &likedImageIntermediateType{anyURI: v} } @@ -441530,14 +441574,14 @@ func (t *Image) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Image) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Image) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Image) SetLikesAnyURI(v url.URL) { - t.likes = &likesImageIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Image) SetLikesAnyURI(v *url.URL) { + t.likes = &likesImageIntermediateType{anyURI: v} } @@ -441571,26 +441615,27 @@ func (t *Image) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Image) GetStreams(index int) (v url.URL) { +func (t *Image) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Image) AppendStreams(v url.URL) { +func (t *Image) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Image) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Image) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Image) 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] } @@ -441641,14 +441686,14 @@ func (t *Image) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Image) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Image) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Image) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameImageIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Image) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameImageIntermediateType{IRI: v} } @@ -441735,14 +441780,14 @@ func (t *Image) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Image) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Image) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Image) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsImageIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Image) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsImageIntermediateType{IRI: v} } @@ -441776,14 +441821,14 @@ func (t *Image) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Image) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Image) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Image) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Image) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -441815,14 +441860,14 @@ func (t *Image) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Image) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Image) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Image) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Image) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -441854,14 +441899,14 @@ func (t *Image) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Image) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Image) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Image) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Image) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -441893,14 +441938,14 @@ func (t *Image) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Image) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Image) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Image) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Image) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -441932,14 +441977,14 @@ func (t *Image) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Image) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Image) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Image) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Image) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -441971,14 +442016,14 @@ func (t *Image) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Image) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Image) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Image) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Image) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -442188,7 +442233,7 @@ func (t *Image) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -442494,7 +442539,7 @@ func (t *Image) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -442509,7 +442554,7 @@ func (t *Image) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -442524,7 +442569,7 @@ func (t *Image) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -442539,7 +442584,7 @@ func (t *Image) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -442554,7 +442599,7 @@ func (t *Image) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -442569,7 +442614,7 @@ func (t *Image) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -443389,7 +443434,7 @@ func (t *Image) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -443398,7 +443443,7 @@ func (t *Image) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -443583,7 +443628,7 @@ func (t *heightImageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -443637,7 +443682,7 @@ func (t *widthImageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -443691,7 +443736,7 @@ func (t *altitudeImageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -443774,7 +443819,7 @@ func (t *attachmentImageIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -443857,7 +443902,7 @@ func (t *attributedToImageIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -443940,7 +443985,7 @@ func (t *audienceImageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -444008,7 +444053,7 @@ func (t *contentImageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -444091,7 +444136,7 @@ func (t *contextImageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -444159,7 +444204,7 @@ func (t *nameImageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -444213,7 +444258,7 @@ func (t *endTimeImageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -444296,7 +444341,7 @@ func (t *generatorImageIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -444379,7 +444424,7 @@ func (t *iconImageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -444462,7 +444507,7 @@ func (t *imageImageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -444545,7 +444590,7 @@ func (t *inReplyToImageIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -444628,7 +444673,7 @@ func (t *locationImageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -444711,7 +444756,7 @@ func (t *previewImageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -444765,7 +444810,7 @@ func (t *publishedImageIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -444833,7 +444878,7 @@ func (t *repliesImageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -444887,7 +444932,7 @@ func (t *startTimeImageIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -444955,7 +445000,7 @@ func (t *summaryImageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -445038,7 +445083,7 @@ func (t *tagImageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -445092,7 +445137,7 @@ func (t *updatedImageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -445156,7 +445201,7 @@ func (t *urlImageIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlImageIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -445243,7 +445288,7 @@ func (t *toImageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -445326,7 +445371,7 @@ func (t *btoImageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -445409,7 +445454,7 @@ func (t *ccImageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -445492,7 +445537,7 @@ func (t *bccImageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -445546,7 +445591,7 @@ func (t *mediaTypeImageIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -445600,7 +445645,7 @@ func (t *durationImageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -445668,7 +445713,7 @@ func (t *sourceImageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -445736,7 +445781,7 @@ func (t *inboxImageIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -445804,7 +445849,7 @@ func (t *outboxImageIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -445887,7 +445932,7 @@ func (t *followingImageIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -445970,7 +446015,7 @@ func (t *followersImageIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -446053,7 +446098,7 @@ func (t *likedImageIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -446136,7 +446181,7 @@ func (t *likesImageIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -446190,7 +446235,7 @@ func (t *preferredUsernameImageIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -446258,7 +446303,7 @@ func (t *endpointsImageIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -446348,7 +446393,7 @@ type Video struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesVideoIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameVideoIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -446394,14 +446439,14 @@ func (t *Video) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Video) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Video) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Video) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeVideoIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Video) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeVideoIntermediateType{IRI: v} } @@ -446505,20 +446550,20 @@ func (t *Video) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Video) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Video) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Video) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentVideoIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Video) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentVideoIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Video) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentVideoIntermediateType{&attachmentVideoIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Video) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentVideoIntermediateType{&attachmentVideoIntermediateType{IRI: v}}, t.attachment...) } @@ -446630,20 +446675,20 @@ func (t *Video) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Video) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Video) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Video) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToVideoIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Video) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToVideoIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Video) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToVideoIntermediateType{&attributedToVideoIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Video) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToVideoIntermediateType{&attributedToVideoIntermediateType{IRI: v}}, t.attributedTo...) } @@ -446755,20 +446800,20 @@ func (t *Video) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Video) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Video) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Video) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceVideoIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Video) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceVideoIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Video) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceVideoIntermediateType{&audienceVideoIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Video) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceVideoIntermediateType{&audienceVideoIntermediateType{IRI: v}}, t.audience...) } @@ -446880,20 +446925,20 @@ func (t *Video) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Video) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Video) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Video) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentVideoIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Video) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentVideoIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Video) PrependContentIRI(v url.URL) { - t.content = append([]*contentVideoIntermediateType{&contentVideoIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Video) PrependContentIRI(v *url.URL) { + t.content = append([]*contentVideoIntermediateType{&contentVideoIntermediateType{IRI: v}}, t.content...) } @@ -447040,20 +447085,20 @@ func (t *Video) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Video) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Video) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Video) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextVideoIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Video) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextVideoIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Video) PrependContextIRI(v url.URL) { - t.context = append([]*contextVideoIntermediateType{&contextVideoIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Video) PrependContextIRI(v *url.URL) { + t.context = append([]*contextVideoIntermediateType{&contextVideoIntermediateType{IRI: v}}, t.context...) } @@ -447165,20 +447210,20 @@ func (t *Video) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Video) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Video) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Video) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameVideoIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Video) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameVideoIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Video) PrependNameIRI(v url.URL) { - t.name = append([]*nameVideoIntermediateType{&nameVideoIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Video) PrependNameIRI(v *url.URL) { + t.name = append([]*nameVideoIntermediateType{&nameVideoIntermediateType{IRI: v}}, t.name...) } @@ -447273,14 +447318,14 @@ func (t *Video) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Video) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Video) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Video) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeVideoIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Video) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeVideoIntermediateType{IRI: v} } @@ -447384,20 +447429,20 @@ func (t *Video) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Video) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Video) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Video) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorVideoIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Video) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorVideoIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Video) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorVideoIntermediateType{&generatorVideoIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Video) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorVideoIntermediateType{&generatorVideoIntermediateType{IRI: v}}, t.generator...) } @@ -447509,20 +447554,20 @@ func (t *Video) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Video) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Video) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Video) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconVideoIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Video) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconVideoIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Video) PrependIconIRI(v url.URL) { - t.icon = append([]*iconVideoIntermediateType{&iconVideoIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Video) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconVideoIntermediateType{&iconVideoIntermediateType{IRI: v}}, t.icon...) } @@ -447564,14 +447609,14 @@ func (t *Video) HasId() (ok bool) { } // GetId returns the value for id -func (t *Video) GetId() (v url.URL) { - return *t.id +func (t *Video) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Video) SetId(v url.URL) { - t.id = &v +func (t *Video) SetId(v *url.URL) { + t.id = v } @@ -447673,20 +447718,20 @@ func (t *Video) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Video) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Video) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Video) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageVideoIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Video) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageVideoIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Video) PrependImageIRI(v url.URL) { - t.image = append([]*imageVideoIntermediateType{&imageVideoIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Video) PrependImageIRI(v *url.URL) { + t.image = append([]*imageVideoIntermediateType{&imageVideoIntermediateType{IRI: v}}, t.image...) } @@ -447798,20 +447843,20 @@ func (t *Video) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Video) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Video) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Video) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToVideoIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Video) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToVideoIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Video) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToVideoIntermediateType{&inReplyToVideoIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Video) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToVideoIntermediateType{&inReplyToVideoIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -447923,20 +447968,20 @@ func (t *Video) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Video) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Video) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Video) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationVideoIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Video) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationVideoIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Video) PrependLocationIRI(v url.URL) { - t.location = append([]*locationVideoIntermediateType{&locationVideoIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Video) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationVideoIntermediateType{&locationVideoIntermediateType{IRI: v}}, t.location...) } @@ -448048,20 +448093,20 @@ func (t *Video) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Video) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Video) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Video) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewVideoIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Video) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewVideoIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Video) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewVideoIntermediateType{&previewVideoIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Video) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewVideoIntermediateType{&previewVideoIntermediateType{IRI: v}}, t.preview...) } @@ -448121,14 +448166,14 @@ func (t *Video) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Video) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Video) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Video) SetPublishedIRI(v url.URL) { - t.published = &publishedVideoIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Video) SetPublishedIRI(v *url.URL) { + t.published = &publishedVideoIntermediateType{IRI: v} } @@ -448180,14 +448225,14 @@ func (t *Video) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Video) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Video) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Video) SetRepliesIRI(v url.URL) { - t.replies = &repliesVideoIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Video) SetRepliesIRI(v *url.URL) { + t.replies = &repliesVideoIntermediateType{IRI: v} } @@ -448239,14 +448284,14 @@ func (t *Video) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Video) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Video) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Video) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeVideoIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Video) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeVideoIntermediateType{IRI: v} } @@ -448350,20 +448395,20 @@ func (t *Video) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Video) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Video) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Video) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryVideoIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Video) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryVideoIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Video) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryVideoIntermediateType{&summaryVideoIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Video) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryVideoIntermediateType{&summaryVideoIntermediateType{IRI: v}}, t.summary...) } @@ -448510,20 +448555,20 @@ func (t *Video) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Video) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Video) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Video) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagVideoIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Video) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagVideoIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Video) PrependTagIRI(v url.URL) { - t.tag = append([]*tagVideoIntermediateType{&tagVideoIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Video) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagVideoIntermediateType{&tagVideoIntermediateType{IRI: v}}, t.tag...) } @@ -448615,14 +448660,14 @@ func (t *Video) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Video) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Video) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Video) SetUpdatedIRI(v url.URL) { - t.updated = &updatedVideoIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Video) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedVideoIntermediateType{IRI: v} } @@ -448662,20 +448707,20 @@ func (t *Video) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Video) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Video) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Video) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlVideoIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Video) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlVideoIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Video) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlVideoIntermediateType{&urlVideoIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Video) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlVideoIntermediateType{&urlVideoIntermediateType{anyURI: v}}, t.url...) } @@ -448819,20 +448864,20 @@ func (t *Video) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Video) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Video) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Video) AppendToIRI(v url.URL) { - t.to = append(t.to, &toVideoIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Video) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toVideoIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Video) PrependToIRI(v url.URL) { - t.to = append([]*toVideoIntermediateType{&toVideoIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Video) PrependToIRI(v *url.URL) { + t.to = append([]*toVideoIntermediateType{&toVideoIntermediateType{IRI: v}}, t.to...) } @@ -448944,20 +448989,20 @@ func (t *Video) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Video) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Video) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Video) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoVideoIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Video) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoVideoIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Video) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoVideoIntermediateType{&btoVideoIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Video) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoVideoIntermediateType{&btoVideoIntermediateType{IRI: v}}, t.bto...) } @@ -449069,20 +449114,20 @@ func (t *Video) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Video) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Video) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Video) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccVideoIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Video) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccVideoIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Video) PrependCcIRI(v url.URL) { - t.cc = append([]*ccVideoIntermediateType{&ccVideoIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Video) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccVideoIntermediateType{&ccVideoIntermediateType{IRI: v}}, t.cc...) } @@ -449194,20 +449239,20 @@ func (t *Video) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Video) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Video) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Video) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccVideoIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Video) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccVideoIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Video) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccVideoIntermediateType{&bccVideoIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Video) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccVideoIntermediateType{&bccVideoIntermediateType{IRI: v}}, t.bcc...) } @@ -449267,14 +449312,14 @@ func (t *Video) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Video) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Video) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Video) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeVideoIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Video) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeVideoIntermediateType{IRI: v} } @@ -449326,14 +449371,14 @@ func (t *Video) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Video) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Video) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Video) SetDurationIRI(v url.URL) { - t.duration = &durationVideoIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Video) SetDurationIRI(v *url.URL) { + t.duration = &durationVideoIntermediateType{IRI: v} } @@ -449385,14 +449430,14 @@ func (t *Video) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Video) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Video) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Video) SetSourceIRI(v url.URL) { - t.source = &sourceVideoIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Video) SetSourceIRI(v *url.URL) { + t.source = &sourceVideoIntermediateType{IRI: v} } @@ -449444,14 +449489,14 @@ func (t *Video) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Video) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Video) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Video) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxVideoIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Video) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxVideoIntermediateType{anyURI: v} } @@ -449503,14 +449548,14 @@ func (t *Video) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Video) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Video) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Video) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxVideoIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Video) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxVideoIntermediateType{anyURI: v} } @@ -449580,14 +449625,14 @@ func (t *Video) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Video) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Video) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Video) SetFollowingAnyURI(v url.URL) { - t.following = &followingVideoIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Video) SetFollowingAnyURI(v *url.URL) { + t.following = &followingVideoIntermediateType{anyURI: v} } @@ -449657,14 +449702,14 @@ func (t *Video) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Video) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Video) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Video) SetFollowersAnyURI(v url.URL) { - t.followers = &followersVideoIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Video) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersVideoIntermediateType{anyURI: v} } @@ -449734,14 +449779,14 @@ func (t *Video) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Video) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Video) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Video) SetLikedAnyURI(v url.URL) { - t.liked = &likedVideoIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Video) SetLikedAnyURI(v *url.URL) { + t.liked = &likedVideoIntermediateType{anyURI: v} } @@ -449811,14 +449856,14 @@ func (t *Video) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Video) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Video) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Video) SetLikesAnyURI(v url.URL) { - t.likes = &likesVideoIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Video) SetLikesAnyURI(v *url.URL) { + t.likes = &likesVideoIntermediateType{anyURI: v} } @@ -449852,26 +449897,27 @@ func (t *Video) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Video) GetStreams(index int) (v url.URL) { +func (t *Video) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Video) AppendStreams(v url.URL) { +func (t *Video) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Video) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Video) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Video) 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] } @@ -449922,14 +449968,14 @@ func (t *Video) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Video) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Video) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Video) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameVideoIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Video) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameVideoIntermediateType{IRI: v} } @@ -450016,14 +450062,14 @@ func (t *Video) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Video) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Video) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Video) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsVideoIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Video) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsVideoIntermediateType{IRI: v} } @@ -450057,14 +450103,14 @@ func (t *Video) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Video) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Video) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Video) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Video) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -450096,14 +450142,14 @@ func (t *Video) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Video) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Video) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Video) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Video) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -450135,14 +450181,14 @@ func (t *Video) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Video) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Video) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Video) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Video) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -450174,14 +450220,14 @@ func (t *Video) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Video) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Video) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Video) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Video) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -450213,14 +450259,14 @@ func (t *Video) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Video) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Video) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Video) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Video) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -450252,14 +450298,14 @@ func (t *Video) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Video) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Video) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Video) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Video) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -450451,7 +450497,7 @@ func (t *Video) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -450757,7 +450803,7 @@ func (t *Video) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -450772,7 +450818,7 @@ func (t *Video) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -450787,7 +450833,7 @@ func (t *Video) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -450802,7 +450848,7 @@ func (t *Video) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -450817,7 +450863,7 @@ func (t *Video) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -450832,7 +450878,7 @@ func (t *Video) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -451630,7 +451676,7 @@ func (t *Video) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -451639,7 +451685,7 @@ func (t *Video) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -451824,7 +451870,7 @@ func (t *altitudeVideoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -451907,7 +451953,7 @@ func (t *attachmentVideoIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -451990,7 +452036,7 @@ func (t *attributedToVideoIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -452073,7 +452119,7 @@ func (t *audienceVideoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -452141,7 +452187,7 @@ func (t *contentVideoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -452224,7 +452270,7 @@ func (t *contextVideoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -452292,7 +452338,7 @@ func (t *nameVideoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -452346,7 +452392,7 @@ func (t *endTimeVideoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -452429,7 +452475,7 @@ func (t *generatorVideoIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -452512,7 +452558,7 @@ func (t *iconVideoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -452595,7 +452641,7 @@ func (t *imageVideoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -452678,7 +452724,7 @@ func (t *inReplyToVideoIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -452761,7 +452807,7 @@ func (t *locationVideoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -452844,7 +452890,7 @@ func (t *previewVideoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -452898,7 +452944,7 @@ func (t *publishedVideoIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -452966,7 +453012,7 @@ func (t *repliesVideoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -453020,7 +453066,7 @@ func (t *startTimeVideoIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -453088,7 +453134,7 @@ func (t *summaryVideoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -453171,7 +453217,7 @@ func (t *tagVideoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -453225,7 +453271,7 @@ func (t *updatedVideoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -453289,7 +453335,7 @@ func (t *urlVideoIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlVideoIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -453376,7 +453422,7 @@ func (t *toVideoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -453459,7 +453505,7 @@ func (t *btoVideoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -453542,7 +453588,7 @@ func (t *ccVideoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -453625,7 +453671,7 @@ func (t *bccVideoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -453679,7 +453725,7 @@ func (t *mediaTypeVideoIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -453733,7 +453779,7 @@ func (t *durationVideoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -453801,7 +453847,7 @@ func (t *sourceVideoIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -453869,7 +453915,7 @@ func (t *inboxVideoIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -453937,7 +453983,7 @@ func (t *outboxVideoIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -454020,7 +454066,7 @@ func (t *followingVideoIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -454103,7 +454149,7 @@ func (t *followersVideoIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -454186,7 +454232,7 @@ func (t *likedVideoIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -454269,7 +454315,7 @@ func (t *likesVideoIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -454323,7 +454369,7 @@ func (t *preferredUsernameVideoIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -454391,7 +454437,7 @@ func (t *endpointsVideoIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -454481,7 +454527,7 @@ type Note struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesNoteIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameNoteIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -454527,14 +454573,14 @@ func (t *Note) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Note) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Note) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Note) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeNoteIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Note) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeNoteIntermediateType{IRI: v} } @@ -454638,20 +454684,20 @@ func (t *Note) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Note) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Note) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Note) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentNoteIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Note) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentNoteIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Note) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentNoteIntermediateType{&attachmentNoteIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Note) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentNoteIntermediateType{&attachmentNoteIntermediateType{IRI: v}}, t.attachment...) } @@ -454763,20 +454809,20 @@ func (t *Note) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Note) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Note) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Note) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToNoteIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Note) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToNoteIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Note) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToNoteIntermediateType{&attributedToNoteIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Note) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToNoteIntermediateType{&attributedToNoteIntermediateType{IRI: v}}, t.attributedTo...) } @@ -454888,20 +454934,20 @@ func (t *Note) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Note) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Note) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Note) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceNoteIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Note) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceNoteIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Note) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceNoteIntermediateType{&audienceNoteIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Note) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceNoteIntermediateType{&audienceNoteIntermediateType{IRI: v}}, t.audience...) } @@ -455013,20 +455059,20 @@ func (t *Note) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Note) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Note) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Note) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentNoteIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Note) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentNoteIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Note) PrependContentIRI(v url.URL) { - t.content = append([]*contentNoteIntermediateType{&contentNoteIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Note) PrependContentIRI(v *url.URL) { + t.content = append([]*contentNoteIntermediateType{&contentNoteIntermediateType{IRI: v}}, t.content...) } @@ -455173,20 +455219,20 @@ func (t *Note) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Note) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Note) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Note) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextNoteIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Note) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextNoteIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Note) PrependContextIRI(v url.URL) { - t.context = append([]*contextNoteIntermediateType{&contextNoteIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Note) PrependContextIRI(v *url.URL) { + t.context = append([]*contextNoteIntermediateType{&contextNoteIntermediateType{IRI: v}}, t.context...) } @@ -455298,20 +455344,20 @@ func (t *Note) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Note) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Note) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Note) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameNoteIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Note) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameNoteIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Note) PrependNameIRI(v url.URL) { - t.name = append([]*nameNoteIntermediateType{&nameNoteIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Note) PrependNameIRI(v *url.URL) { + t.name = append([]*nameNoteIntermediateType{&nameNoteIntermediateType{IRI: v}}, t.name...) } @@ -455406,14 +455452,14 @@ func (t *Note) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Note) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Note) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Note) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeNoteIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Note) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeNoteIntermediateType{IRI: v} } @@ -455517,20 +455563,20 @@ func (t *Note) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Note) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Note) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Note) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorNoteIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Note) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorNoteIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Note) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorNoteIntermediateType{&generatorNoteIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Note) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorNoteIntermediateType{&generatorNoteIntermediateType{IRI: v}}, t.generator...) } @@ -455642,20 +455688,20 @@ func (t *Note) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Note) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Note) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Note) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconNoteIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Note) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconNoteIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Note) PrependIconIRI(v url.URL) { - t.icon = append([]*iconNoteIntermediateType{&iconNoteIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Note) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconNoteIntermediateType{&iconNoteIntermediateType{IRI: v}}, t.icon...) } @@ -455697,14 +455743,14 @@ func (t *Note) HasId() (ok bool) { } // GetId returns the value for id -func (t *Note) GetId() (v url.URL) { - return *t.id +func (t *Note) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Note) SetId(v url.URL) { - t.id = &v +func (t *Note) SetId(v *url.URL) { + t.id = v } @@ -455806,20 +455852,20 @@ func (t *Note) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Note) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Note) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Note) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageNoteIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Note) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageNoteIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Note) PrependImageIRI(v url.URL) { - t.image = append([]*imageNoteIntermediateType{&imageNoteIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Note) PrependImageIRI(v *url.URL) { + t.image = append([]*imageNoteIntermediateType{&imageNoteIntermediateType{IRI: v}}, t.image...) } @@ -455931,20 +455977,20 @@ func (t *Note) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Note) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Note) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Note) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToNoteIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Note) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToNoteIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Note) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToNoteIntermediateType{&inReplyToNoteIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Note) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToNoteIntermediateType{&inReplyToNoteIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -456056,20 +456102,20 @@ func (t *Note) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Note) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Note) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Note) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationNoteIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Note) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationNoteIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Note) PrependLocationIRI(v url.URL) { - t.location = append([]*locationNoteIntermediateType{&locationNoteIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Note) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationNoteIntermediateType{&locationNoteIntermediateType{IRI: v}}, t.location...) } @@ -456181,20 +456227,20 @@ func (t *Note) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Note) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Note) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Note) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewNoteIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Note) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewNoteIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Note) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewNoteIntermediateType{&previewNoteIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Note) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewNoteIntermediateType{&previewNoteIntermediateType{IRI: v}}, t.preview...) } @@ -456254,14 +456300,14 @@ func (t *Note) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Note) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Note) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Note) SetPublishedIRI(v url.URL) { - t.published = &publishedNoteIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Note) SetPublishedIRI(v *url.URL) { + t.published = &publishedNoteIntermediateType{IRI: v} } @@ -456313,14 +456359,14 @@ func (t *Note) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Note) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Note) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Note) SetRepliesIRI(v url.URL) { - t.replies = &repliesNoteIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Note) SetRepliesIRI(v *url.URL) { + t.replies = &repliesNoteIntermediateType{IRI: v} } @@ -456372,14 +456418,14 @@ func (t *Note) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Note) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Note) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Note) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeNoteIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Note) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeNoteIntermediateType{IRI: v} } @@ -456483,20 +456529,20 @@ func (t *Note) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Note) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Note) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Note) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryNoteIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Note) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryNoteIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Note) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryNoteIntermediateType{&summaryNoteIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Note) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryNoteIntermediateType{&summaryNoteIntermediateType{IRI: v}}, t.summary...) } @@ -456643,20 +456689,20 @@ func (t *Note) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Note) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Note) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Note) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagNoteIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Note) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagNoteIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Note) PrependTagIRI(v url.URL) { - t.tag = append([]*tagNoteIntermediateType{&tagNoteIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Note) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagNoteIntermediateType{&tagNoteIntermediateType{IRI: v}}, t.tag...) } @@ -456748,14 +456794,14 @@ func (t *Note) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Note) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Note) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Note) SetUpdatedIRI(v url.URL) { - t.updated = &updatedNoteIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Note) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedNoteIntermediateType{IRI: v} } @@ -456795,20 +456841,20 @@ func (t *Note) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Note) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Note) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Note) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlNoteIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Note) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlNoteIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Note) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlNoteIntermediateType{&urlNoteIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Note) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlNoteIntermediateType{&urlNoteIntermediateType{anyURI: v}}, t.url...) } @@ -456952,20 +456998,20 @@ func (t *Note) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Note) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Note) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Note) AppendToIRI(v url.URL) { - t.to = append(t.to, &toNoteIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Note) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toNoteIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Note) PrependToIRI(v url.URL) { - t.to = append([]*toNoteIntermediateType{&toNoteIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Note) PrependToIRI(v *url.URL) { + t.to = append([]*toNoteIntermediateType{&toNoteIntermediateType{IRI: v}}, t.to...) } @@ -457077,20 +457123,20 @@ func (t *Note) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Note) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Note) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Note) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoNoteIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Note) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoNoteIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Note) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoNoteIntermediateType{&btoNoteIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Note) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoNoteIntermediateType{&btoNoteIntermediateType{IRI: v}}, t.bto...) } @@ -457202,20 +457248,20 @@ func (t *Note) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Note) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Note) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Note) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccNoteIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Note) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccNoteIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Note) PrependCcIRI(v url.URL) { - t.cc = append([]*ccNoteIntermediateType{&ccNoteIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Note) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccNoteIntermediateType{&ccNoteIntermediateType{IRI: v}}, t.cc...) } @@ -457327,20 +457373,20 @@ func (t *Note) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Note) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Note) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Note) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccNoteIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Note) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccNoteIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Note) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccNoteIntermediateType{&bccNoteIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Note) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccNoteIntermediateType{&bccNoteIntermediateType{IRI: v}}, t.bcc...) } @@ -457400,14 +457446,14 @@ func (t *Note) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Note) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Note) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Note) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeNoteIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Note) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeNoteIntermediateType{IRI: v} } @@ -457459,14 +457505,14 @@ func (t *Note) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Note) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Note) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Note) SetDurationIRI(v url.URL) { - t.duration = &durationNoteIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Note) SetDurationIRI(v *url.URL) { + t.duration = &durationNoteIntermediateType{IRI: v} } @@ -457518,14 +457564,14 @@ func (t *Note) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Note) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Note) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Note) SetSourceIRI(v url.URL) { - t.source = &sourceNoteIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Note) SetSourceIRI(v *url.URL) { + t.source = &sourceNoteIntermediateType{IRI: v} } @@ -457577,14 +457623,14 @@ func (t *Note) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Note) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Note) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Note) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxNoteIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Note) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxNoteIntermediateType{anyURI: v} } @@ -457636,14 +457682,14 @@ func (t *Note) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Note) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Note) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Note) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxNoteIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Note) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxNoteIntermediateType{anyURI: v} } @@ -457713,14 +457759,14 @@ func (t *Note) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Note) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Note) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Note) SetFollowingAnyURI(v url.URL) { - t.following = &followingNoteIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Note) SetFollowingAnyURI(v *url.URL) { + t.following = &followingNoteIntermediateType{anyURI: v} } @@ -457790,14 +457836,14 @@ func (t *Note) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Note) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Note) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Note) SetFollowersAnyURI(v url.URL) { - t.followers = &followersNoteIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Note) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersNoteIntermediateType{anyURI: v} } @@ -457867,14 +457913,14 @@ func (t *Note) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Note) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Note) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Note) SetLikedAnyURI(v url.URL) { - t.liked = &likedNoteIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Note) SetLikedAnyURI(v *url.URL) { + t.liked = &likedNoteIntermediateType{anyURI: v} } @@ -457944,14 +457990,14 @@ func (t *Note) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Note) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Note) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Note) SetLikesAnyURI(v url.URL) { - t.likes = &likesNoteIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Note) SetLikesAnyURI(v *url.URL) { + t.likes = &likesNoteIntermediateType{anyURI: v} } @@ -457985,26 +458031,27 @@ func (t *Note) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Note) GetStreams(index int) (v url.URL) { +func (t *Note) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Note) AppendStreams(v url.URL) { +func (t *Note) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Note) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Note) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Note) 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] } @@ -458055,14 +458102,14 @@ func (t *Note) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Note) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Note) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Note) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameNoteIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Note) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameNoteIntermediateType{IRI: v} } @@ -458149,14 +458196,14 @@ func (t *Note) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Note) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Note) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Note) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsNoteIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Note) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsNoteIntermediateType{IRI: v} } @@ -458190,14 +458237,14 @@ func (t *Note) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Note) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Note) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Note) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Note) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -458229,14 +458276,14 @@ func (t *Note) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Note) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Note) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Note) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Note) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -458268,14 +458315,14 @@ func (t *Note) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Note) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Note) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Note) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Note) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -458307,14 +458354,14 @@ func (t *Note) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Note) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Note) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Note) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Note) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -458346,14 +458393,14 @@ func (t *Note) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Note) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Note) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Note) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Note) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -458385,14 +458432,14 @@ func (t *Note) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Note) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Note) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Note) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Note) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -458584,7 +458631,7 @@ func (t *Note) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -458890,7 +458937,7 @@ func (t *Note) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -458905,7 +458952,7 @@ func (t *Note) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -458920,7 +458967,7 @@ func (t *Note) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -458935,7 +458982,7 @@ func (t *Note) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -458950,7 +458997,7 @@ func (t *Note) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -458965,7 +459012,7 @@ func (t *Note) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -459763,7 +459810,7 @@ func (t *Note) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -459772,7 +459819,7 @@ func (t *Note) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -459957,7 +460004,7 @@ func (t *altitudeNoteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -460040,7 +460087,7 @@ func (t *attachmentNoteIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -460123,7 +460170,7 @@ func (t *attributedToNoteIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -460206,7 +460253,7 @@ func (t *audienceNoteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -460274,7 +460321,7 @@ func (t *contentNoteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -460357,7 +460404,7 @@ func (t *contextNoteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -460425,7 +460472,7 @@ func (t *nameNoteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -460479,7 +460526,7 @@ func (t *endTimeNoteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -460562,7 +460609,7 @@ func (t *generatorNoteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -460645,7 +460692,7 @@ func (t *iconNoteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -460728,7 +460775,7 @@ func (t *imageNoteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -460811,7 +460858,7 @@ func (t *inReplyToNoteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -460894,7 +460941,7 @@ func (t *locationNoteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -460977,7 +461024,7 @@ func (t *previewNoteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -461031,7 +461078,7 @@ func (t *publishedNoteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -461099,7 +461146,7 @@ func (t *repliesNoteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -461153,7 +461200,7 @@ func (t *startTimeNoteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -461221,7 +461268,7 @@ func (t *summaryNoteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -461304,7 +461351,7 @@ func (t *tagNoteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -461358,7 +461405,7 @@ func (t *updatedNoteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -461422,7 +461469,7 @@ func (t *urlNoteIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlNoteIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -461509,7 +461556,7 @@ func (t *toNoteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -461592,7 +461639,7 @@ func (t *btoNoteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -461675,7 +461722,7 @@ func (t *ccNoteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -461758,7 +461805,7 @@ func (t *bccNoteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -461812,7 +461859,7 @@ func (t *mediaTypeNoteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -461866,7 +461913,7 @@ func (t *durationNoteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -461934,7 +461981,7 @@ func (t *sourceNoteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -462002,7 +462049,7 @@ func (t *inboxNoteIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -462070,7 +462117,7 @@ func (t *outboxNoteIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -462153,7 +462200,7 @@ func (t *followingNoteIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -462236,7 +462283,7 @@ func (t *followersNoteIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -462319,7 +462366,7 @@ func (t *likedNoteIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -462402,7 +462449,7 @@ func (t *likesNoteIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -462456,7 +462503,7 @@ func (t *preferredUsernameNoteIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -462524,7 +462571,7 @@ func (t *endpointsNoteIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -462614,7 +462661,7 @@ type Page struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesPageIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernamePageIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -462660,14 +462707,14 @@ func (t *Page) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Page) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Page) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Page) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudePageIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Page) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudePageIntermediateType{IRI: v} } @@ -462771,20 +462818,20 @@ func (t *Page) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Page) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Page) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Page) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentPageIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Page) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentPageIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Page) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentPageIntermediateType{&attachmentPageIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Page) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentPageIntermediateType{&attachmentPageIntermediateType{IRI: v}}, t.attachment...) } @@ -462896,20 +462943,20 @@ func (t *Page) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Page) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Page) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Page) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToPageIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Page) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToPageIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Page) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToPageIntermediateType{&attributedToPageIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Page) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToPageIntermediateType{&attributedToPageIntermediateType{IRI: v}}, t.attributedTo...) } @@ -463021,20 +463068,20 @@ func (t *Page) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Page) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Page) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Page) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audiencePageIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Page) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audiencePageIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Page) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audiencePageIntermediateType{&audiencePageIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Page) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audiencePageIntermediateType{&audiencePageIntermediateType{IRI: v}}, t.audience...) } @@ -463146,20 +463193,20 @@ func (t *Page) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Page) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Page) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Page) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentPageIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Page) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentPageIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Page) PrependContentIRI(v url.URL) { - t.content = append([]*contentPageIntermediateType{&contentPageIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Page) PrependContentIRI(v *url.URL) { + t.content = append([]*contentPageIntermediateType{&contentPageIntermediateType{IRI: v}}, t.content...) } @@ -463306,20 +463353,20 @@ func (t *Page) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Page) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Page) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Page) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextPageIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Page) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextPageIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Page) PrependContextIRI(v url.URL) { - t.context = append([]*contextPageIntermediateType{&contextPageIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Page) PrependContextIRI(v *url.URL) { + t.context = append([]*contextPageIntermediateType{&contextPageIntermediateType{IRI: v}}, t.context...) } @@ -463431,20 +463478,20 @@ func (t *Page) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Page) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Page) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Page) AppendNameIRI(v url.URL) { - t.name = append(t.name, &namePageIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Page) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &namePageIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Page) PrependNameIRI(v url.URL) { - t.name = append([]*namePageIntermediateType{&namePageIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Page) PrependNameIRI(v *url.URL) { + t.name = append([]*namePageIntermediateType{&namePageIntermediateType{IRI: v}}, t.name...) } @@ -463539,14 +463586,14 @@ func (t *Page) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Page) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Page) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Page) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimePageIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Page) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimePageIntermediateType{IRI: v} } @@ -463650,20 +463697,20 @@ func (t *Page) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Page) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Page) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Page) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorPageIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Page) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorPageIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Page) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorPageIntermediateType{&generatorPageIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Page) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorPageIntermediateType{&generatorPageIntermediateType{IRI: v}}, t.generator...) } @@ -463775,20 +463822,20 @@ func (t *Page) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Page) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Page) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Page) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconPageIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Page) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconPageIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Page) PrependIconIRI(v url.URL) { - t.icon = append([]*iconPageIntermediateType{&iconPageIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Page) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconPageIntermediateType{&iconPageIntermediateType{IRI: v}}, t.icon...) } @@ -463830,14 +463877,14 @@ func (t *Page) HasId() (ok bool) { } // GetId returns the value for id -func (t *Page) GetId() (v url.URL) { - return *t.id +func (t *Page) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Page) SetId(v url.URL) { - t.id = &v +func (t *Page) SetId(v *url.URL) { + t.id = v } @@ -463939,20 +463986,20 @@ func (t *Page) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Page) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Page) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Page) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imagePageIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Page) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imagePageIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Page) PrependImageIRI(v url.URL) { - t.image = append([]*imagePageIntermediateType{&imagePageIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Page) PrependImageIRI(v *url.URL) { + t.image = append([]*imagePageIntermediateType{&imagePageIntermediateType{IRI: v}}, t.image...) } @@ -464064,20 +464111,20 @@ func (t *Page) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Page) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Page) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Page) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToPageIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Page) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToPageIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Page) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToPageIntermediateType{&inReplyToPageIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Page) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToPageIntermediateType{&inReplyToPageIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -464189,20 +464236,20 @@ func (t *Page) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Page) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Page) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Page) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationPageIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Page) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationPageIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Page) PrependLocationIRI(v url.URL) { - t.location = append([]*locationPageIntermediateType{&locationPageIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Page) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationPageIntermediateType{&locationPageIntermediateType{IRI: v}}, t.location...) } @@ -464314,20 +464361,20 @@ func (t *Page) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Page) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Page) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Page) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewPageIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Page) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewPageIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Page) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewPageIntermediateType{&previewPageIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Page) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewPageIntermediateType{&previewPageIntermediateType{IRI: v}}, t.preview...) } @@ -464387,14 +464434,14 @@ func (t *Page) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Page) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Page) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Page) SetPublishedIRI(v url.URL) { - t.published = &publishedPageIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Page) SetPublishedIRI(v *url.URL) { + t.published = &publishedPageIntermediateType{IRI: v} } @@ -464446,14 +464493,14 @@ func (t *Page) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Page) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Page) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Page) SetRepliesIRI(v url.URL) { - t.replies = &repliesPageIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Page) SetRepliesIRI(v *url.URL) { + t.replies = &repliesPageIntermediateType{IRI: v} } @@ -464505,14 +464552,14 @@ func (t *Page) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Page) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Page) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Page) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimePageIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Page) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimePageIntermediateType{IRI: v} } @@ -464616,20 +464663,20 @@ func (t *Page) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Page) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Page) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Page) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryPageIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Page) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryPageIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Page) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryPageIntermediateType{&summaryPageIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Page) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryPageIntermediateType{&summaryPageIntermediateType{IRI: v}}, t.summary...) } @@ -464776,20 +464823,20 @@ func (t *Page) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Page) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Page) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Page) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagPageIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Page) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagPageIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Page) PrependTagIRI(v url.URL) { - t.tag = append([]*tagPageIntermediateType{&tagPageIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Page) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagPageIntermediateType{&tagPageIntermediateType{IRI: v}}, t.tag...) } @@ -464881,14 +464928,14 @@ func (t *Page) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Page) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Page) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Page) SetUpdatedIRI(v url.URL) { - t.updated = &updatedPageIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Page) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedPageIntermediateType{IRI: v} } @@ -464928,20 +464975,20 @@ func (t *Page) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Page) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Page) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Page) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlPageIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Page) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlPageIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Page) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlPageIntermediateType{&urlPageIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Page) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlPageIntermediateType{&urlPageIntermediateType{anyURI: v}}, t.url...) } @@ -465085,20 +465132,20 @@ func (t *Page) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Page) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Page) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Page) AppendToIRI(v url.URL) { - t.to = append(t.to, &toPageIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Page) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toPageIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Page) PrependToIRI(v url.URL) { - t.to = append([]*toPageIntermediateType{&toPageIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Page) PrependToIRI(v *url.URL) { + t.to = append([]*toPageIntermediateType{&toPageIntermediateType{IRI: v}}, t.to...) } @@ -465210,20 +465257,20 @@ func (t *Page) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Page) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Page) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Page) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoPageIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Page) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoPageIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Page) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoPageIntermediateType{&btoPageIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Page) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoPageIntermediateType{&btoPageIntermediateType{IRI: v}}, t.bto...) } @@ -465335,20 +465382,20 @@ func (t *Page) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Page) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Page) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Page) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccPageIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Page) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccPageIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Page) PrependCcIRI(v url.URL) { - t.cc = append([]*ccPageIntermediateType{&ccPageIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Page) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccPageIntermediateType{&ccPageIntermediateType{IRI: v}}, t.cc...) } @@ -465460,20 +465507,20 @@ func (t *Page) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Page) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Page) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Page) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccPageIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Page) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccPageIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Page) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccPageIntermediateType{&bccPageIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Page) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccPageIntermediateType{&bccPageIntermediateType{IRI: v}}, t.bcc...) } @@ -465533,14 +465580,14 @@ func (t *Page) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Page) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Page) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Page) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypePageIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Page) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypePageIntermediateType{IRI: v} } @@ -465592,14 +465639,14 @@ func (t *Page) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Page) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Page) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Page) SetDurationIRI(v url.URL) { - t.duration = &durationPageIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Page) SetDurationIRI(v *url.URL) { + t.duration = &durationPageIntermediateType{IRI: v} } @@ -465651,14 +465698,14 @@ func (t *Page) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Page) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Page) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Page) SetSourceIRI(v url.URL) { - t.source = &sourcePageIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Page) SetSourceIRI(v *url.URL) { + t.source = &sourcePageIntermediateType{IRI: v} } @@ -465710,14 +465757,14 @@ func (t *Page) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Page) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Page) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Page) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxPageIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Page) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxPageIntermediateType{anyURI: v} } @@ -465769,14 +465816,14 @@ func (t *Page) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Page) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Page) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Page) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxPageIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Page) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxPageIntermediateType{anyURI: v} } @@ -465846,14 +465893,14 @@ func (t *Page) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Page) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Page) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Page) SetFollowingAnyURI(v url.URL) { - t.following = &followingPageIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Page) SetFollowingAnyURI(v *url.URL) { + t.following = &followingPageIntermediateType{anyURI: v} } @@ -465923,14 +465970,14 @@ func (t *Page) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Page) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Page) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Page) SetFollowersAnyURI(v url.URL) { - t.followers = &followersPageIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Page) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersPageIntermediateType{anyURI: v} } @@ -466000,14 +466047,14 @@ func (t *Page) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Page) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Page) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Page) SetLikedAnyURI(v url.URL) { - t.liked = &likedPageIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Page) SetLikedAnyURI(v *url.URL) { + t.liked = &likedPageIntermediateType{anyURI: v} } @@ -466077,14 +466124,14 @@ func (t *Page) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Page) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Page) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Page) SetLikesAnyURI(v url.URL) { - t.likes = &likesPageIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Page) SetLikesAnyURI(v *url.URL) { + t.likes = &likesPageIntermediateType{anyURI: v} } @@ -466118,26 +466165,27 @@ func (t *Page) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Page) GetStreams(index int) (v url.URL) { +func (t *Page) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Page) AppendStreams(v url.URL) { +func (t *Page) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Page) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Page) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Page) 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] } @@ -466188,14 +466236,14 @@ func (t *Page) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Page) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Page) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Page) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernamePageIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Page) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernamePageIntermediateType{IRI: v} } @@ -466282,14 +466330,14 @@ func (t *Page) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Page) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Page) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Page) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsPageIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Page) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsPageIntermediateType{IRI: v} } @@ -466323,14 +466371,14 @@ func (t *Page) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Page) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Page) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Page) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Page) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -466362,14 +466410,14 @@ func (t *Page) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Page) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Page) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Page) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Page) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -466401,14 +466449,14 @@ func (t *Page) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Page) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Page) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Page) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Page) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -466440,14 +466488,14 @@ func (t *Page) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Page) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Page) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Page) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Page) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -466479,14 +466527,14 @@ func (t *Page) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Page) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Page) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Page) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Page) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -466518,14 +466566,14 @@ func (t *Page) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Page) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Page) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Page) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Page) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -466717,7 +466765,7 @@ func (t *Page) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -467023,7 +467071,7 @@ func (t *Page) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -467038,7 +467086,7 @@ func (t *Page) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -467053,7 +467101,7 @@ func (t *Page) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -467068,7 +467116,7 @@ func (t *Page) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -467083,7 +467131,7 @@ func (t *Page) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -467098,7 +467146,7 @@ func (t *Page) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -467896,7 +467944,7 @@ func (t *Page) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -467905,7 +467953,7 @@ func (t *Page) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -468090,7 +468138,7 @@ func (t *altitudePageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -468173,7 +468221,7 @@ func (t *attachmentPageIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -468256,7 +468304,7 @@ func (t *attributedToPageIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -468339,7 +468387,7 @@ func (t *audiencePageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -468407,7 +468455,7 @@ func (t *contentPageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -468490,7 +468538,7 @@ func (t *contextPageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -468558,7 +468606,7 @@ func (t *namePageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -468612,7 +468660,7 @@ func (t *endTimePageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -468695,7 +468743,7 @@ func (t *generatorPageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -468778,7 +468826,7 @@ func (t *iconPageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -468861,7 +468909,7 @@ func (t *imagePageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -468944,7 +468992,7 @@ func (t *inReplyToPageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -469027,7 +469075,7 @@ func (t *locationPageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -469110,7 +469158,7 @@ func (t *previewPageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -469164,7 +469212,7 @@ func (t *publishedPageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -469232,7 +469280,7 @@ func (t *repliesPageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -469286,7 +469334,7 @@ func (t *startTimePageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -469354,7 +469402,7 @@ func (t *summaryPageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -469437,7 +469485,7 @@ func (t *tagPageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -469491,7 +469539,7 @@ func (t *updatedPageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -469555,7 +469603,7 @@ func (t *urlPageIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlPageIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -469642,7 +469690,7 @@ func (t *toPageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -469725,7 +469773,7 @@ func (t *btoPageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -469808,7 +469856,7 @@ func (t *ccPageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -469891,7 +469939,7 @@ func (t *bccPageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -469945,7 +469993,7 @@ func (t *mediaTypePageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -469999,7 +470047,7 @@ func (t *durationPageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -470067,7 +470115,7 @@ func (t *sourcePageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -470135,7 +470183,7 @@ func (t *inboxPageIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -470203,7 +470251,7 @@ func (t *outboxPageIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -470286,7 +470334,7 @@ func (t *followingPageIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -470369,7 +470417,7 @@ func (t *followersPageIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -470452,7 +470500,7 @@ func (t *likedPageIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -470535,7 +470583,7 @@ func (t *likesPageIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -470589,7 +470637,7 @@ func (t *preferredUsernamePageIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -470657,7 +470705,7 @@ func (t *endpointsPageIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -470747,7 +470795,7 @@ type Event struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesEventIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameEventIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -470793,14 +470841,14 @@ func (t *Event) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Event) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Event) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Event) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeEventIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Event) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeEventIntermediateType{IRI: v} } @@ -470904,20 +470952,20 @@ func (t *Event) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Event) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Event) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Event) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentEventIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Event) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentEventIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Event) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentEventIntermediateType{&attachmentEventIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Event) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentEventIntermediateType{&attachmentEventIntermediateType{IRI: v}}, t.attachment...) } @@ -471029,20 +471077,20 @@ func (t *Event) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Event) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Event) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Event) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToEventIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Event) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToEventIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Event) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToEventIntermediateType{&attributedToEventIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Event) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToEventIntermediateType{&attributedToEventIntermediateType{IRI: v}}, t.attributedTo...) } @@ -471154,20 +471202,20 @@ func (t *Event) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Event) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Event) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Event) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceEventIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Event) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceEventIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Event) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceEventIntermediateType{&audienceEventIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Event) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceEventIntermediateType{&audienceEventIntermediateType{IRI: v}}, t.audience...) } @@ -471279,20 +471327,20 @@ func (t *Event) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Event) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Event) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Event) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentEventIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Event) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentEventIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Event) PrependContentIRI(v url.URL) { - t.content = append([]*contentEventIntermediateType{&contentEventIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Event) PrependContentIRI(v *url.URL) { + t.content = append([]*contentEventIntermediateType{&contentEventIntermediateType{IRI: v}}, t.content...) } @@ -471439,20 +471487,20 @@ func (t *Event) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Event) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Event) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Event) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextEventIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Event) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextEventIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Event) PrependContextIRI(v url.URL) { - t.context = append([]*contextEventIntermediateType{&contextEventIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Event) PrependContextIRI(v *url.URL) { + t.context = append([]*contextEventIntermediateType{&contextEventIntermediateType{IRI: v}}, t.context...) } @@ -471564,20 +471612,20 @@ func (t *Event) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Event) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Event) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Event) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameEventIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Event) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameEventIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Event) PrependNameIRI(v url.URL) { - t.name = append([]*nameEventIntermediateType{&nameEventIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Event) PrependNameIRI(v *url.URL) { + t.name = append([]*nameEventIntermediateType{&nameEventIntermediateType{IRI: v}}, t.name...) } @@ -471672,14 +471720,14 @@ func (t *Event) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Event) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Event) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Event) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeEventIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Event) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeEventIntermediateType{IRI: v} } @@ -471783,20 +471831,20 @@ func (t *Event) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Event) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Event) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Event) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorEventIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Event) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorEventIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Event) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorEventIntermediateType{&generatorEventIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Event) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorEventIntermediateType{&generatorEventIntermediateType{IRI: v}}, t.generator...) } @@ -471908,20 +471956,20 @@ func (t *Event) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Event) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Event) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Event) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconEventIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Event) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconEventIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Event) PrependIconIRI(v url.URL) { - t.icon = append([]*iconEventIntermediateType{&iconEventIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Event) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconEventIntermediateType{&iconEventIntermediateType{IRI: v}}, t.icon...) } @@ -471963,14 +472011,14 @@ func (t *Event) HasId() (ok bool) { } // GetId returns the value for id -func (t *Event) GetId() (v url.URL) { - return *t.id +func (t *Event) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Event) SetId(v url.URL) { - t.id = &v +func (t *Event) SetId(v *url.URL) { + t.id = v } @@ -472072,20 +472120,20 @@ func (t *Event) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Event) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Event) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Event) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageEventIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Event) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageEventIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Event) PrependImageIRI(v url.URL) { - t.image = append([]*imageEventIntermediateType{&imageEventIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Event) PrependImageIRI(v *url.URL) { + t.image = append([]*imageEventIntermediateType{&imageEventIntermediateType{IRI: v}}, t.image...) } @@ -472197,20 +472245,20 @@ func (t *Event) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Event) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Event) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Event) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToEventIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Event) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToEventIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Event) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToEventIntermediateType{&inReplyToEventIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Event) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToEventIntermediateType{&inReplyToEventIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -472322,20 +472370,20 @@ func (t *Event) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Event) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Event) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Event) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationEventIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Event) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationEventIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Event) PrependLocationIRI(v url.URL) { - t.location = append([]*locationEventIntermediateType{&locationEventIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Event) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationEventIntermediateType{&locationEventIntermediateType{IRI: v}}, t.location...) } @@ -472447,20 +472495,20 @@ func (t *Event) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Event) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Event) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Event) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewEventIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Event) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewEventIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Event) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewEventIntermediateType{&previewEventIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Event) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewEventIntermediateType{&previewEventIntermediateType{IRI: v}}, t.preview...) } @@ -472520,14 +472568,14 @@ func (t *Event) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Event) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Event) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Event) SetPublishedIRI(v url.URL) { - t.published = &publishedEventIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Event) SetPublishedIRI(v *url.URL) { + t.published = &publishedEventIntermediateType{IRI: v} } @@ -472579,14 +472627,14 @@ func (t *Event) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Event) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Event) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Event) SetRepliesIRI(v url.URL) { - t.replies = &repliesEventIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Event) SetRepliesIRI(v *url.URL) { + t.replies = &repliesEventIntermediateType{IRI: v} } @@ -472638,14 +472686,14 @@ func (t *Event) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Event) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Event) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Event) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeEventIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Event) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeEventIntermediateType{IRI: v} } @@ -472749,20 +472797,20 @@ func (t *Event) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Event) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Event) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Event) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryEventIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Event) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryEventIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Event) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryEventIntermediateType{&summaryEventIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Event) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryEventIntermediateType{&summaryEventIntermediateType{IRI: v}}, t.summary...) } @@ -472909,20 +472957,20 @@ func (t *Event) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Event) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Event) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Event) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagEventIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Event) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagEventIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Event) PrependTagIRI(v url.URL) { - t.tag = append([]*tagEventIntermediateType{&tagEventIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Event) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagEventIntermediateType{&tagEventIntermediateType{IRI: v}}, t.tag...) } @@ -473014,14 +473062,14 @@ func (t *Event) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Event) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Event) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Event) SetUpdatedIRI(v url.URL) { - t.updated = &updatedEventIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Event) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedEventIntermediateType{IRI: v} } @@ -473061,20 +473109,20 @@ func (t *Event) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Event) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Event) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Event) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlEventIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Event) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlEventIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Event) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlEventIntermediateType{&urlEventIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Event) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlEventIntermediateType{&urlEventIntermediateType{anyURI: v}}, t.url...) } @@ -473218,20 +473266,20 @@ func (t *Event) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Event) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Event) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Event) AppendToIRI(v url.URL) { - t.to = append(t.to, &toEventIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Event) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toEventIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Event) PrependToIRI(v url.URL) { - t.to = append([]*toEventIntermediateType{&toEventIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Event) PrependToIRI(v *url.URL) { + t.to = append([]*toEventIntermediateType{&toEventIntermediateType{IRI: v}}, t.to...) } @@ -473343,20 +473391,20 @@ func (t *Event) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Event) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Event) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Event) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoEventIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Event) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoEventIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Event) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoEventIntermediateType{&btoEventIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Event) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoEventIntermediateType{&btoEventIntermediateType{IRI: v}}, t.bto...) } @@ -473468,20 +473516,20 @@ func (t *Event) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Event) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Event) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Event) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccEventIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Event) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccEventIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Event) PrependCcIRI(v url.URL) { - t.cc = append([]*ccEventIntermediateType{&ccEventIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Event) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccEventIntermediateType{&ccEventIntermediateType{IRI: v}}, t.cc...) } @@ -473593,20 +473641,20 @@ func (t *Event) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Event) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Event) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Event) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccEventIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Event) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccEventIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Event) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccEventIntermediateType{&bccEventIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Event) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccEventIntermediateType{&bccEventIntermediateType{IRI: v}}, t.bcc...) } @@ -473666,14 +473714,14 @@ func (t *Event) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Event) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Event) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Event) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeEventIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Event) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeEventIntermediateType{IRI: v} } @@ -473725,14 +473773,14 @@ func (t *Event) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Event) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Event) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Event) SetDurationIRI(v url.URL) { - t.duration = &durationEventIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Event) SetDurationIRI(v *url.URL) { + t.duration = &durationEventIntermediateType{IRI: v} } @@ -473784,14 +473832,14 @@ func (t *Event) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Event) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Event) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Event) SetSourceIRI(v url.URL) { - t.source = &sourceEventIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Event) SetSourceIRI(v *url.URL) { + t.source = &sourceEventIntermediateType{IRI: v} } @@ -473843,14 +473891,14 @@ func (t *Event) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Event) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Event) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Event) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxEventIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Event) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxEventIntermediateType{anyURI: v} } @@ -473902,14 +473950,14 @@ func (t *Event) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Event) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Event) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Event) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxEventIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Event) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxEventIntermediateType{anyURI: v} } @@ -473979,14 +474027,14 @@ func (t *Event) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Event) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Event) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Event) SetFollowingAnyURI(v url.URL) { - t.following = &followingEventIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Event) SetFollowingAnyURI(v *url.URL) { + t.following = &followingEventIntermediateType{anyURI: v} } @@ -474056,14 +474104,14 @@ func (t *Event) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Event) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Event) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Event) SetFollowersAnyURI(v url.URL) { - t.followers = &followersEventIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Event) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersEventIntermediateType{anyURI: v} } @@ -474133,14 +474181,14 @@ func (t *Event) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Event) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Event) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Event) SetLikedAnyURI(v url.URL) { - t.liked = &likedEventIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Event) SetLikedAnyURI(v *url.URL) { + t.liked = &likedEventIntermediateType{anyURI: v} } @@ -474210,14 +474258,14 @@ func (t *Event) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Event) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Event) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Event) SetLikesAnyURI(v url.URL) { - t.likes = &likesEventIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Event) SetLikesAnyURI(v *url.URL) { + t.likes = &likesEventIntermediateType{anyURI: v} } @@ -474251,26 +474299,27 @@ func (t *Event) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Event) GetStreams(index int) (v url.URL) { +func (t *Event) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Event) AppendStreams(v url.URL) { +func (t *Event) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Event) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Event) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Event) 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] } @@ -474321,14 +474370,14 @@ func (t *Event) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Event) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Event) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Event) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameEventIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Event) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameEventIntermediateType{IRI: v} } @@ -474415,14 +474464,14 @@ func (t *Event) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Event) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Event) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Event) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsEventIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Event) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsEventIntermediateType{IRI: v} } @@ -474456,14 +474505,14 @@ func (t *Event) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Event) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Event) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Event) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Event) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -474495,14 +474544,14 @@ func (t *Event) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Event) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Event) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Event) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Event) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -474534,14 +474583,14 @@ func (t *Event) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Event) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Event) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Event) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Event) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -474573,14 +474622,14 @@ func (t *Event) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Event) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Event) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Event) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Event) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -474612,14 +474661,14 @@ func (t *Event) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Event) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Event) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Event) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Event) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -474651,14 +474700,14 @@ func (t *Event) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Event) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Event) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Event) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Event) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -474850,7 +474899,7 @@ func (t *Event) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -475156,7 +475205,7 @@ func (t *Event) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -475171,7 +475220,7 @@ func (t *Event) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -475186,7 +475235,7 @@ func (t *Event) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -475201,7 +475250,7 @@ func (t *Event) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -475216,7 +475265,7 @@ func (t *Event) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -475231,7 +475280,7 @@ func (t *Event) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -476029,7 +476078,7 @@ func (t *Event) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -476038,7 +476087,7 @@ func (t *Event) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -476223,7 +476272,7 @@ func (t *altitudeEventIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -476306,7 +476355,7 @@ func (t *attachmentEventIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -476389,7 +476438,7 @@ func (t *attributedToEventIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -476472,7 +476521,7 @@ func (t *audienceEventIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -476540,7 +476589,7 @@ func (t *contentEventIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -476623,7 +476672,7 @@ func (t *contextEventIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -476691,7 +476740,7 @@ func (t *nameEventIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -476745,7 +476794,7 @@ func (t *endTimeEventIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -476828,7 +476877,7 @@ func (t *generatorEventIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -476911,7 +476960,7 @@ func (t *iconEventIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -476994,7 +477043,7 @@ func (t *imageEventIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -477077,7 +477126,7 @@ func (t *inReplyToEventIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -477160,7 +477209,7 @@ func (t *locationEventIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -477243,7 +477292,7 @@ func (t *previewEventIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -477297,7 +477346,7 @@ func (t *publishedEventIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -477365,7 +477414,7 @@ func (t *repliesEventIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -477419,7 +477468,7 @@ func (t *startTimeEventIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -477487,7 +477536,7 @@ func (t *summaryEventIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -477570,7 +477619,7 @@ func (t *tagEventIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -477624,7 +477673,7 @@ func (t *updatedEventIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -477688,7 +477737,7 @@ func (t *urlEventIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlEventIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -477775,7 +477824,7 @@ func (t *toEventIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -477858,7 +477907,7 @@ func (t *btoEventIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -477941,7 +477990,7 @@ func (t *ccEventIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -478024,7 +478073,7 @@ func (t *bccEventIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -478078,7 +478127,7 @@ func (t *mediaTypeEventIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -478132,7 +478181,7 @@ func (t *durationEventIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -478200,7 +478249,7 @@ func (t *sourceEventIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -478268,7 +478317,7 @@ func (t *inboxEventIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -478336,7 +478385,7 @@ func (t *outboxEventIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -478419,7 +478468,7 @@ func (t *followingEventIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -478502,7 +478551,7 @@ func (t *followersEventIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -478585,7 +478634,7 @@ func (t *likedEventIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -478668,7 +478717,7 @@ func (t *likesEventIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -478722,7 +478771,7 @@ func (t *preferredUsernameEventIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -478790,7 +478839,7 @@ func (t *endpointsEventIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -478890,7 +478939,7 @@ type Place struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesPlaceIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernamePlaceIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -478936,14 +478985,14 @@ func (t *Place) IsAccuracyIRI() (ok bool) { } // GetAccuracyIRI returns the value safely if IsAccuracyIRI returned true -func (t *Place) GetAccuracyIRI() (v url.URL) { - return *t.accuracy.IRI +func (t *Place) GetAccuracyIRI() (v *url.URL) { + return t.accuracy.IRI } -// SetAccuracyIRI sets the value of accuracy to be of url.URL type -func (t *Place) SetAccuracyIRI(v url.URL) { - t.accuracy = &accuracyPlaceIntermediateType{IRI: &v} +// SetAccuracyIRI sets the value of accuracy to be of *url.URL type +func (t *Place) SetAccuracyIRI(v *url.URL) { + t.accuracy = &accuracyPlaceIntermediateType{IRI: v} } @@ -478995,14 +479044,14 @@ func (t *Place) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Place) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Place) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Place) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudePlaceIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Place) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudePlaceIntermediateType{IRI: v} } @@ -479054,14 +479103,14 @@ func (t *Place) IsLatitudeIRI() (ok bool) { } // GetLatitudeIRI returns the value safely if IsLatitudeIRI returned true -func (t *Place) GetLatitudeIRI() (v url.URL) { - return *t.latitude.IRI +func (t *Place) GetLatitudeIRI() (v *url.URL) { + return t.latitude.IRI } -// SetLatitudeIRI sets the value of latitude to be of url.URL type -func (t *Place) SetLatitudeIRI(v url.URL) { - t.latitude = &latitudePlaceIntermediateType{IRI: &v} +// SetLatitudeIRI sets the value of latitude to be of *url.URL type +func (t *Place) SetLatitudeIRI(v *url.URL) { + t.latitude = &latitudePlaceIntermediateType{IRI: v} } @@ -479113,14 +479162,14 @@ func (t *Place) IsLongitudeIRI() (ok bool) { } // GetLongitudeIRI returns the value safely if IsLongitudeIRI returned true -func (t *Place) GetLongitudeIRI() (v url.URL) { - return *t.longitude.IRI +func (t *Place) GetLongitudeIRI() (v *url.URL) { + return t.longitude.IRI } -// SetLongitudeIRI sets the value of longitude to be of url.URL type -func (t *Place) SetLongitudeIRI(v url.URL) { - t.longitude = &longitudePlaceIntermediateType{IRI: &v} +// SetLongitudeIRI sets the value of longitude to be of *url.URL type +func (t *Place) SetLongitudeIRI(v *url.URL) { + t.longitude = &longitudePlaceIntermediateType{IRI: v} } @@ -479172,14 +479221,14 @@ func (t *Place) IsRadiusIRI() (ok bool) { } // GetRadiusIRI returns the value safely if IsRadiusIRI returned true -func (t *Place) GetRadiusIRI() (v url.URL) { - return *t.radius.IRI +func (t *Place) GetRadiusIRI() (v *url.URL) { + return t.radius.IRI } -// SetRadiusIRI sets the value of radius to be of url.URL type -func (t *Place) SetRadiusIRI(v url.URL) { - t.radius = &radiusPlaceIntermediateType{IRI: &v} +// SetRadiusIRI sets the value of radius to be of *url.URL type +func (t *Place) SetRadiusIRI(v *url.URL) { + t.radius = &radiusPlaceIntermediateType{IRI: v} } @@ -479231,14 +479280,14 @@ func (t *Place) IsUnitsAnyURI() (ok bool) { } // GetUnitsAnyURI returns the value safely if IsUnitsAnyURI returned true -func (t *Place) GetUnitsAnyURI() (v url.URL) { - return *t.units.anyURI +func (t *Place) GetUnitsAnyURI() (v *url.URL) { + return t.units.anyURI } -// SetUnitsAnyURI sets the value of units to be of url.URL type -func (t *Place) SetUnitsAnyURI(v url.URL) { - t.units = &unitsPlaceIntermediateType{anyURI: &v} +// SetUnitsAnyURI sets the value of units to be of *url.URL type +func (t *Place) SetUnitsAnyURI(v *url.URL) { + t.units = &unitsPlaceIntermediateType{anyURI: v} } @@ -479342,20 +479391,20 @@ func (t *Place) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Place) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Place) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Place) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentPlaceIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Place) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentPlaceIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Place) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentPlaceIntermediateType{&attachmentPlaceIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Place) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentPlaceIntermediateType{&attachmentPlaceIntermediateType{IRI: v}}, t.attachment...) } @@ -479467,20 +479516,20 @@ func (t *Place) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Place) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Place) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Place) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToPlaceIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Place) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToPlaceIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Place) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToPlaceIntermediateType{&attributedToPlaceIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Place) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToPlaceIntermediateType{&attributedToPlaceIntermediateType{IRI: v}}, t.attributedTo...) } @@ -479592,20 +479641,20 @@ func (t *Place) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Place) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Place) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Place) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audiencePlaceIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Place) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audiencePlaceIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Place) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audiencePlaceIntermediateType{&audiencePlaceIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Place) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audiencePlaceIntermediateType{&audiencePlaceIntermediateType{IRI: v}}, t.audience...) } @@ -479717,20 +479766,20 @@ func (t *Place) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Place) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Place) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Place) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentPlaceIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Place) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentPlaceIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Place) PrependContentIRI(v url.URL) { - t.content = append([]*contentPlaceIntermediateType{&contentPlaceIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Place) PrependContentIRI(v *url.URL) { + t.content = append([]*contentPlaceIntermediateType{&contentPlaceIntermediateType{IRI: v}}, t.content...) } @@ -479877,20 +479926,20 @@ func (t *Place) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Place) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Place) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Place) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextPlaceIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Place) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextPlaceIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Place) PrependContextIRI(v url.URL) { - t.context = append([]*contextPlaceIntermediateType{&contextPlaceIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Place) PrependContextIRI(v *url.URL) { + t.context = append([]*contextPlaceIntermediateType{&contextPlaceIntermediateType{IRI: v}}, t.context...) } @@ -480002,20 +480051,20 @@ func (t *Place) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Place) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Place) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Place) AppendNameIRI(v url.URL) { - t.name = append(t.name, &namePlaceIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Place) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &namePlaceIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Place) PrependNameIRI(v url.URL) { - t.name = append([]*namePlaceIntermediateType{&namePlaceIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Place) PrependNameIRI(v *url.URL) { + t.name = append([]*namePlaceIntermediateType{&namePlaceIntermediateType{IRI: v}}, t.name...) } @@ -480110,14 +480159,14 @@ func (t *Place) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Place) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Place) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Place) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimePlaceIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Place) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimePlaceIntermediateType{IRI: v} } @@ -480221,20 +480270,20 @@ func (t *Place) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Place) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Place) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Place) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorPlaceIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Place) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorPlaceIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Place) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorPlaceIntermediateType{&generatorPlaceIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Place) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorPlaceIntermediateType{&generatorPlaceIntermediateType{IRI: v}}, t.generator...) } @@ -480346,20 +480395,20 @@ func (t *Place) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Place) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Place) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Place) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconPlaceIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Place) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconPlaceIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Place) PrependIconIRI(v url.URL) { - t.icon = append([]*iconPlaceIntermediateType{&iconPlaceIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Place) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconPlaceIntermediateType{&iconPlaceIntermediateType{IRI: v}}, t.icon...) } @@ -480401,14 +480450,14 @@ func (t *Place) HasId() (ok bool) { } // GetId returns the value for id -func (t *Place) GetId() (v url.URL) { - return *t.id +func (t *Place) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Place) SetId(v url.URL) { - t.id = &v +func (t *Place) SetId(v *url.URL) { + t.id = v } @@ -480510,20 +480559,20 @@ func (t *Place) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Place) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Place) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Place) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imagePlaceIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Place) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imagePlaceIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Place) PrependImageIRI(v url.URL) { - t.image = append([]*imagePlaceIntermediateType{&imagePlaceIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Place) PrependImageIRI(v *url.URL) { + t.image = append([]*imagePlaceIntermediateType{&imagePlaceIntermediateType{IRI: v}}, t.image...) } @@ -480635,20 +480684,20 @@ func (t *Place) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Place) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Place) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Place) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToPlaceIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Place) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToPlaceIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Place) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToPlaceIntermediateType{&inReplyToPlaceIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Place) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToPlaceIntermediateType{&inReplyToPlaceIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -480760,20 +480809,20 @@ func (t *Place) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Place) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Place) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Place) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationPlaceIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Place) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationPlaceIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Place) PrependLocationIRI(v url.URL) { - t.location = append([]*locationPlaceIntermediateType{&locationPlaceIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Place) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationPlaceIntermediateType{&locationPlaceIntermediateType{IRI: v}}, t.location...) } @@ -480885,20 +480934,20 @@ func (t *Place) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Place) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Place) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Place) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewPlaceIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Place) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewPlaceIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Place) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewPlaceIntermediateType{&previewPlaceIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Place) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewPlaceIntermediateType{&previewPlaceIntermediateType{IRI: v}}, t.preview...) } @@ -480958,14 +481007,14 @@ func (t *Place) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Place) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Place) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Place) SetPublishedIRI(v url.URL) { - t.published = &publishedPlaceIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Place) SetPublishedIRI(v *url.URL) { + t.published = &publishedPlaceIntermediateType{IRI: v} } @@ -481017,14 +481066,14 @@ func (t *Place) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Place) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Place) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Place) SetRepliesIRI(v url.URL) { - t.replies = &repliesPlaceIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Place) SetRepliesIRI(v *url.URL) { + t.replies = &repliesPlaceIntermediateType{IRI: v} } @@ -481076,14 +481125,14 @@ func (t *Place) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Place) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Place) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Place) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimePlaceIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Place) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimePlaceIntermediateType{IRI: v} } @@ -481187,20 +481236,20 @@ func (t *Place) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Place) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Place) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Place) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryPlaceIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Place) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryPlaceIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Place) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryPlaceIntermediateType{&summaryPlaceIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Place) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryPlaceIntermediateType{&summaryPlaceIntermediateType{IRI: v}}, t.summary...) } @@ -481347,20 +481396,20 @@ func (t *Place) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Place) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Place) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Place) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagPlaceIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Place) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagPlaceIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Place) PrependTagIRI(v url.URL) { - t.tag = append([]*tagPlaceIntermediateType{&tagPlaceIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Place) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagPlaceIntermediateType{&tagPlaceIntermediateType{IRI: v}}, t.tag...) } @@ -481452,14 +481501,14 @@ func (t *Place) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Place) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Place) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Place) SetUpdatedIRI(v url.URL) { - t.updated = &updatedPlaceIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Place) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedPlaceIntermediateType{IRI: v} } @@ -481499,20 +481548,20 @@ func (t *Place) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Place) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Place) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Place) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlPlaceIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Place) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlPlaceIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Place) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlPlaceIntermediateType{&urlPlaceIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Place) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlPlaceIntermediateType{&urlPlaceIntermediateType{anyURI: v}}, t.url...) } @@ -481656,20 +481705,20 @@ func (t *Place) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Place) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Place) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Place) AppendToIRI(v url.URL) { - t.to = append(t.to, &toPlaceIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Place) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toPlaceIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Place) PrependToIRI(v url.URL) { - t.to = append([]*toPlaceIntermediateType{&toPlaceIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Place) PrependToIRI(v *url.URL) { + t.to = append([]*toPlaceIntermediateType{&toPlaceIntermediateType{IRI: v}}, t.to...) } @@ -481781,20 +481830,20 @@ func (t *Place) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Place) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Place) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Place) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoPlaceIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Place) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoPlaceIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Place) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoPlaceIntermediateType{&btoPlaceIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Place) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoPlaceIntermediateType{&btoPlaceIntermediateType{IRI: v}}, t.bto...) } @@ -481906,20 +481955,20 @@ func (t *Place) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Place) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Place) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Place) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccPlaceIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Place) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccPlaceIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Place) PrependCcIRI(v url.URL) { - t.cc = append([]*ccPlaceIntermediateType{&ccPlaceIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Place) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccPlaceIntermediateType{&ccPlaceIntermediateType{IRI: v}}, t.cc...) } @@ -482031,20 +482080,20 @@ func (t *Place) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Place) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Place) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Place) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccPlaceIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Place) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccPlaceIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Place) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccPlaceIntermediateType{&bccPlaceIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Place) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccPlaceIntermediateType{&bccPlaceIntermediateType{IRI: v}}, t.bcc...) } @@ -482104,14 +482153,14 @@ func (t *Place) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Place) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Place) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Place) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypePlaceIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Place) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypePlaceIntermediateType{IRI: v} } @@ -482163,14 +482212,14 @@ func (t *Place) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Place) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Place) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Place) SetDurationIRI(v url.URL) { - t.duration = &durationPlaceIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Place) SetDurationIRI(v *url.URL) { + t.duration = &durationPlaceIntermediateType{IRI: v} } @@ -482222,14 +482271,14 @@ func (t *Place) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Place) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Place) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Place) SetSourceIRI(v url.URL) { - t.source = &sourcePlaceIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Place) SetSourceIRI(v *url.URL) { + t.source = &sourcePlaceIntermediateType{IRI: v} } @@ -482281,14 +482330,14 @@ func (t *Place) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Place) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Place) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Place) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxPlaceIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Place) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxPlaceIntermediateType{anyURI: v} } @@ -482340,14 +482389,14 @@ func (t *Place) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Place) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Place) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Place) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxPlaceIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Place) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxPlaceIntermediateType{anyURI: v} } @@ -482417,14 +482466,14 @@ func (t *Place) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Place) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Place) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Place) SetFollowingAnyURI(v url.URL) { - t.following = &followingPlaceIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Place) SetFollowingAnyURI(v *url.URL) { + t.following = &followingPlaceIntermediateType{anyURI: v} } @@ -482494,14 +482543,14 @@ func (t *Place) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Place) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Place) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Place) SetFollowersAnyURI(v url.URL) { - t.followers = &followersPlaceIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Place) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersPlaceIntermediateType{anyURI: v} } @@ -482571,14 +482620,14 @@ func (t *Place) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Place) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Place) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Place) SetLikedAnyURI(v url.URL) { - t.liked = &likedPlaceIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Place) SetLikedAnyURI(v *url.URL) { + t.liked = &likedPlaceIntermediateType{anyURI: v} } @@ -482648,14 +482697,14 @@ func (t *Place) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Place) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Place) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Place) SetLikesAnyURI(v url.URL) { - t.likes = &likesPlaceIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Place) SetLikesAnyURI(v *url.URL) { + t.likes = &likesPlaceIntermediateType{anyURI: v} } @@ -482689,26 +482738,27 @@ func (t *Place) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Place) GetStreams(index int) (v url.URL) { +func (t *Place) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Place) AppendStreams(v url.URL) { +func (t *Place) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Place) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Place) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Place) 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] } @@ -482759,14 +482809,14 @@ func (t *Place) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Place) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Place) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Place) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernamePlaceIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Place) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernamePlaceIntermediateType{IRI: v} } @@ -482853,14 +482903,14 @@ func (t *Place) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Place) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Place) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Place) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsPlaceIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Place) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsPlaceIntermediateType{IRI: v} } @@ -482894,14 +482944,14 @@ func (t *Place) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Place) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Place) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Place) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Place) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -482933,14 +482983,14 @@ func (t *Place) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Place) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Place) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Place) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Place) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -482972,14 +483022,14 @@ func (t *Place) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Place) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Place) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Place) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Place) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -483011,14 +483061,14 @@ func (t *Place) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Place) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Place) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Place) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Place) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -483050,14 +483100,14 @@ func (t *Place) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Place) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Place) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Place) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Place) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -483089,14 +483139,14 @@ func (t *Place) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Place) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Place) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Place) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Place) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -483333,7 +483383,7 @@ func (t *Place) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -483639,7 +483689,7 @@ func (t *Place) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -483654,7 +483704,7 @@ func (t *Place) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -483669,7 +483719,7 @@ func (t *Place) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -483684,7 +483734,7 @@ func (t *Place) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -483699,7 +483749,7 @@ func (t *Place) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -483714,7 +483764,7 @@ func (t *Place) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -484567,7 +484617,7 @@ func (t *Place) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -484576,7 +484626,7 @@ func (t *Place) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -484761,7 +484811,7 @@ func (t *accuracyPlaceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -484815,7 +484865,7 @@ func (t *altitudePlaceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -484869,7 +484919,7 @@ func (t *latitudePlaceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -484923,7 +484973,7 @@ func (t *longitudePlaceIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -484977,7 +485027,7 @@ func (t *radiusPlaceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -485031,7 +485081,7 @@ func (t *unitsPlaceIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -485114,7 +485164,7 @@ func (t *attachmentPlaceIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -485197,7 +485247,7 @@ func (t *attributedToPlaceIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -485280,7 +485330,7 @@ func (t *audiencePlaceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -485348,7 +485398,7 @@ func (t *contentPlaceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -485431,7 +485481,7 @@ func (t *contextPlaceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -485499,7 +485549,7 @@ func (t *namePlaceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -485553,7 +485603,7 @@ func (t *endTimePlaceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -485636,7 +485686,7 @@ func (t *generatorPlaceIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -485719,7 +485769,7 @@ func (t *iconPlaceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -485802,7 +485852,7 @@ func (t *imagePlaceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -485885,7 +485935,7 @@ func (t *inReplyToPlaceIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -485968,7 +486018,7 @@ func (t *locationPlaceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -486051,7 +486101,7 @@ func (t *previewPlaceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -486105,7 +486155,7 @@ func (t *publishedPlaceIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -486173,7 +486223,7 @@ func (t *repliesPlaceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -486227,7 +486277,7 @@ func (t *startTimePlaceIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -486295,7 +486345,7 @@ func (t *summaryPlaceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -486378,7 +486428,7 @@ func (t *tagPlaceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -486432,7 +486482,7 @@ func (t *updatedPlaceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -486496,7 +486546,7 @@ func (t *urlPlaceIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlPlaceIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -486583,7 +486633,7 @@ func (t *toPlaceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -486666,7 +486716,7 @@ func (t *btoPlaceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -486749,7 +486799,7 @@ func (t *ccPlaceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -486832,7 +486882,7 @@ func (t *bccPlaceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -486886,7 +486936,7 @@ func (t *mediaTypePlaceIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -486940,7 +486990,7 @@ func (t *durationPlaceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -487008,7 +487058,7 @@ func (t *sourcePlaceIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -487076,7 +487126,7 @@ func (t *inboxPlaceIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -487144,7 +487194,7 @@ func (t *outboxPlaceIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -487227,7 +487277,7 @@ func (t *followingPlaceIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -487310,7 +487360,7 @@ func (t *followersPlaceIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -487393,7 +487443,7 @@ func (t *likedPlaceIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -487476,7 +487526,7 @@ func (t *likesPlaceIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -487530,7 +487580,7 @@ func (t *preferredUsernamePlaceIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -487598,7 +487648,7 @@ func (t *endpointsPlaceIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -487690,7 +487740,7 @@ type Profile struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesProfileIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameProfileIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -487736,14 +487786,14 @@ func (t *Profile) IsDescribesIRI() (ok bool) { } // GetDescribesIRI returns the value safely if IsDescribesIRI returned true -func (t *Profile) GetDescribesIRI() (v url.URL) { - return *t.describes.IRI +func (t *Profile) GetDescribesIRI() (v *url.URL) { + return t.describes.IRI } -// SetDescribesIRI sets the value of describes to be of url.URL type -func (t *Profile) SetDescribesIRI(v url.URL) { - t.describes = &describesProfileIntermediateType{IRI: &v} +// SetDescribesIRI sets the value of describes to be of *url.URL type +func (t *Profile) SetDescribesIRI(v *url.URL) { + t.describes = &describesProfileIntermediateType{IRI: v} } @@ -487795,14 +487845,14 @@ func (t *Profile) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Profile) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Profile) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Profile) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeProfileIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Profile) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeProfileIntermediateType{IRI: v} } @@ -487906,20 +487956,20 @@ func (t *Profile) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Profile) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Profile) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Profile) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentProfileIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Profile) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentProfileIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Profile) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentProfileIntermediateType{&attachmentProfileIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Profile) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentProfileIntermediateType{&attachmentProfileIntermediateType{IRI: v}}, t.attachment...) } @@ -488031,20 +488081,20 @@ func (t *Profile) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Profile) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Profile) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Profile) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToProfileIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Profile) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToProfileIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Profile) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToProfileIntermediateType{&attributedToProfileIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Profile) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToProfileIntermediateType{&attributedToProfileIntermediateType{IRI: v}}, t.attributedTo...) } @@ -488156,20 +488206,20 @@ func (t *Profile) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Profile) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Profile) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Profile) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceProfileIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Profile) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceProfileIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Profile) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceProfileIntermediateType{&audienceProfileIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Profile) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceProfileIntermediateType{&audienceProfileIntermediateType{IRI: v}}, t.audience...) } @@ -488281,20 +488331,20 @@ func (t *Profile) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Profile) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Profile) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Profile) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentProfileIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Profile) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentProfileIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Profile) PrependContentIRI(v url.URL) { - t.content = append([]*contentProfileIntermediateType{&contentProfileIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Profile) PrependContentIRI(v *url.URL) { + t.content = append([]*contentProfileIntermediateType{&contentProfileIntermediateType{IRI: v}}, t.content...) } @@ -488441,20 +488491,20 @@ func (t *Profile) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Profile) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Profile) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Profile) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextProfileIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Profile) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextProfileIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Profile) PrependContextIRI(v url.URL) { - t.context = append([]*contextProfileIntermediateType{&contextProfileIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Profile) PrependContextIRI(v *url.URL) { + t.context = append([]*contextProfileIntermediateType{&contextProfileIntermediateType{IRI: v}}, t.context...) } @@ -488566,20 +488616,20 @@ func (t *Profile) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Profile) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Profile) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Profile) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameProfileIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Profile) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameProfileIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Profile) PrependNameIRI(v url.URL) { - t.name = append([]*nameProfileIntermediateType{&nameProfileIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Profile) PrependNameIRI(v *url.URL) { + t.name = append([]*nameProfileIntermediateType{&nameProfileIntermediateType{IRI: v}}, t.name...) } @@ -488674,14 +488724,14 @@ func (t *Profile) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Profile) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Profile) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Profile) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeProfileIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Profile) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeProfileIntermediateType{IRI: v} } @@ -488785,20 +488835,20 @@ func (t *Profile) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Profile) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Profile) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Profile) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorProfileIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Profile) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorProfileIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Profile) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorProfileIntermediateType{&generatorProfileIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Profile) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorProfileIntermediateType{&generatorProfileIntermediateType{IRI: v}}, t.generator...) } @@ -488910,20 +488960,20 @@ func (t *Profile) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Profile) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Profile) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Profile) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconProfileIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Profile) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconProfileIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Profile) PrependIconIRI(v url.URL) { - t.icon = append([]*iconProfileIntermediateType{&iconProfileIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Profile) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconProfileIntermediateType{&iconProfileIntermediateType{IRI: v}}, t.icon...) } @@ -488965,14 +489015,14 @@ func (t *Profile) HasId() (ok bool) { } // GetId returns the value for id -func (t *Profile) GetId() (v url.URL) { - return *t.id +func (t *Profile) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Profile) SetId(v url.URL) { - t.id = &v +func (t *Profile) SetId(v *url.URL) { + t.id = v } @@ -489074,20 +489124,20 @@ func (t *Profile) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Profile) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Profile) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Profile) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageProfileIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Profile) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageProfileIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Profile) PrependImageIRI(v url.URL) { - t.image = append([]*imageProfileIntermediateType{&imageProfileIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Profile) PrependImageIRI(v *url.URL) { + t.image = append([]*imageProfileIntermediateType{&imageProfileIntermediateType{IRI: v}}, t.image...) } @@ -489199,20 +489249,20 @@ func (t *Profile) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Profile) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Profile) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Profile) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToProfileIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Profile) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToProfileIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Profile) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToProfileIntermediateType{&inReplyToProfileIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Profile) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToProfileIntermediateType{&inReplyToProfileIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -489324,20 +489374,20 @@ func (t *Profile) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Profile) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Profile) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Profile) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationProfileIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Profile) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationProfileIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Profile) PrependLocationIRI(v url.URL) { - t.location = append([]*locationProfileIntermediateType{&locationProfileIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Profile) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationProfileIntermediateType{&locationProfileIntermediateType{IRI: v}}, t.location...) } @@ -489449,20 +489499,20 @@ func (t *Profile) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Profile) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Profile) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Profile) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewProfileIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Profile) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewProfileIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Profile) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewProfileIntermediateType{&previewProfileIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Profile) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewProfileIntermediateType{&previewProfileIntermediateType{IRI: v}}, t.preview...) } @@ -489522,14 +489572,14 @@ func (t *Profile) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Profile) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Profile) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Profile) SetPublishedIRI(v url.URL) { - t.published = &publishedProfileIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Profile) SetPublishedIRI(v *url.URL) { + t.published = &publishedProfileIntermediateType{IRI: v} } @@ -489581,14 +489631,14 @@ func (t *Profile) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Profile) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Profile) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Profile) SetRepliesIRI(v url.URL) { - t.replies = &repliesProfileIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Profile) SetRepliesIRI(v *url.URL) { + t.replies = &repliesProfileIntermediateType{IRI: v} } @@ -489640,14 +489690,14 @@ func (t *Profile) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Profile) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Profile) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Profile) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeProfileIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Profile) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeProfileIntermediateType{IRI: v} } @@ -489751,20 +489801,20 @@ func (t *Profile) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Profile) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Profile) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Profile) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryProfileIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Profile) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryProfileIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Profile) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryProfileIntermediateType{&summaryProfileIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Profile) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryProfileIntermediateType{&summaryProfileIntermediateType{IRI: v}}, t.summary...) } @@ -489911,20 +489961,20 @@ func (t *Profile) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Profile) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Profile) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Profile) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagProfileIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Profile) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagProfileIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Profile) PrependTagIRI(v url.URL) { - t.tag = append([]*tagProfileIntermediateType{&tagProfileIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Profile) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagProfileIntermediateType{&tagProfileIntermediateType{IRI: v}}, t.tag...) } @@ -490016,14 +490066,14 @@ func (t *Profile) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Profile) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Profile) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Profile) SetUpdatedIRI(v url.URL) { - t.updated = &updatedProfileIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Profile) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedProfileIntermediateType{IRI: v} } @@ -490063,20 +490113,20 @@ func (t *Profile) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Profile) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Profile) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Profile) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlProfileIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Profile) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlProfileIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Profile) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlProfileIntermediateType{&urlProfileIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Profile) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlProfileIntermediateType{&urlProfileIntermediateType{anyURI: v}}, t.url...) } @@ -490220,20 +490270,20 @@ func (t *Profile) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Profile) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Profile) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Profile) AppendToIRI(v url.URL) { - t.to = append(t.to, &toProfileIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Profile) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toProfileIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Profile) PrependToIRI(v url.URL) { - t.to = append([]*toProfileIntermediateType{&toProfileIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Profile) PrependToIRI(v *url.URL) { + t.to = append([]*toProfileIntermediateType{&toProfileIntermediateType{IRI: v}}, t.to...) } @@ -490345,20 +490395,20 @@ func (t *Profile) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Profile) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Profile) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Profile) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoProfileIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Profile) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoProfileIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Profile) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoProfileIntermediateType{&btoProfileIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Profile) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoProfileIntermediateType{&btoProfileIntermediateType{IRI: v}}, t.bto...) } @@ -490470,20 +490520,20 @@ func (t *Profile) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Profile) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Profile) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Profile) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccProfileIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Profile) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccProfileIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Profile) PrependCcIRI(v url.URL) { - t.cc = append([]*ccProfileIntermediateType{&ccProfileIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Profile) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccProfileIntermediateType{&ccProfileIntermediateType{IRI: v}}, t.cc...) } @@ -490595,20 +490645,20 @@ func (t *Profile) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Profile) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Profile) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Profile) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccProfileIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Profile) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccProfileIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Profile) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccProfileIntermediateType{&bccProfileIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Profile) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccProfileIntermediateType{&bccProfileIntermediateType{IRI: v}}, t.bcc...) } @@ -490668,14 +490718,14 @@ func (t *Profile) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Profile) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Profile) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Profile) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeProfileIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Profile) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeProfileIntermediateType{IRI: v} } @@ -490727,14 +490777,14 @@ func (t *Profile) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Profile) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Profile) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Profile) SetDurationIRI(v url.URL) { - t.duration = &durationProfileIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Profile) SetDurationIRI(v *url.URL) { + t.duration = &durationProfileIntermediateType{IRI: v} } @@ -490786,14 +490836,14 @@ func (t *Profile) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Profile) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Profile) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Profile) SetSourceIRI(v url.URL) { - t.source = &sourceProfileIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Profile) SetSourceIRI(v *url.URL) { + t.source = &sourceProfileIntermediateType{IRI: v} } @@ -490845,14 +490895,14 @@ func (t *Profile) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Profile) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Profile) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Profile) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxProfileIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Profile) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxProfileIntermediateType{anyURI: v} } @@ -490904,14 +490954,14 @@ func (t *Profile) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Profile) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Profile) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Profile) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxProfileIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Profile) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxProfileIntermediateType{anyURI: v} } @@ -490981,14 +491031,14 @@ func (t *Profile) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Profile) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Profile) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Profile) SetFollowingAnyURI(v url.URL) { - t.following = &followingProfileIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Profile) SetFollowingAnyURI(v *url.URL) { + t.following = &followingProfileIntermediateType{anyURI: v} } @@ -491058,14 +491108,14 @@ func (t *Profile) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Profile) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Profile) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Profile) SetFollowersAnyURI(v url.URL) { - t.followers = &followersProfileIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Profile) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersProfileIntermediateType{anyURI: v} } @@ -491135,14 +491185,14 @@ func (t *Profile) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Profile) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Profile) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Profile) SetLikedAnyURI(v url.URL) { - t.liked = &likedProfileIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Profile) SetLikedAnyURI(v *url.URL) { + t.liked = &likedProfileIntermediateType{anyURI: v} } @@ -491212,14 +491262,14 @@ func (t *Profile) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Profile) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Profile) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Profile) SetLikesAnyURI(v url.URL) { - t.likes = &likesProfileIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Profile) SetLikesAnyURI(v *url.URL) { + t.likes = &likesProfileIntermediateType{anyURI: v} } @@ -491253,26 +491303,27 @@ func (t *Profile) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Profile) GetStreams(index int) (v url.URL) { +func (t *Profile) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Profile) AppendStreams(v url.URL) { +func (t *Profile) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Profile) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Profile) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Profile) 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] } @@ -491323,14 +491374,14 @@ func (t *Profile) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Profile) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Profile) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Profile) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameProfileIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Profile) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameProfileIntermediateType{IRI: v} } @@ -491417,14 +491468,14 @@ func (t *Profile) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Profile) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Profile) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Profile) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsProfileIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Profile) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsProfileIntermediateType{IRI: v} } @@ -491458,14 +491509,14 @@ func (t *Profile) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Profile) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Profile) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Profile) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Profile) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -491497,14 +491548,14 @@ func (t *Profile) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Profile) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Profile) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Profile) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Profile) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -491536,14 +491587,14 @@ func (t *Profile) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Profile) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Profile) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Profile) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Profile) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -491575,14 +491626,14 @@ func (t *Profile) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Profile) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Profile) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Profile) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Profile) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -491614,14 +491665,14 @@ func (t *Profile) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Profile) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Profile) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Profile) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Profile) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -491653,14 +491704,14 @@ func (t *Profile) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Profile) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Profile) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Profile) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Profile) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -491861,7 +491912,7 @@ func (t *Profile) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -492167,7 +492218,7 @@ func (t *Profile) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -492182,7 +492233,7 @@ func (t *Profile) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -492197,7 +492248,7 @@ func (t *Profile) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -492212,7 +492263,7 @@ func (t *Profile) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -492227,7 +492278,7 @@ func (t *Profile) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -492242,7 +492293,7 @@ func (t *Profile) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -493051,7 +493102,7 @@ func (t *Profile) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -493060,7 +493111,7 @@ func (t *Profile) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -493259,7 +493310,7 @@ func (t *describesProfileIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -493313,7 +493364,7 @@ func (t *altitudeProfileIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -493396,7 +493447,7 @@ func (t *attachmentProfileIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -493479,7 +493530,7 @@ func (t *attributedToProfileIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -493562,7 +493613,7 @@ func (t *audienceProfileIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -493630,7 +493681,7 @@ func (t *contentProfileIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -493713,7 +493764,7 @@ func (t *contextProfileIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -493781,7 +493832,7 @@ func (t *nameProfileIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -493835,7 +493886,7 @@ func (t *endTimeProfileIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -493918,7 +493969,7 @@ func (t *generatorProfileIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -494001,7 +494052,7 @@ func (t *iconProfileIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -494084,7 +494135,7 @@ func (t *imageProfileIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -494167,7 +494218,7 @@ func (t *inReplyToProfileIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -494250,7 +494301,7 @@ func (t *locationProfileIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -494333,7 +494384,7 @@ func (t *previewProfileIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -494387,7 +494438,7 @@ func (t *publishedProfileIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -494455,7 +494506,7 @@ func (t *repliesProfileIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -494509,7 +494560,7 @@ func (t *startTimeProfileIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -494577,7 +494628,7 @@ func (t *summaryProfileIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -494660,7 +494711,7 @@ func (t *tagProfileIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -494714,7 +494765,7 @@ func (t *updatedProfileIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -494778,7 +494829,7 @@ func (t *urlProfileIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlProfileIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -494865,7 +494916,7 @@ func (t *toProfileIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -494948,7 +494999,7 @@ func (t *btoProfileIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -495031,7 +495082,7 @@ func (t *ccProfileIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -495114,7 +495165,7 @@ func (t *bccProfileIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -495168,7 +495219,7 @@ func (t *mediaTypeProfileIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -495222,7 +495273,7 @@ func (t *durationProfileIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -495290,7 +495341,7 @@ func (t *sourceProfileIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -495358,7 +495409,7 @@ func (t *inboxProfileIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -495426,7 +495477,7 @@ func (t *outboxProfileIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -495509,7 +495560,7 @@ func (t *followingProfileIntermediateType) Serialize() (i interface{}, err error return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -495592,7 +495643,7 @@ func (t *followersProfileIntermediateType) Serialize() (i interface{}, err error return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -495675,7 +495726,7 @@ func (t *likedProfileIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -495758,7 +495809,7 @@ func (t *likesProfileIntermediateType) Serialize() (i interface{}, err error) { return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -495812,7 +495863,7 @@ func (t *preferredUsernameProfileIntermediateType) Serialize() (i interface{}, e return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -495880,7 +495931,7 @@ func (t *endpointsProfileIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -495974,7 +496025,7 @@ type Tombstone struct { // The functional 'likes' value could have multiple types, but only a single value likes *likesTombstoneIntermediateType // The 'streams' value holds a single type and any number of values - streams []url.URL + streams []*url.URL // The functional 'preferredUsername' value could have multiple types, but only a single value preferredUsername *preferredUsernameTombstoneIntermediateType // The '%!s(MISSING)Map' value holds language-specific values for property '%!s(MISSING)' @@ -496072,20 +496123,20 @@ func (t *Tombstone) IsFormerTypeIRI(index int) (ok bool) { } // GetFormerTypeIRI returns the value safely if IsFormerTypeIRI returned true for the specified index -func (t *Tombstone) GetFormerTypeIRI(index int) (v url.URL) { - return *t.formerType[index].IRI +func (t *Tombstone) GetFormerTypeIRI(index int) (v *url.URL) { + return t.formerType[index].IRI } -// AppendFormerTypeIRI adds to the back of formerType a url.URL type -func (t *Tombstone) AppendFormerTypeIRI(v url.URL) { - t.formerType = append(t.formerType, &formerTypeTombstoneIntermediateType{IRI: &v}) +// AppendFormerTypeIRI adds to the back of formerType a *url.URL type +func (t *Tombstone) AppendFormerTypeIRI(v *url.URL) { + t.formerType = append(t.formerType, &formerTypeTombstoneIntermediateType{IRI: v}) } -// PrependFormerTypeIRI adds to the front of formerType a url.URL type -func (t *Tombstone) PrependFormerTypeIRI(v url.URL) { - t.formerType = append([]*formerTypeTombstoneIntermediateType{&formerTypeTombstoneIntermediateType{IRI: &v}}, t.formerType...) +// PrependFormerTypeIRI adds to the front of formerType a *url.URL type +func (t *Tombstone) PrependFormerTypeIRI(v *url.URL) { + t.formerType = append([]*formerTypeTombstoneIntermediateType{&formerTypeTombstoneIntermediateType{IRI: v}}, t.formerType...) } @@ -496145,14 +496196,14 @@ func (t *Tombstone) IsDeletedIRI() (ok bool) { } // GetDeletedIRI returns the value safely if IsDeletedIRI returned true -func (t *Tombstone) GetDeletedIRI() (v url.URL) { - return *t.deleted.IRI +func (t *Tombstone) GetDeletedIRI() (v *url.URL) { + return t.deleted.IRI } -// SetDeletedIRI sets the value of deleted to be of url.URL type -func (t *Tombstone) SetDeletedIRI(v url.URL) { - t.deleted = &deletedTombstoneIntermediateType{IRI: &v} +// SetDeletedIRI sets the value of deleted to be of *url.URL type +func (t *Tombstone) SetDeletedIRI(v *url.URL) { + t.deleted = &deletedTombstoneIntermediateType{IRI: v} } @@ -496204,14 +496255,14 @@ func (t *Tombstone) IsAltitudeIRI() (ok bool) { } // GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true -func (t *Tombstone) GetAltitudeIRI() (v url.URL) { - return *t.altitude.IRI +func (t *Tombstone) GetAltitudeIRI() (v *url.URL) { + return t.altitude.IRI } -// SetAltitudeIRI sets the value of altitude to be of url.URL type -func (t *Tombstone) SetAltitudeIRI(v url.URL) { - t.altitude = &altitudeTombstoneIntermediateType{IRI: &v} +// SetAltitudeIRI sets the value of altitude to be of *url.URL type +func (t *Tombstone) SetAltitudeIRI(v *url.URL) { + t.altitude = &altitudeTombstoneIntermediateType{IRI: v} } @@ -496315,20 +496366,20 @@ func (t *Tombstone) IsAttachmentIRI(index int) (ok bool) { } // GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index -func (t *Tombstone) GetAttachmentIRI(index int) (v url.URL) { - return *t.attachment[index].IRI +func (t *Tombstone) GetAttachmentIRI(index int) (v *url.URL) { + return t.attachment[index].IRI } -// AppendAttachmentIRI adds to the back of attachment a url.URL type -func (t *Tombstone) AppendAttachmentIRI(v url.URL) { - t.attachment = append(t.attachment, &attachmentTombstoneIntermediateType{IRI: &v}) +// AppendAttachmentIRI adds to the back of attachment a *url.URL type +func (t *Tombstone) AppendAttachmentIRI(v *url.URL) { + t.attachment = append(t.attachment, &attachmentTombstoneIntermediateType{IRI: v}) } -// PrependAttachmentIRI adds to the front of attachment a url.URL type -func (t *Tombstone) PrependAttachmentIRI(v url.URL) { - t.attachment = append([]*attachmentTombstoneIntermediateType{&attachmentTombstoneIntermediateType{IRI: &v}}, t.attachment...) +// PrependAttachmentIRI adds to the front of attachment a *url.URL type +func (t *Tombstone) PrependAttachmentIRI(v *url.URL) { + t.attachment = append([]*attachmentTombstoneIntermediateType{&attachmentTombstoneIntermediateType{IRI: v}}, t.attachment...) } @@ -496440,20 +496491,20 @@ func (t *Tombstone) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Tombstone) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Tombstone) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Tombstone) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToTombstoneIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Tombstone) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToTombstoneIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Tombstone) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToTombstoneIntermediateType{&attributedToTombstoneIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Tombstone) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToTombstoneIntermediateType{&attributedToTombstoneIntermediateType{IRI: v}}, t.attributedTo...) } @@ -496565,20 +496616,20 @@ func (t *Tombstone) IsAudienceIRI(index int) (ok bool) { } // GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index -func (t *Tombstone) GetAudienceIRI(index int) (v url.URL) { - return *t.audience[index].IRI +func (t *Tombstone) GetAudienceIRI(index int) (v *url.URL) { + return t.audience[index].IRI } -// AppendAudienceIRI adds to the back of audience a url.URL type -func (t *Tombstone) AppendAudienceIRI(v url.URL) { - t.audience = append(t.audience, &audienceTombstoneIntermediateType{IRI: &v}) +// AppendAudienceIRI adds to the back of audience a *url.URL type +func (t *Tombstone) AppendAudienceIRI(v *url.URL) { + t.audience = append(t.audience, &audienceTombstoneIntermediateType{IRI: v}) } -// PrependAudienceIRI adds to the front of audience a url.URL type -func (t *Tombstone) PrependAudienceIRI(v url.URL) { - t.audience = append([]*audienceTombstoneIntermediateType{&audienceTombstoneIntermediateType{IRI: &v}}, t.audience...) +// PrependAudienceIRI adds to the front of audience a *url.URL type +func (t *Tombstone) PrependAudienceIRI(v *url.URL) { + t.audience = append([]*audienceTombstoneIntermediateType{&audienceTombstoneIntermediateType{IRI: v}}, t.audience...) } @@ -496690,20 +496741,20 @@ func (t *Tombstone) IsContentIRI(index int) (ok bool) { } // GetContentIRI returns the value safely if IsContentIRI returned true for the specified index -func (t *Tombstone) GetContentIRI(index int) (v url.URL) { - return *t.content[index].IRI +func (t *Tombstone) GetContentIRI(index int) (v *url.URL) { + return t.content[index].IRI } -// AppendContentIRI adds to the back of content a url.URL type -func (t *Tombstone) AppendContentIRI(v url.URL) { - t.content = append(t.content, &contentTombstoneIntermediateType{IRI: &v}) +// AppendContentIRI adds to the back of content a *url.URL type +func (t *Tombstone) AppendContentIRI(v *url.URL) { + t.content = append(t.content, &contentTombstoneIntermediateType{IRI: v}) } -// PrependContentIRI adds to the front of content a url.URL type -func (t *Tombstone) PrependContentIRI(v url.URL) { - t.content = append([]*contentTombstoneIntermediateType{&contentTombstoneIntermediateType{IRI: &v}}, t.content...) +// PrependContentIRI adds to the front of content a *url.URL type +func (t *Tombstone) PrependContentIRI(v *url.URL) { + t.content = append([]*contentTombstoneIntermediateType{&contentTombstoneIntermediateType{IRI: v}}, t.content...) } @@ -496850,20 +496901,20 @@ func (t *Tombstone) IsContextIRI(index int) (ok bool) { } // GetContextIRI returns the value safely if IsContextIRI returned true for the specified index -func (t *Tombstone) GetContextIRI(index int) (v url.URL) { - return *t.context[index].IRI +func (t *Tombstone) GetContextIRI(index int) (v *url.URL) { + return t.context[index].IRI } -// AppendContextIRI adds to the back of context a url.URL type -func (t *Tombstone) AppendContextIRI(v url.URL) { - t.context = append(t.context, &contextTombstoneIntermediateType{IRI: &v}) +// AppendContextIRI adds to the back of context a *url.URL type +func (t *Tombstone) AppendContextIRI(v *url.URL) { + t.context = append(t.context, &contextTombstoneIntermediateType{IRI: v}) } -// PrependContextIRI adds to the front of context a url.URL type -func (t *Tombstone) PrependContextIRI(v url.URL) { - t.context = append([]*contextTombstoneIntermediateType{&contextTombstoneIntermediateType{IRI: &v}}, t.context...) +// PrependContextIRI adds to the front of context a *url.URL type +func (t *Tombstone) PrependContextIRI(v *url.URL) { + t.context = append([]*contextTombstoneIntermediateType{&contextTombstoneIntermediateType{IRI: v}}, t.context...) } @@ -496975,20 +497026,20 @@ func (t *Tombstone) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Tombstone) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Tombstone) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Tombstone) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameTombstoneIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Tombstone) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameTombstoneIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Tombstone) PrependNameIRI(v url.URL) { - t.name = append([]*nameTombstoneIntermediateType{&nameTombstoneIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Tombstone) PrependNameIRI(v *url.URL) { + t.name = append([]*nameTombstoneIntermediateType{&nameTombstoneIntermediateType{IRI: v}}, t.name...) } @@ -497083,14 +497134,14 @@ func (t *Tombstone) IsEndTimeIRI() (ok bool) { } // GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true -func (t *Tombstone) GetEndTimeIRI() (v url.URL) { - return *t.endTime.IRI +func (t *Tombstone) GetEndTimeIRI() (v *url.URL) { + return t.endTime.IRI } -// SetEndTimeIRI sets the value of endTime to be of url.URL type -func (t *Tombstone) SetEndTimeIRI(v url.URL) { - t.endTime = &endTimeTombstoneIntermediateType{IRI: &v} +// SetEndTimeIRI sets the value of endTime to be of *url.URL type +func (t *Tombstone) SetEndTimeIRI(v *url.URL) { + t.endTime = &endTimeTombstoneIntermediateType{IRI: v} } @@ -497194,20 +497245,20 @@ func (t *Tombstone) IsGeneratorIRI(index int) (ok bool) { } // GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index -func (t *Tombstone) GetGeneratorIRI(index int) (v url.URL) { - return *t.generator[index].IRI +func (t *Tombstone) GetGeneratorIRI(index int) (v *url.URL) { + return t.generator[index].IRI } -// AppendGeneratorIRI adds to the back of generator a url.URL type -func (t *Tombstone) AppendGeneratorIRI(v url.URL) { - t.generator = append(t.generator, &generatorTombstoneIntermediateType{IRI: &v}) +// AppendGeneratorIRI adds to the back of generator a *url.URL type +func (t *Tombstone) AppendGeneratorIRI(v *url.URL) { + t.generator = append(t.generator, &generatorTombstoneIntermediateType{IRI: v}) } -// PrependGeneratorIRI adds to the front of generator a url.URL type -func (t *Tombstone) PrependGeneratorIRI(v url.URL) { - t.generator = append([]*generatorTombstoneIntermediateType{&generatorTombstoneIntermediateType{IRI: &v}}, t.generator...) +// PrependGeneratorIRI adds to the front of generator a *url.URL type +func (t *Tombstone) PrependGeneratorIRI(v *url.URL) { + t.generator = append([]*generatorTombstoneIntermediateType{&generatorTombstoneIntermediateType{IRI: v}}, t.generator...) } @@ -497319,20 +497370,20 @@ func (t *Tombstone) IsIconIRI(index int) (ok bool) { } // GetIconIRI returns the value safely if IsIconIRI returned true for the specified index -func (t *Tombstone) GetIconIRI(index int) (v url.URL) { - return *t.icon[index].IRI +func (t *Tombstone) GetIconIRI(index int) (v *url.URL) { + return t.icon[index].IRI } -// AppendIconIRI adds to the back of icon a url.URL type -func (t *Tombstone) AppendIconIRI(v url.URL) { - t.icon = append(t.icon, &iconTombstoneIntermediateType{IRI: &v}) +// AppendIconIRI adds to the back of icon a *url.URL type +func (t *Tombstone) AppendIconIRI(v *url.URL) { + t.icon = append(t.icon, &iconTombstoneIntermediateType{IRI: v}) } -// PrependIconIRI adds to the front of icon a url.URL type -func (t *Tombstone) PrependIconIRI(v url.URL) { - t.icon = append([]*iconTombstoneIntermediateType{&iconTombstoneIntermediateType{IRI: &v}}, t.icon...) +// PrependIconIRI adds to the front of icon a *url.URL type +func (t *Tombstone) PrependIconIRI(v *url.URL) { + t.icon = append([]*iconTombstoneIntermediateType{&iconTombstoneIntermediateType{IRI: v}}, t.icon...) } @@ -497374,14 +497425,14 @@ func (t *Tombstone) HasId() (ok bool) { } // GetId returns the value for id -func (t *Tombstone) GetId() (v url.URL) { - return *t.id +func (t *Tombstone) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Tombstone) SetId(v url.URL) { - t.id = &v +func (t *Tombstone) SetId(v *url.URL) { + t.id = v } @@ -497483,20 +497534,20 @@ func (t *Tombstone) IsImageIRI(index int) (ok bool) { } // GetImageIRI returns the value safely if IsImageIRI returned true for the specified index -func (t *Tombstone) GetImageIRI(index int) (v url.URL) { - return *t.image[index].IRI +func (t *Tombstone) GetImageIRI(index int) (v *url.URL) { + return t.image[index].IRI } -// AppendImageIRI adds to the back of image a url.URL type -func (t *Tombstone) AppendImageIRI(v url.URL) { - t.image = append(t.image, &imageTombstoneIntermediateType{IRI: &v}) +// AppendImageIRI adds to the back of image a *url.URL type +func (t *Tombstone) AppendImageIRI(v *url.URL) { + t.image = append(t.image, &imageTombstoneIntermediateType{IRI: v}) } -// PrependImageIRI adds to the front of image a url.URL type -func (t *Tombstone) PrependImageIRI(v url.URL) { - t.image = append([]*imageTombstoneIntermediateType{&imageTombstoneIntermediateType{IRI: &v}}, t.image...) +// PrependImageIRI adds to the front of image a *url.URL type +func (t *Tombstone) PrependImageIRI(v *url.URL) { + t.image = append([]*imageTombstoneIntermediateType{&imageTombstoneIntermediateType{IRI: v}}, t.image...) } @@ -497608,20 +497659,20 @@ func (t *Tombstone) IsInReplyToIRI(index int) (ok bool) { } // GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index -func (t *Tombstone) GetInReplyToIRI(index int) (v url.URL) { - return *t.inReplyTo[index].IRI +func (t *Tombstone) GetInReplyToIRI(index int) (v *url.URL) { + return t.inReplyTo[index].IRI } -// AppendInReplyToIRI adds to the back of inReplyTo a url.URL type -func (t *Tombstone) AppendInReplyToIRI(v url.URL) { - t.inReplyTo = append(t.inReplyTo, &inReplyToTombstoneIntermediateType{IRI: &v}) +// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type +func (t *Tombstone) AppendInReplyToIRI(v *url.URL) { + t.inReplyTo = append(t.inReplyTo, &inReplyToTombstoneIntermediateType{IRI: v}) } -// PrependInReplyToIRI adds to the front of inReplyTo a url.URL type -func (t *Tombstone) PrependInReplyToIRI(v url.URL) { - t.inReplyTo = append([]*inReplyToTombstoneIntermediateType{&inReplyToTombstoneIntermediateType{IRI: &v}}, t.inReplyTo...) +// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type +func (t *Tombstone) PrependInReplyToIRI(v *url.URL) { + t.inReplyTo = append([]*inReplyToTombstoneIntermediateType{&inReplyToTombstoneIntermediateType{IRI: v}}, t.inReplyTo...) } @@ -497733,20 +497784,20 @@ func (t *Tombstone) IsLocationIRI(index int) (ok bool) { } // GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index -func (t *Tombstone) GetLocationIRI(index int) (v url.URL) { - return *t.location[index].IRI +func (t *Tombstone) GetLocationIRI(index int) (v *url.URL) { + return t.location[index].IRI } -// AppendLocationIRI adds to the back of location a url.URL type -func (t *Tombstone) AppendLocationIRI(v url.URL) { - t.location = append(t.location, &locationTombstoneIntermediateType{IRI: &v}) +// AppendLocationIRI adds to the back of location a *url.URL type +func (t *Tombstone) AppendLocationIRI(v *url.URL) { + t.location = append(t.location, &locationTombstoneIntermediateType{IRI: v}) } -// PrependLocationIRI adds to the front of location a url.URL type -func (t *Tombstone) PrependLocationIRI(v url.URL) { - t.location = append([]*locationTombstoneIntermediateType{&locationTombstoneIntermediateType{IRI: &v}}, t.location...) +// PrependLocationIRI adds to the front of location a *url.URL type +func (t *Tombstone) PrependLocationIRI(v *url.URL) { + t.location = append([]*locationTombstoneIntermediateType{&locationTombstoneIntermediateType{IRI: v}}, t.location...) } @@ -497858,20 +497909,20 @@ func (t *Tombstone) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Tombstone) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Tombstone) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Tombstone) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewTombstoneIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Tombstone) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewTombstoneIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Tombstone) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewTombstoneIntermediateType{&previewTombstoneIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Tombstone) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewTombstoneIntermediateType{&previewTombstoneIntermediateType{IRI: v}}, t.preview...) } @@ -497931,14 +497982,14 @@ func (t *Tombstone) IsPublishedIRI() (ok bool) { } // GetPublishedIRI returns the value safely if IsPublishedIRI returned true -func (t *Tombstone) GetPublishedIRI() (v url.URL) { - return *t.published.IRI +func (t *Tombstone) GetPublishedIRI() (v *url.URL) { + return t.published.IRI } -// SetPublishedIRI sets the value of published to be of url.URL type -func (t *Tombstone) SetPublishedIRI(v url.URL) { - t.published = &publishedTombstoneIntermediateType{IRI: &v} +// SetPublishedIRI sets the value of published to be of *url.URL type +func (t *Tombstone) SetPublishedIRI(v *url.URL) { + t.published = &publishedTombstoneIntermediateType{IRI: v} } @@ -497990,14 +498041,14 @@ func (t *Tombstone) IsRepliesIRI() (ok bool) { } // GetRepliesIRI returns the value safely if IsRepliesIRI returned true -func (t *Tombstone) GetRepliesIRI() (v url.URL) { - return *t.replies.IRI +func (t *Tombstone) GetRepliesIRI() (v *url.URL) { + return t.replies.IRI } -// SetRepliesIRI sets the value of replies to be of url.URL type -func (t *Tombstone) SetRepliesIRI(v url.URL) { - t.replies = &repliesTombstoneIntermediateType{IRI: &v} +// SetRepliesIRI sets the value of replies to be of *url.URL type +func (t *Tombstone) SetRepliesIRI(v *url.URL) { + t.replies = &repliesTombstoneIntermediateType{IRI: v} } @@ -498049,14 +498100,14 @@ func (t *Tombstone) IsStartTimeIRI() (ok bool) { } // GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true -func (t *Tombstone) GetStartTimeIRI() (v url.URL) { - return *t.startTime.IRI +func (t *Tombstone) GetStartTimeIRI() (v *url.URL) { + return t.startTime.IRI } -// SetStartTimeIRI sets the value of startTime to be of url.URL type -func (t *Tombstone) SetStartTimeIRI(v url.URL) { - t.startTime = &startTimeTombstoneIntermediateType{IRI: &v} +// SetStartTimeIRI sets the value of startTime to be of *url.URL type +func (t *Tombstone) SetStartTimeIRI(v *url.URL) { + t.startTime = &startTimeTombstoneIntermediateType{IRI: v} } @@ -498160,20 +498211,20 @@ func (t *Tombstone) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Tombstone) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Tombstone) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Tombstone) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryTombstoneIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Tombstone) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryTombstoneIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Tombstone) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryTombstoneIntermediateType{&summaryTombstoneIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Tombstone) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryTombstoneIntermediateType{&summaryTombstoneIntermediateType{IRI: v}}, t.summary...) } @@ -498320,20 +498371,20 @@ func (t *Tombstone) IsTagIRI(index int) (ok bool) { } // GetTagIRI returns the value safely if IsTagIRI returned true for the specified index -func (t *Tombstone) GetTagIRI(index int) (v url.URL) { - return *t.tag[index].IRI +func (t *Tombstone) GetTagIRI(index int) (v *url.URL) { + return t.tag[index].IRI } -// AppendTagIRI adds to the back of tag a url.URL type -func (t *Tombstone) AppendTagIRI(v url.URL) { - t.tag = append(t.tag, &tagTombstoneIntermediateType{IRI: &v}) +// AppendTagIRI adds to the back of tag a *url.URL type +func (t *Tombstone) AppendTagIRI(v *url.URL) { + t.tag = append(t.tag, &tagTombstoneIntermediateType{IRI: v}) } -// PrependTagIRI adds to the front of tag a url.URL type -func (t *Tombstone) PrependTagIRI(v url.URL) { - t.tag = append([]*tagTombstoneIntermediateType{&tagTombstoneIntermediateType{IRI: &v}}, t.tag...) +// PrependTagIRI adds to the front of tag a *url.URL type +func (t *Tombstone) PrependTagIRI(v *url.URL) { + t.tag = append([]*tagTombstoneIntermediateType{&tagTombstoneIntermediateType{IRI: v}}, t.tag...) } @@ -498425,14 +498476,14 @@ func (t *Tombstone) IsUpdatedIRI() (ok bool) { } // GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true -func (t *Tombstone) GetUpdatedIRI() (v url.URL) { - return *t.updated.IRI +func (t *Tombstone) GetUpdatedIRI() (v *url.URL) { + return t.updated.IRI } -// SetUpdatedIRI sets the value of updated to be of url.URL type -func (t *Tombstone) SetUpdatedIRI(v url.URL) { - t.updated = &updatedTombstoneIntermediateType{IRI: &v} +// SetUpdatedIRI sets the value of updated to be of *url.URL type +func (t *Tombstone) SetUpdatedIRI(v *url.URL) { + t.updated = &updatedTombstoneIntermediateType{IRI: v} } @@ -498472,20 +498523,20 @@ func (t *Tombstone) IsUrlAnyURI(index int) (ok bool) { } // GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index -func (t *Tombstone) GetUrlAnyURI(index int) (v url.URL) { - return *t.url[index].anyURI +func (t *Tombstone) GetUrlAnyURI(index int) (v *url.URL) { + return t.url[index].anyURI } -// AppendUrlAnyURI adds to the back of url a url.URL type -func (t *Tombstone) AppendUrlAnyURI(v url.URL) { - t.url = append(t.url, &urlTombstoneIntermediateType{anyURI: &v}) +// AppendUrlAnyURI adds to the back of url a *url.URL type +func (t *Tombstone) AppendUrlAnyURI(v *url.URL) { + t.url = append(t.url, &urlTombstoneIntermediateType{anyURI: v}) } -// PrependUrlAnyURI adds to the front of url a url.URL type -func (t *Tombstone) PrependUrlAnyURI(v url.URL) { - t.url = append([]*urlTombstoneIntermediateType{&urlTombstoneIntermediateType{anyURI: &v}}, t.url...) +// PrependUrlAnyURI adds to the front of url a *url.URL type +func (t *Tombstone) PrependUrlAnyURI(v *url.URL) { + t.url = append([]*urlTombstoneIntermediateType{&urlTombstoneIntermediateType{anyURI: v}}, t.url...) } @@ -498629,20 +498680,20 @@ func (t *Tombstone) IsToIRI(index int) (ok bool) { } // GetToIRI returns the value safely if IsToIRI returned true for the specified index -func (t *Tombstone) GetToIRI(index int) (v url.URL) { - return *t.to[index].IRI +func (t *Tombstone) GetToIRI(index int) (v *url.URL) { + return t.to[index].IRI } -// AppendToIRI adds to the back of to a url.URL type -func (t *Tombstone) AppendToIRI(v url.URL) { - t.to = append(t.to, &toTombstoneIntermediateType{IRI: &v}) +// AppendToIRI adds to the back of to a *url.URL type +func (t *Tombstone) AppendToIRI(v *url.URL) { + t.to = append(t.to, &toTombstoneIntermediateType{IRI: v}) } -// PrependToIRI adds to the front of to a url.URL type -func (t *Tombstone) PrependToIRI(v url.URL) { - t.to = append([]*toTombstoneIntermediateType{&toTombstoneIntermediateType{IRI: &v}}, t.to...) +// PrependToIRI adds to the front of to a *url.URL type +func (t *Tombstone) PrependToIRI(v *url.URL) { + t.to = append([]*toTombstoneIntermediateType{&toTombstoneIntermediateType{IRI: v}}, t.to...) } @@ -498754,20 +498805,20 @@ func (t *Tombstone) IsBtoIRI(index int) (ok bool) { } // GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index -func (t *Tombstone) GetBtoIRI(index int) (v url.URL) { - return *t.bto[index].IRI +func (t *Tombstone) GetBtoIRI(index int) (v *url.URL) { + return t.bto[index].IRI } -// AppendBtoIRI adds to the back of bto a url.URL type -func (t *Tombstone) AppendBtoIRI(v url.URL) { - t.bto = append(t.bto, &btoTombstoneIntermediateType{IRI: &v}) +// AppendBtoIRI adds to the back of bto a *url.URL type +func (t *Tombstone) AppendBtoIRI(v *url.URL) { + t.bto = append(t.bto, &btoTombstoneIntermediateType{IRI: v}) } -// PrependBtoIRI adds to the front of bto a url.URL type -func (t *Tombstone) PrependBtoIRI(v url.URL) { - t.bto = append([]*btoTombstoneIntermediateType{&btoTombstoneIntermediateType{IRI: &v}}, t.bto...) +// PrependBtoIRI adds to the front of bto a *url.URL type +func (t *Tombstone) PrependBtoIRI(v *url.URL) { + t.bto = append([]*btoTombstoneIntermediateType{&btoTombstoneIntermediateType{IRI: v}}, t.bto...) } @@ -498879,20 +498930,20 @@ func (t *Tombstone) IsCcIRI(index int) (ok bool) { } // GetCcIRI returns the value safely if IsCcIRI returned true for the specified index -func (t *Tombstone) GetCcIRI(index int) (v url.URL) { - return *t.cc[index].IRI +func (t *Tombstone) GetCcIRI(index int) (v *url.URL) { + return t.cc[index].IRI } -// AppendCcIRI adds to the back of cc a url.URL type -func (t *Tombstone) AppendCcIRI(v url.URL) { - t.cc = append(t.cc, &ccTombstoneIntermediateType{IRI: &v}) +// AppendCcIRI adds to the back of cc a *url.URL type +func (t *Tombstone) AppendCcIRI(v *url.URL) { + t.cc = append(t.cc, &ccTombstoneIntermediateType{IRI: v}) } -// PrependCcIRI adds to the front of cc a url.URL type -func (t *Tombstone) PrependCcIRI(v url.URL) { - t.cc = append([]*ccTombstoneIntermediateType{&ccTombstoneIntermediateType{IRI: &v}}, t.cc...) +// PrependCcIRI adds to the front of cc a *url.URL type +func (t *Tombstone) PrependCcIRI(v *url.URL) { + t.cc = append([]*ccTombstoneIntermediateType{&ccTombstoneIntermediateType{IRI: v}}, t.cc...) } @@ -499004,20 +499055,20 @@ func (t *Tombstone) IsBccIRI(index int) (ok bool) { } // GetBccIRI returns the value safely if IsBccIRI returned true for the specified index -func (t *Tombstone) GetBccIRI(index int) (v url.URL) { - return *t.bcc[index].IRI +func (t *Tombstone) GetBccIRI(index int) (v *url.URL) { + return t.bcc[index].IRI } -// AppendBccIRI adds to the back of bcc a url.URL type -func (t *Tombstone) AppendBccIRI(v url.URL) { - t.bcc = append(t.bcc, &bccTombstoneIntermediateType{IRI: &v}) +// AppendBccIRI adds to the back of bcc a *url.URL type +func (t *Tombstone) AppendBccIRI(v *url.URL) { + t.bcc = append(t.bcc, &bccTombstoneIntermediateType{IRI: v}) } -// PrependBccIRI adds to the front of bcc a url.URL type -func (t *Tombstone) PrependBccIRI(v url.URL) { - t.bcc = append([]*bccTombstoneIntermediateType{&bccTombstoneIntermediateType{IRI: &v}}, t.bcc...) +// PrependBccIRI adds to the front of bcc a *url.URL type +func (t *Tombstone) PrependBccIRI(v *url.URL) { + t.bcc = append([]*bccTombstoneIntermediateType{&bccTombstoneIntermediateType{IRI: v}}, t.bcc...) } @@ -499077,14 +499128,14 @@ func (t *Tombstone) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Tombstone) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Tombstone) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Tombstone) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeTombstoneIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Tombstone) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeTombstoneIntermediateType{IRI: v} } @@ -499136,14 +499187,14 @@ func (t *Tombstone) IsDurationIRI() (ok bool) { } // GetDurationIRI returns the value safely if IsDurationIRI returned true -func (t *Tombstone) GetDurationIRI() (v url.URL) { - return *t.duration.IRI +func (t *Tombstone) GetDurationIRI() (v *url.URL) { + return t.duration.IRI } -// SetDurationIRI sets the value of duration to be of url.URL type -func (t *Tombstone) SetDurationIRI(v url.URL) { - t.duration = &durationTombstoneIntermediateType{IRI: &v} +// SetDurationIRI sets the value of duration to be of *url.URL type +func (t *Tombstone) SetDurationIRI(v *url.URL) { + t.duration = &durationTombstoneIntermediateType{IRI: v} } @@ -499195,14 +499246,14 @@ func (t *Tombstone) IsSourceIRI() (ok bool) { } // GetSourceIRI returns the value safely if IsSourceIRI returned true -func (t *Tombstone) GetSourceIRI() (v url.URL) { - return *t.source.IRI +func (t *Tombstone) GetSourceIRI() (v *url.URL) { + return t.source.IRI } -// SetSourceIRI sets the value of source to be of url.URL type -func (t *Tombstone) SetSourceIRI(v url.URL) { - t.source = &sourceTombstoneIntermediateType{IRI: &v} +// SetSourceIRI sets the value of source to be of *url.URL type +func (t *Tombstone) SetSourceIRI(v *url.URL) { + t.source = &sourceTombstoneIntermediateType{IRI: v} } @@ -499254,14 +499305,14 @@ func (t *Tombstone) IsInboxAnyURI() (ok bool) { } // GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true -func (t *Tombstone) GetInboxAnyURI() (v url.URL) { - return *t.inbox.anyURI +func (t *Tombstone) GetInboxAnyURI() (v *url.URL) { + return t.inbox.anyURI } -// SetInboxAnyURI sets the value of inbox to be of url.URL type -func (t *Tombstone) SetInboxAnyURI(v url.URL) { - t.inbox = &inboxTombstoneIntermediateType{anyURI: &v} +// SetInboxAnyURI sets the value of inbox to be of *url.URL type +func (t *Tombstone) SetInboxAnyURI(v *url.URL) { + t.inbox = &inboxTombstoneIntermediateType{anyURI: v} } @@ -499313,14 +499364,14 @@ func (t *Tombstone) IsOutboxAnyURI() (ok bool) { } // GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true -func (t *Tombstone) GetOutboxAnyURI() (v url.URL) { - return *t.outbox.anyURI +func (t *Tombstone) GetOutboxAnyURI() (v *url.URL) { + return t.outbox.anyURI } -// SetOutboxAnyURI sets the value of outbox to be of url.URL type -func (t *Tombstone) SetOutboxAnyURI(v url.URL) { - t.outbox = &outboxTombstoneIntermediateType{anyURI: &v} +// SetOutboxAnyURI sets the value of outbox to be of *url.URL type +func (t *Tombstone) SetOutboxAnyURI(v *url.URL) { + t.outbox = &outboxTombstoneIntermediateType{anyURI: v} } @@ -499390,14 +499441,14 @@ func (t *Tombstone) IsFollowingAnyURI() (ok bool) { } // GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true -func (t *Tombstone) GetFollowingAnyURI() (v url.URL) { - return *t.following.anyURI +func (t *Tombstone) GetFollowingAnyURI() (v *url.URL) { + return t.following.anyURI } -// SetFollowingAnyURI sets the value of following to be of url.URL type -func (t *Tombstone) SetFollowingAnyURI(v url.URL) { - t.following = &followingTombstoneIntermediateType{anyURI: &v} +// SetFollowingAnyURI sets the value of following to be of *url.URL type +func (t *Tombstone) SetFollowingAnyURI(v *url.URL) { + t.following = &followingTombstoneIntermediateType{anyURI: v} } @@ -499467,14 +499518,14 @@ func (t *Tombstone) IsFollowersAnyURI() (ok bool) { } // GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true -func (t *Tombstone) GetFollowersAnyURI() (v url.URL) { - return *t.followers.anyURI +func (t *Tombstone) GetFollowersAnyURI() (v *url.URL) { + return t.followers.anyURI } -// SetFollowersAnyURI sets the value of followers to be of url.URL type -func (t *Tombstone) SetFollowersAnyURI(v url.URL) { - t.followers = &followersTombstoneIntermediateType{anyURI: &v} +// SetFollowersAnyURI sets the value of followers to be of *url.URL type +func (t *Tombstone) SetFollowersAnyURI(v *url.URL) { + t.followers = &followersTombstoneIntermediateType{anyURI: v} } @@ -499544,14 +499595,14 @@ func (t *Tombstone) IsLikedAnyURI() (ok bool) { } // GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true -func (t *Tombstone) GetLikedAnyURI() (v url.URL) { - return *t.liked.anyURI +func (t *Tombstone) GetLikedAnyURI() (v *url.URL) { + return t.liked.anyURI } -// SetLikedAnyURI sets the value of liked to be of url.URL type -func (t *Tombstone) SetLikedAnyURI(v url.URL) { - t.liked = &likedTombstoneIntermediateType{anyURI: &v} +// SetLikedAnyURI sets the value of liked to be of *url.URL type +func (t *Tombstone) SetLikedAnyURI(v *url.URL) { + t.liked = &likedTombstoneIntermediateType{anyURI: v} } @@ -499621,14 +499672,14 @@ func (t *Tombstone) IsLikesAnyURI() (ok bool) { } // GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true -func (t *Tombstone) GetLikesAnyURI() (v url.URL) { - return *t.likes.anyURI +func (t *Tombstone) GetLikesAnyURI() (v *url.URL) { + return t.likes.anyURI } -// SetLikesAnyURI sets the value of likes to be of url.URL type -func (t *Tombstone) SetLikesAnyURI(v url.URL) { - t.likes = &likesTombstoneIntermediateType{anyURI: &v} +// SetLikesAnyURI sets the value of likes to be of *url.URL type +func (t *Tombstone) SetLikesAnyURI(v *url.URL) { + t.likes = &likesTombstoneIntermediateType{anyURI: v} } @@ -499662,26 +499713,27 @@ func (t *Tombstone) StreamsLen() (l int) { } // GetStreams returns the value for the specified index -func (t *Tombstone) GetStreams(index int) (v url.URL) { +func (t *Tombstone) GetStreams(index int) (v *url.URL) { return t.streams[index] } // AppendStreams adds a value to the back of streams -func (t *Tombstone) AppendStreams(v url.URL) { +func (t *Tombstone) AppendStreams(v *url.URL) { t.streams = append(t.streams, v) } // PrependStreams adds a value to the front of streams -func (t *Tombstone) PrependStreams(v url.URL) { - t.streams = append([]url.URL{v}, t.streams...) +func (t *Tombstone) PrependStreams(v *url.URL) { + t.streams = append([]*url.URL{v}, t.streams...) } // RemoveStreams deletes the value from the specified index func (t *Tombstone) 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] } @@ -499732,14 +499784,14 @@ func (t *Tombstone) IsPreferredUsernameIRI() (ok bool) { } // GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true -func (t *Tombstone) GetPreferredUsernameIRI() (v url.URL) { - return *t.preferredUsername.IRI +func (t *Tombstone) GetPreferredUsernameIRI() (v *url.URL) { + return t.preferredUsername.IRI } -// SetPreferredUsernameIRI sets the value of preferredUsername to be of url.URL type -func (t *Tombstone) SetPreferredUsernameIRI(v url.URL) { - t.preferredUsername = &preferredUsernameTombstoneIntermediateType{IRI: &v} +// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type +func (t *Tombstone) SetPreferredUsernameIRI(v *url.URL) { + t.preferredUsername = &preferredUsernameTombstoneIntermediateType{IRI: v} } @@ -499826,14 +499878,14 @@ func (t *Tombstone) IsEndpointsIRI() (ok bool) { } // GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true -func (t *Tombstone) GetEndpointsIRI() (v url.URL) { - return *t.endpoints.IRI +func (t *Tombstone) GetEndpointsIRI() (v *url.URL) { + return t.endpoints.IRI } -// SetEndpointsIRI sets the value of endpoints to be of url.URL type -func (t *Tombstone) SetEndpointsIRI(v url.URL) { - t.endpoints = &endpointsTombstoneIntermediateType{IRI: &v} +// SetEndpointsIRI sets the value of endpoints to be of *url.URL type +func (t *Tombstone) SetEndpointsIRI(v *url.URL) { + t.endpoints = &endpointsTombstoneIntermediateType{IRI: v} } @@ -499867,14 +499919,14 @@ func (t *Tombstone) HasProxyUrl() (ok bool) { } // GetProxyUrl returns the value for proxyUrl -func (t *Tombstone) GetProxyUrl() (v url.URL) { - return *t.proxyUrl +func (t *Tombstone) GetProxyUrl() (v *url.URL) { + return t.proxyUrl } // SetProxyUrl sets the value of proxyUrl -func (t *Tombstone) SetProxyUrl(v url.URL) { - t.proxyUrl = &v +func (t *Tombstone) SetProxyUrl(v *url.URL) { + t.proxyUrl = v } @@ -499906,14 +499958,14 @@ func (t *Tombstone) HasOauthAuthorizationEndpoint() (ok bool) { } // GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint -func (t *Tombstone) GetOauthAuthorizationEndpoint() (v url.URL) { - return *t.oauthAuthorizationEndpoint +func (t *Tombstone) GetOauthAuthorizationEndpoint() (v *url.URL) { + return t.oauthAuthorizationEndpoint } // SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint -func (t *Tombstone) SetOauthAuthorizationEndpoint(v url.URL) { - t.oauthAuthorizationEndpoint = &v +func (t *Tombstone) SetOauthAuthorizationEndpoint(v *url.URL) { + t.oauthAuthorizationEndpoint = v } @@ -499945,14 +499997,14 @@ func (t *Tombstone) HasOauthTokenEndpoint() (ok bool) { } // GetOauthTokenEndpoint returns the value for oauthTokenEndpoint -func (t *Tombstone) GetOauthTokenEndpoint() (v url.URL) { - return *t.oauthTokenEndpoint +func (t *Tombstone) GetOauthTokenEndpoint() (v *url.URL) { + return t.oauthTokenEndpoint } // SetOauthTokenEndpoint sets the value of oauthTokenEndpoint -func (t *Tombstone) SetOauthTokenEndpoint(v url.URL) { - t.oauthTokenEndpoint = &v +func (t *Tombstone) SetOauthTokenEndpoint(v *url.URL) { + t.oauthTokenEndpoint = v } @@ -499984,14 +500036,14 @@ func (t *Tombstone) HasProvideClientKey() (ok bool) { } // GetProvideClientKey returns the value for provideClientKey -func (t *Tombstone) GetProvideClientKey() (v url.URL) { - return *t.provideClientKey +func (t *Tombstone) GetProvideClientKey() (v *url.URL) { + return t.provideClientKey } // SetProvideClientKey sets the value of provideClientKey -func (t *Tombstone) SetProvideClientKey(v url.URL) { - t.provideClientKey = &v +func (t *Tombstone) SetProvideClientKey(v *url.URL) { + t.provideClientKey = v } @@ -500023,14 +500075,14 @@ func (t *Tombstone) HasSignClientKey() (ok bool) { } // GetSignClientKey returns the value for signClientKey -func (t *Tombstone) GetSignClientKey() (v url.URL) { - return *t.signClientKey +func (t *Tombstone) GetSignClientKey() (v *url.URL) { + return t.signClientKey } // SetSignClientKey sets the value of signClientKey -func (t *Tombstone) SetSignClientKey(v url.URL) { - t.signClientKey = &v +func (t *Tombstone) SetSignClientKey(v *url.URL) { + t.signClientKey = v } @@ -500062,14 +500114,14 @@ func (t *Tombstone) HasSharedInbox() (ok bool) { } // GetSharedInbox returns the value for sharedInbox -func (t *Tombstone) GetSharedInbox() (v url.URL) { - return *t.sharedInbox +func (t *Tombstone) GetSharedInbox() (v *url.URL) { + return t.sharedInbox } // SetSharedInbox sets the value of sharedInbox -func (t *Tombstone) SetSharedInbox(v url.URL) { - t.sharedInbox = &v +func (t *Tombstone) SetSharedInbox(v *url.URL) { + t.sharedInbox = v } @@ -500281,7 +500333,7 @@ func (t *Tombstone) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -500587,7 +500639,7 @@ func (t *Tombstone) Serialize() (m map[string]interface{}, err error) { if t.proxyUrl != nil { proxyUrlSerializeFunc := func() (interface{}, error) { v := t.proxyUrl - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } proxyUrlResult, err := proxyUrlSerializeFunc() @@ -500602,7 +500654,7 @@ func (t *Tombstone) Serialize() (m map[string]interface{}, err error) { if t.oauthAuthorizationEndpoint != nil { oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthAuthorizationEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc() @@ -500617,7 +500669,7 @@ func (t *Tombstone) Serialize() (m map[string]interface{}, err error) { if t.oauthTokenEndpoint != nil { oauthTokenEndpointSerializeFunc := func() (interface{}, error) { v := t.oauthTokenEndpoint - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc() @@ -500632,7 +500684,7 @@ func (t *Tombstone) Serialize() (m map[string]interface{}, err error) { if t.provideClientKey != nil { provideClientKeySerializeFunc := func() (interface{}, error) { v := t.provideClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } provideClientKeyResult, err := provideClientKeySerializeFunc() @@ -500647,7 +500699,7 @@ func (t *Tombstone) Serialize() (m map[string]interface{}, err error) { if t.signClientKey != nil { signClientKeySerializeFunc := func() (interface{}, error) { v := t.signClientKey - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } signClientKeyResult, err := signClientKeySerializeFunc() @@ -500662,7 +500714,7 @@ func (t *Tombstone) Serialize() (m map[string]interface{}, err error) { if t.sharedInbox != nil { sharedInboxSerializeFunc := func() (interface{}, error) { v := t.sharedInbox - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } sharedInboxResult, err := sharedInboxSerializeFunc() @@ -501499,7 +501551,7 @@ func (t *Tombstone) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -501508,7 +501560,7 @@ func (t *Tombstone) Deserialize(m map[string]interface{}) (err error) { if err != nil { return err } - t.streams = append(t.streams, *tmp) + t.streams = append(t.streams, tmp) handled = true } } @@ -501721,7 +501773,7 @@ func (t *formerTypeTombstoneIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -501775,7 +501827,7 @@ func (t *deletedTombstoneIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -501829,7 +501881,7 @@ func (t *altitudeTombstoneIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -501912,7 +501964,7 @@ func (t *attachmentTombstoneIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -501995,7 +502047,7 @@ func (t *attributedToTombstoneIntermediateType) Serialize() (i interface{}, err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -502078,7 +502130,7 @@ func (t *audienceTombstoneIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -502146,7 +502198,7 @@ func (t *contentTombstoneIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -502229,7 +502281,7 @@ func (t *contextTombstoneIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -502297,7 +502349,7 @@ func (t *nameTombstoneIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -502351,7 +502403,7 @@ func (t *endTimeTombstoneIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -502434,7 +502486,7 @@ func (t *generatorTombstoneIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -502517,7 +502569,7 @@ func (t *iconTombstoneIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -502600,7 +502652,7 @@ func (t *imageTombstoneIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -502683,7 +502735,7 @@ func (t *inReplyToTombstoneIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -502766,7 +502818,7 @@ func (t *locationTombstoneIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -502849,7 +502901,7 @@ func (t *previewTombstoneIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -502903,7 +502955,7 @@ func (t *publishedTombstoneIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -502971,7 +503023,7 @@ func (t *repliesTombstoneIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -503025,7 +503077,7 @@ func (t *startTimeTombstoneIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -503093,7 +503145,7 @@ func (t *summaryTombstoneIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -503176,7 +503228,7 @@ func (t *tagTombstoneIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -503230,7 +503282,7 @@ func (t *updatedTombstoneIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -503294,7 +503346,7 @@ func (t *urlTombstoneIntermediateType) Deserialize(i interface{}) (err error) { // Serialize turns this object into an interface{}. func (t *urlTombstoneIntermediateType) Serialize() (i interface{}, err error) { if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } if t.Link != nil { @@ -503381,7 +503433,7 @@ func (t *toTombstoneIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -503464,7 +503516,7 @@ func (t *btoTombstoneIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -503547,7 +503599,7 @@ func (t *ccTombstoneIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -503630,7 +503682,7 @@ func (t *bccTombstoneIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -503684,7 +503736,7 @@ func (t *mediaTypeTombstoneIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -503738,7 +503790,7 @@ func (t *durationTombstoneIntermediateType) Serialize() (i interface{}, err erro return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -503806,7 +503858,7 @@ func (t *sourceTombstoneIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -503874,7 +503926,7 @@ func (t *inboxTombstoneIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -503942,7 +503994,7 @@ func (t *outboxTombstoneIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -504025,7 +504077,7 @@ func (t *followingTombstoneIntermediateType) Serialize() (i interface{}, err err return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -504108,7 +504160,7 @@ func (t *followersTombstoneIntermediateType) Serialize() (i interface{}, err err return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -504191,7 +504243,7 @@ func (t *likedTombstoneIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -504274,7 +504326,7 @@ func (t *likesTombstoneIntermediateType) Serialize() (i interface{}, err error) return } if t.anyURI != nil { - i = anyURISerialize(*t.anyURI) + i = anyURISerialize(t.anyURI) return } i = unknownValueSerialize(t.unknown_) @@ -504328,7 +504380,7 @@ func (t *preferredUsernameTombstoneIntermediateType) Serialize() (i interface{}, return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -504396,7 +504448,7 @@ func (t *endpointsTombstoneIntermediateType) Serialize() (i interface{}, err err return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -504514,20 +504566,20 @@ func (t *Mention) IsAttributedToIRI(index int) (ok bool) { } // GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index -func (t *Mention) GetAttributedToIRI(index int) (v url.URL) { - return *t.attributedTo[index].IRI +func (t *Mention) GetAttributedToIRI(index int) (v *url.URL) { + return t.attributedTo[index].IRI } -// AppendAttributedToIRI adds to the back of attributedTo a url.URL type -func (t *Mention) AppendAttributedToIRI(v url.URL) { - t.attributedTo = append(t.attributedTo, &attributedToMentionIntermediateType{IRI: &v}) +// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type +func (t *Mention) AppendAttributedToIRI(v *url.URL) { + t.attributedTo = append(t.attributedTo, &attributedToMentionIntermediateType{IRI: v}) } -// PrependAttributedToIRI adds to the front of attributedTo a url.URL type -func (t *Mention) PrependAttributedToIRI(v url.URL) { - t.attributedTo = append([]*attributedToMentionIntermediateType{&attributedToMentionIntermediateType{IRI: &v}}, t.attributedTo...) +// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type +func (t *Mention) PrependAttributedToIRI(v *url.URL) { + t.attributedTo = append([]*attributedToMentionIntermediateType{&attributedToMentionIntermediateType{IRI: v}}, t.attributedTo...) } @@ -504569,14 +504621,14 @@ func (t *Mention) HasHref() (ok bool) { } // GetHref returns the value for href -func (t *Mention) GetHref() (v url.URL) { - return *t.href +func (t *Mention) GetHref() (v *url.URL) { + return t.href } // SetHref sets the value of href -func (t *Mention) SetHref(v url.URL) { - t.href = &v +func (t *Mention) SetHref(v *url.URL) { + t.href = v } @@ -504608,14 +504660,14 @@ func (t *Mention) HasId() (ok bool) { } // GetId returns the value for id -func (t *Mention) GetId() (v url.URL) { - return *t.id +func (t *Mention) GetId() (v *url.URL) { + return t.id } // SetId sets the value of id -func (t *Mention) SetId(v url.URL) { - t.id = &v +func (t *Mention) SetId(v *url.URL) { + t.id = v } @@ -504685,20 +504737,20 @@ func (t *Mention) IsRelIRI(index int) (ok bool) { } // GetRelIRI returns the value safely if IsRelIRI returned true for the specified index -func (t *Mention) GetRelIRI(index int) (v url.URL) { - return *t.rel[index].IRI +func (t *Mention) GetRelIRI(index int) (v *url.URL) { + return t.rel[index].IRI } -// AppendRelIRI adds to the back of rel a url.URL type -func (t *Mention) AppendRelIRI(v url.URL) { - t.rel = append(t.rel, &relMentionIntermediateType{IRI: &v}) +// AppendRelIRI adds to the back of rel a *url.URL type +func (t *Mention) AppendRelIRI(v *url.URL) { + t.rel = append(t.rel, &relMentionIntermediateType{IRI: v}) } -// PrependRelIRI adds to the front of rel a url.URL type -func (t *Mention) PrependRelIRI(v url.URL) { - t.rel = append([]*relMentionIntermediateType{&relMentionIntermediateType{IRI: &v}}, t.rel...) +// PrependRelIRI adds to the front of rel a *url.URL type +func (t *Mention) PrependRelIRI(v *url.URL) { + t.rel = append([]*relMentionIntermediateType{&relMentionIntermediateType{IRI: v}}, t.rel...) } @@ -504790,14 +504842,14 @@ func (t *Mention) IsMediaTypeIRI() (ok bool) { } // GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true -func (t *Mention) GetMediaTypeIRI() (v url.URL) { - return *t.mediaType.IRI +func (t *Mention) GetMediaTypeIRI() (v *url.URL) { + return t.mediaType.IRI } -// SetMediaTypeIRI sets the value of mediaType to be of url.URL type -func (t *Mention) SetMediaTypeIRI(v url.URL) { - t.mediaType = &mediaTypeMentionIntermediateType{IRI: &v} +// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type +func (t *Mention) SetMediaTypeIRI(v *url.URL) { + t.mediaType = &mediaTypeMentionIntermediateType{IRI: v} } @@ -504901,20 +504953,20 @@ func (t *Mention) IsNameIRI(index int) (ok bool) { } // GetNameIRI returns the value safely if IsNameIRI returned true for the specified index -func (t *Mention) GetNameIRI(index int) (v url.URL) { - return *t.name[index].IRI +func (t *Mention) GetNameIRI(index int) (v *url.URL) { + return t.name[index].IRI } -// AppendNameIRI adds to the back of name a url.URL type -func (t *Mention) AppendNameIRI(v url.URL) { - t.name = append(t.name, &nameMentionIntermediateType{IRI: &v}) +// AppendNameIRI adds to the back of name a *url.URL type +func (t *Mention) AppendNameIRI(v *url.URL) { + t.name = append(t.name, &nameMentionIntermediateType{IRI: v}) } -// PrependNameIRI adds to the front of name a url.URL type -func (t *Mention) PrependNameIRI(v url.URL) { - t.name = append([]*nameMentionIntermediateType{&nameMentionIntermediateType{IRI: &v}}, t.name...) +// PrependNameIRI adds to the front of name a *url.URL type +func (t *Mention) PrependNameIRI(v *url.URL) { + t.name = append([]*nameMentionIntermediateType{&nameMentionIntermediateType{IRI: v}}, t.name...) } @@ -505061,20 +505113,20 @@ func (t *Mention) IsSummaryIRI(index int) (ok bool) { } // GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index -func (t *Mention) GetSummaryIRI(index int) (v url.URL) { - return *t.summary[index].IRI +func (t *Mention) GetSummaryIRI(index int) (v *url.URL) { + return t.summary[index].IRI } -// AppendSummaryIRI adds to the back of summary a url.URL type -func (t *Mention) AppendSummaryIRI(v url.URL) { - t.summary = append(t.summary, &summaryMentionIntermediateType{IRI: &v}) +// AppendSummaryIRI adds to the back of summary a *url.URL type +func (t *Mention) AppendSummaryIRI(v *url.URL) { + t.summary = append(t.summary, &summaryMentionIntermediateType{IRI: v}) } -// PrependSummaryIRI adds to the front of summary a url.URL type -func (t *Mention) PrependSummaryIRI(v url.URL) { - t.summary = append([]*summaryMentionIntermediateType{&summaryMentionIntermediateType{IRI: &v}}, t.summary...) +// PrependSummaryIRI adds to the front of summary a *url.URL type +func (t *Mention) PrependSummaryIRI(v *url.URL) { + t.summary = append([]*summaryMentionIntermediateType{&summaryMentionIntermediateType{IRI: v}}, t.summary...) } @@ -505169,14 +505221,14 @@ func (t *Mention) IsHreflangIRI() (ok bool) { } // GetHreflangIRI returns the value safely if IsHreflangIRI returned true -func (t *Mention) GetHreflangIRI() (v url.URL) { - return *t.hreflang.IRI +func (t *Mention) GetHreflangIRI() (v *url.URL) { + return t.hreflang.IRI } -// SetHreflangIRI sets the value of hreflang to be of url.URL type -func (t *Mention) SetHreflangIRI(v url.URL) { - t.hreflang = &hreflangMentionIntermediateType{IRI: &v} +// SetHreflangIRI sets the value of hreflang to be of *url.URL type +func (t *Mention) SetHreflangIRI(v *url.URL) { + t.hreflang = &hreflangMentionIntermediateType{IRI: v} } @@ -505228,14 +505280,14 @@ func (t *Mention) IsHeightIRI() (ok bool) { } // GetHeightIRI returns the value safely if IsHeightIRI returned true -func (t *Mention) GetHeightIRI() (v url.URL) { - return *t.height.IRI +func (t *Mention) GetHeightIRI() (v *url.URL) { + return t.height.IRI } -// SetHeightIRI sets the value of height to be of url.URL type -func (t *Mention) SetHeightIRI(v url.URL) { - t.height = &heightMentionIntermediateType{IRI: &v} +// SetHeightIRI sets the value of height to be of *url.URL type +func (t *Mention) SetHeightIRI(v *url.URL) { + t.height = &heightMentionIntermediateType{IRI: v} } @@ -505287,14 +505339,14 @@ func (t *Mention) IsWidthIRI() (ok bool) { } // GetWidthIRI returns the value safely if IsWidthIRI returned true -func (t *Mention) GetWidthIRI() (v url.URL) { - return *t.width.IRI +func (t *Mention) GetWidthIRI() (v *url.URL) { + return t.width.IRI } -// SetWidthIRI sets the value of width to be of url.URL type -func (t *Mention) SetWidthIRI(v url.URL) { - t.width = &widthMentionIntermediateType{IRI: &v} +// SetWidthIRI sets the value of width to be of *url.URL type +func (t *Mention) SetWidthIRI(v *url.URL) { + t.width = &widthMentionIntermediateType{IRI: v} } @@ -505398,20 +505450,20 @@ func (t *Mention) IsPreviewIRI(index int) (ok bool) { } // GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index -func (t *Mention) GetPreviewIRI(index int) (v url.URL) { - return *t.preview[index].IRI +func (t *Mention) GetPreviewIRI(index int) (v *url.URL) { + return t.preview[index].IRI } -// AppendPreviewIRI adds to the back of preview a url.URL type -func (t *Mention) AppendPreviewIRI(v url.URL) { - t.preview = append(t.preview, &previewMentionIntermediateType{IRI: &v}) +// AppendPreviewIRI adds to the back of preview a *url.URL type +func (t *Mention) AppendPreviewIRI(v *url.URL) { + t.preview = append(t.preview, &previewMentionIntermediateType{IRI: v}) } -// PrependPreviewIRI adds to the front of preview a url.URL type -func (t *Mention) PrependPreviewIRI(v url.URL) { - t.preview = append([]*previewMentionIntermediateType{&previewMentionIntermediateType{IRI: &v}}, t.preview...) +// PrependPreviewIRI adds to the front of preview a *url.URL type +func (t *Mention) PrependPreviewIRI(v *url.URL) { + t.preview = append([]*previewMentionIntermediateType{&previewMentionIntermediateType{IRI: v}}, t.preview...) } @@ -505506,7 +505558,7 @@ func (t *Mention) Serialize() (m map[string]interface{}, err error) { if t.href != nil { hrefSerializeFunc := func() (interface{}, error) { v := t.href - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } hrefResult, err := hrefSerializeFunc() @@ -505521,7 +505573,7 @@ func (t *Mention) Serialize() (m map[string]interface{}, err error) { if t.id != nil { idSerializeFunc := func() (interface{}, error) { v := t.id - tmp := anyURISerialize(*v) + tmp := anyURISerialize(v) return tmp, nil } idResult, err := idSerializeFunc() @@ -505983,7 +506035,7 @@ func (t *attributedToMentionIntermediateType) Serialize() (i interface{}, err er return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -506037,7 +506089,7 @@ func (t *relMentionIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -506091,7 +506143,7 @@ func (t *mediaTypeMentionIntermediateType) Serialize() (i interface{}, err error return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -506159,7 +506211,7 @@ func (t *nameMentionIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -506227,7 +506279,7 @@ func (t *summaryMentionIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -506281,7 +506333,7 @@ func (t *hreflangMentionIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -506335,7 +506387,7 @@ func (t *heightMentionIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -506389,7 +506441,7 @@ func (t *widthMentionIntermediateType) Serialize() (i interface{}, err error) { return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -506472,7 +506524,7 @@ func (t *previewMentionIntermediateType) Serialize() (i interface{}, err error) return } if t.IRI != nil { - i = IRISerialize(*t.IRI) + i = IRISerialize(t.IRI) return } i = unknownValueSerialize(t.unknown_) @@ -506551,7 +506603,7 @@ func anyURIDeserialize(v interface{}) (u *url.URL, err error) { } // anyURISerialize turns a URI into a string -func anyURISerialize(u url.URL) (s string) { +func anyURISerialize(u *url.URL) (s string) { s = u.String() return @@ -506846,7 +506898,7 @@ func IRIDeserialize(v interface{}) (u *url.URL, err error) { } // IRISerialize turns an IRI into a string -func IRISerialize(u url.URL) (s string) { +func IRISerialize(u *url.URL) (s string) { s = u.String() return diff --git a/vocab/vocab_test.go b/vocab/vocab_test.go index 48095cd..739df0d 100644 --- a/vocab/vocab_test.go +++ b/vocab/vocab_test.go @@ -24,12 +24,12 @@ func GetJSONDiff(str1, str2 []byte) ([]string, error) { return deep.Equal(i1, i2), nil } -func MustParseURL(s string) url.URL { +func MustParseURL(s string) *url.URL { u, err := url.Parse(s) if err != nil { panic(err) } - return *u + return u } var ( @@ -1117,17 +1117,17 @@ func TestReserializationAbility(t *testing.T) { t.Fatal(err) } expectedSamActor := &Person{} - expectedSamActor.SetInboxAnyURI(*samIRIInbox) - expectedSamActor.SetId(*samIRI) + expectedSamActor.SetInboxAnyURI(samIRIInbox) + expectedSamActor.SetId(samIRI) expectedNote := &Note{} - expectedNote.SetId(*noteIRI) + expectedNote.SetId(noteIRI) expectedNote.AppendNameString("A Note") expectedNote.AppendContentString("This is a simple note") expectedNote.AppendToObject(expectedSamActor) expectedUpdate := &Update{} - expectedUpdate.AppendActorIRI(*sallyIRI) + expectedUpdate.AppendActorIRI(sallyIRI) expectedUpdate.AppendSummaryString("Sally updated her note") - expectedUpdate.SetId(*activityIRI) + expectedUpdate.SetId(activityIRI) expectedUpdate.AppendObject(expectedNote) tables := []struct { name string