forked from go-fed/activity
-
Notifications
You must be signed in to change notification settings - Fork 1
/
gen_property_activitystreams_result_interface.go
1687 lines (1683 loc) · 96.2 KB
/
gen_property_activitystreams_result_interface.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Code generated by astool. DO NOT EDIT.
package vocab
import "net/url"
// ActivityStreamsResultPropertyIterator represents a single value for the
// "result" property.
type ActivityStreamsResultPropertyIterator interface {
// GetActivityStreamsAccept returns the value of this property. When
// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
// will return an arbitrary value.
GetActivityStreamsAccept() ActivityStreamsAccept
// GetActivityStreamsActivity returns the value of this property. When
// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
// will return an arbitrary value.
GetActivityStreamsActivity() ActivityStreamsActivity
// GetActivityStreamsAdd returns the value of this property. When
// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
// return an arbitrary value.
GetActivityStreamsAdd() ActivityStreamsAdd
// GetActivityStreamsAnnounce returns the value of this property. When
// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
// will return an arbitrary value.
GetActivityStreamsAnnounce() ActivityStreamsAnnounce
// GetActivityStreamsApplication returns the value of this property. When
// IsActivityStreamsApplication returns false,
// GetActivityStreamsApplication will return an arbitrary value.
GetActivityStreamsApplication() ActivityStreamsApplication
// GetActivityStreamsArrive returns the value of this property. When
// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
// will return an arbitrary value.
GetActivityStreamsArrive() ActivityStreamsArrive
// GetActivityStreamsArticle returns the value of this property. When
// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
// will return an arbitrary value.
GetActivityStreamsArticle() ActivityStreamsArticle
// GetActivityStreamsAudio returns the value of this property. When
// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
// return an arbitrary value.
GetActivityStreamsAudio() ActivityStreamsAudio
// GetActivityStreamsBlock returns the value of this property. When
// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
// return an arbitrary value.
GetActivityStreamsBlock() ActivityStreamsBlock
// GetActivityStreamsCollection returns the value of this property. When
// IsActivityStreamsCollection returns false,
// GetActivityStreamsCollection will return an arbitrary value.
GetActivityStreamsCollection() ActivityStreamsCollection
// GetActivityStreamsCollectionPage returns the value of this property.
// When IsActivityStreamsCollectionPage returns false,
// GetActivityStreamsCollectionPage will return an arbitrary value.
GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
// GetActivityStreamsCreate returns the value of this property. When
// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
// will return an arbitrary value.
GetActivityStreamsCreate() ActivityStreamsCreate
// GetActivityStreamsDelete returns the value of this property. When
// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
// will return an arbitrary value.
GetActivityStreamsDelete() ActivityStreamsDelete
// GetActivityStreamsDislike returns the value of this property. When
// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
// will return an arbitrary value.
GetActivityStreamsDislike() ActivityStreamsDislike
// GetActivityStreamsDocument returns the value of this property. When
// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
// will return an arbitrary value.
GetActivityStreamsDocument() ActivityStreamsDocument
// GetActivityStreamsEvent returns the value of this property. When
// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
// return an arbitrary value.
GetActivityStreamsEvent() ActivityStreamsEvent
// GetActivityStreamsFlag returns the value of this property. When
// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
// return an arbitrary value.
GetActivityStreamsFlag() ActivityStreamsFlag
// GetActivityStreamsFollow returns the value of this property. When
// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
// will return an arbitrary value.
GetActivityStreamsFollow() ActivityStreamsFollow
// GetActivityStreamsGroup returns the value of this property. When
// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
// return an arbitrary value.
GetActivityStreamsGroup() ActivityStreamsGroup
// GetActivityStreamsIgnore returns the value of this property. When
// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
// will return an arbitrary value.
GetActivityStreamsIgnore() ActivityStreamsIgnore
// GetActivityStreamsImage returns the value of this property. When
// IsActivityStreamsImage returns false, GetActivityStreamsImage will
// return an arbitrary value.
GetActivityStreamsImage() ActivityStreamsImage
// GetActivityStreamsIntransitiveActivity returns the value of this
// property. When IsActivityStreamsIntransitiveActivity returns false,
// GetActivityStreamsIntransitiveActivity will return an arbitrary
// value.
GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
// GetActivityStreamsInvite returns the value of this property. When
// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
// will return an arbitrary value.
GetActivityStreamsInvite() ActivityStreamsInvite
// GetActivityStreamsJoin returns the value of this property. When
// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
// return an arbitrary value.
GetActivityStreamsJoin() ActivityStreamsJoin
// GetActivityStreamsLeave returns the value of this property. When
// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
// return an arbitrary value.
GetActivityStreamsLeave() ActivityStreamsLeave
// GetActivityStreamsLike returns the value of this property. When
// IsActivityStreamsLike returns false, GetActivityStreamsLike will
// return an arbitrary value.
GetActivityStreamsLike() ActivityStreamsLike
// GetActivityStreamsLink returns the value of this property. When
// IsActivityStreamsLink returns false, GetActivityStreamsLink will
// return an arbitrary value.
GetActivityStreamsLink() ActivityStreamsLink
// GetActivityStreamsListen returns the value of this property. When
// IsActivityStreamsListen returns false, GetActivityStreamsListen
// will return an arbitrary value.
GetActivityStreamsListen() ActivityStreamsListen
// GetActivityStreamsMention returns the value of this property. When
// IsActivityStreamsMention returns false, GetActivityStreamsMention
// will return an arbitrary value.
GetActivityStreamsMention() ActivityStreamsMention
// GetActivityStreamsMove returns the value of this property. When
// IsActivityStreamsMove returns false, GetActivityStreamsMove will
// return an arbitrary value.
GetActivityStreamsMove() ActivityStreamsMove
// GetActivityStreamsNote returns the value of this property. When
// IsActivityStreamsNote returns false, GetActivityStreamsNote will
// return an arbitrary value.
GetActivityStreamsNote() ActivityStreamsNote
// GetActivityStreamsObject returns the value of this property. When
// IsActivityStreamsObject returns false, GetActivityStreamsObject
// will return an arbitrary value.
GetActivityStreamsObject() ActivityStreamsObject
// GetActivityStreamsOffer returns the value of this property. When
// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
// return an arbitrary value.
GetActivityStreamsOffer() ActivityStreamsOffer
// GetActivityStreamsOrderedCollection returns the value of this property.
// When IsActivityStreamsOrderedCollection returns false,
// GetActivityStreamsOrderedCollection will return an arbitrary value.
GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
// GetActivityStreamsOrderedCollectionPage returns the value of this
// property. When IsActivityStreamsOrderedCollectionPage returns
// false, GetActivityStreamsOrderedCollectionPage will return an
// arbitrary value.
GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
// GetActivityStreamsOrganization returns the value of this property. When
// IsActivityStreamsOrganization returns false,
// GetActivityStreamsOrganization will return an arbitrary value.
GetActivityStreamsOrganization() ActivityStreamsOrganization
// GetActivityStreamsPage returns the value of this property. When
// IsActivityStreamsPage returns false, GetActivityStreamsPage will
// return an arbitrary value.
GetActivityStreamsPage() ActivityStreamsPage
// GetActivityStreamsPerson returns the value of this property. When
// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
// will return an arbitrary value.
GetActivityStreamsPerson() ActivityStreamsPerson
// GetActivityStreamsPlace returns the value of this property. When
// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
// return an arbitrary value.
GetActivityStreamsPlace() ActivityStreamsPlace
// GetActivityStreamsProfile returns the value of this property. When
// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
// will return an arbitrary value.
GetActivityStreamsProfile() ActivityStreamsProfile
// GetActivityStreamsQuestion returns the value of this property. When
// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
// will return an arbitrary value.
GetActivityStreamsQuestion() ActivityStreamsQuestion
// GetActivityStreamsRead returns the value of this property. When
// IsActivityStreamsRead returns false, GetActivityStreamsRead will
// return an arbitrary value.
GetActivityStreamsRead() ActivityStreamsRead
// GetActivityStreamsReject returns the value of this property. When
// IsActivityStreamsReject returns false, GetActivityStreamsReject
// will return an arbitrary value.
GetActivityStreamsReject() ActivityStreamsReject
// GetActivityStreamsRelationship returns the value of this property. When
// IsActivityStreamsRelationship returns false,
// GetActivityStreamsRelationship will return an arbitrary value.
GetActivityStreamsRelationship() ActivityStreamsRelationship
// GetActivityStreamsRemove returns the value of this property. When
// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
// will return an arbitrary value.
GetActivityStreamsRemove() ActivityStreamsRemove
// GetActivityStreamsService returns the value of this property. When
// IsActivityStreamsService returns false, GetActivityStreamsService
// will return an arbitrary value.
GetActivityStreamsService() ActivityStreamsService
// GetActivityStreamsTentativeAccept returns the value of this property.
// When IsActivityStreamsTentativeAccept returns false,
// GetActivityStreamsTentativeAccept will return an arbitrary value.
GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
// GetActivityStreamsTentativeReject returns the value of this property.
// When IsActivityStreamsTentativeReject returns false,
// GetActivityStreamsTentativeReject will return an arbitrary value.
GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
// GetActivityStreamsTombstone returns the value of this property. When
// IsActivityStreamsTombstone returns false,
// GetActivityStreamsTombstone will return an arbitrary value.
GetActivityStreamsTombstone() ActivityStreamsTombstone
// GetActivityStreamsTravel returns the value of this property. When
// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
// will return an arbitrary value.
GetActivityStreamsTravel() ActivityStreamsTravel
// GetActivityStreamsUndo returns the value of this property. When
// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
// return an arbitrary value.
GetActivityStreamsUndo() ActivityStreamsUndo
// GetActivityStreamsUpdate returns the value of this property. When
// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
// will return an arbitrary value.
GetActivityStreamsUpdate() ActivityStreamsUpdate
// GetActivityStreamsVideo returns the value of this property. When
// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
// return an arbitrary value.
GetActivityStreamsVideo() ActivityStreamsVideo
// GetActivityStreamsView returns the value of this property. When
// IsActivityStreamsView returns false, GetActivityStreamsView will
// return an arbitrary value.
GetActivityStreamsView() ActivityStreamsView
// GetIRI returns the IRI of this property. When IsIRI returns false,
// GetIRI will return an arbitrary value.
GetIRI() *url.URL
// GetSchemaPropertyValue returns the value of this property. When
// IsSchemaPropertyValue returns false, GetSchemaPropertyValue will
// return an arbitrary value.
GetSchemaPropertyValue() SchemaPropertyValue
// GetTootEmoji returns the value of this property. When IsTootEmoji
// returns false, GetTootEmoji will return an arbitrary value.
GetTootEmoji() TootEmoji
// GetTootHashtag returns the value of this property. When IsTootHashtag
// returns false, GetTootHashtag will return an arbitrary value.
GetTootHashtag() TootHashtag
// GetTootIdentityProof returns the value of this property. When
// IsTootIdentityProof returns false, GetTootIdentityProof will return
// an arbitrary value.
GetTootIdentityProof() TootIdentityProof
// GetType returns the value in this property as a Type. Returns nil if
// the value is not an ActivityStreams type, such as an IRI or another
// value.
GetType() Type
// HasAny returns true if any of the different values is set.
HasAny() bool
// IsActivityStreamsAccept returns true if this property has a type of
// "Accept". When true, use the GetActivityStreamsAccept and
// SetActivityStreamsAccept methods to access and set this property.
IsActivityStreamsAccept() bool
// IsActivityStreamsActivity returns true if this property has a type of
// "Activity". When true, use the GetActivityStreamsActivity and
// SetActivityStreamsActivity methods to access and set this property.
IsActivityStreamsActivity() bool
// IsActivityStreamsAdd returns true if this property has a type of "Add".
// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
// methods to access and set this property.
IsActivityStreamsAdd() bool
// IsActivityStreamsAnnounce returns true if this property has a type of
// "Announce". When true, use the GetActivityStreamsAnnounce and
// SetActivityStreamsAnnounce methods to access and set this property.
IsActivityStreamsAnnounce() bool
// IsActivityStreamsApplication returns true if this property has a type
// of "Application". When true, use the GetActivityStreamsApplication
// and SetActivityStreamsApplication methods to access and set this
// property.
IsActivityStreamsApplication() bool
// IsActivityStreamsArrive returns true if this property has a type of
// "Arrive". When true, use the GetActivityStreamsArrive and
// SetActivityStreamsArrive methods to access and set this property.
IsActivityStreamsArrive() bool
// IsActivityStreamsArticle returns true if this property has a type of
// "Article". When true, use the GetActivityStreamsArticle and
// SetActivityStreamsArticle methods to access and set this property.
IsActivityStreamsArticle() bool
// IsActivityStreamsAudio returns true if this property has a type of
// "Audio". When true, use the GetActivityStreamsAudio and
// SetActivityStreamsAudio methods to access and set this property.
IsActivityStreamsAudio() bool
// IsActivityStreamsBlock returns true if this property has a type of
// "Block". When true, use the GetActivityStreamsBlock and
// SetActivityStreamsBlock methods to access and set this property.
IsActivityStreamsBlock() bool
// IsActivityStreamsCollection returns true if this property has a type of
// "Collection". When true, use the GetActivityStreamsCollection and
// SetActivityStreamsCollection methods to access and set this
// property.
IsActivityStreamsCollection() bool
// IsActivityStreamsCollectionPage returns true if this property has a
// type of "CollectionPage". When true, use the
// GetActivityStreamsCollectionPage and
// SetActivityStreamsCollectionPage methods to access and set this
// property.
IsActivityStreamsCollectionPage() bool
// IsActivityStreamsCreate returns true if this property has a type of
// "Create". When true, use the GetActivityStreamsCreate and
// SetActivityStreamsCreate methods to access and set this property.
IsActivityStreamsCreate() bool
// IsActivityStreamsDelete returns true if this property has a type of
// "Delete". When true, use the GetActivityStreamsDelete and
// SetActivityStreamsDelete methods to access and set this property.
IsActivityStreamsDelete() bool
// IsActivityStreamsDislike returns true if this property has a type of
// "Dislike". When true, use the GetActivityStreamsDislike and
// SetActivityStreamsDislike methods to access and set this property.
IsActivityStreamsDislike() bool
// IsActivityStreamsDocument returns true if this property has a type of
// "Document". When true, use the GetActivityStreamsDocument and
// SetActivityStreamsDocument methods to access and set this property.
IsActivityStreamsDocument() bool
// IsActivityStreamsEvent returns true if this property has a type of
// "Event". When true, use the GetActivityStreamsEvent and
// SetActivityStreamsEvent methods to access and set this property.
IsActivityStreamsEvent() bool
// IsActivityStreamsFlag returns true if this property has a type of
// "Flag". When true, use the GetActivityStreamsFlag and
// SetActivityStreamsFlag methods to access and set this property.
IsActivityStreamsFlag() bool
// IsActivityStreamsFollow returns true if this property has a type of
// "Follow". When true, use the GetActivityStreamsFollow and
// SetActivityStreamsFollow methods to access and set this property.
IsActivityStreamsFollow() bool
// IsActivityStreamsGroup returns true if this property has a type of
// "Group". When true, use the GetActivityStreamsGroup and
// SetActivityStreamsGroup methods to access and set this property.
IsActivityStreamsGroup() bool
// IsActivityStreamsIgnore returns true if this property has a type of
// "Ignore". When true, use the GetActivityStreamsIgnore and
// SetActivityStreamsIgnore methods to access and set this property.
IsActivityStreamsIgnore() bool
// IsActivityStreamsImage returns true if this property has a type of
// "Image". When true, use the GetActivityStreamsImage and
// SetActivityStreamsImage methods to access and set this property.
IsActivityStreamsImage() bool
// IsActivityStreamsIntransitiveActivity returns true if this property has
// a type of "IntransitiveActivity". When true, use the
// GetActivityStreamsIntransitiveActivity and
// SetActivityStreamsIntransitiveActivity methods to access and set
// this property.
IsActivityStreamsIntransitiveActivity() bool
// IsActivityStreamsInvite returns true if this property has a type of
// "Invite". When true, use the GetActivityStreamsInvite and
// SetActivityStreamsInvite methods to access and set this property.
IsActivityStreamsInvite() bool
// IsActivityStreamsJoin returns true if this property has a type of
// "Join". When true, use the GetActivityStreamsJoin and
// SetActivityStreamsJoin methods to access and set this property.
IsActivityStreamsJoin() bool
// IsActivityStreamsLeave returns true if this property has a type of
// "Leave". When true, use the GetActivityStreamsLeave and
// SetActivityStreamsLeave methods to access and set this property.
IsActivityStreamsLeave() bool
// IsActivityStreamsLike returns true if this property has a type of
// "Like". When true, use the GetActivityStreamsLike and
// SetActivityStreamsLike methods to access and set this property.
IsActivityStreamsLike() bool
// IsActivityStreamsLink returns true if this property has a type of
// "Link". When true, use the GetActivityStreamsLink and
// SetActivityStreamsLink methods to access and set this property.
IsActivityStreamsLink() bool
// IsActivityStreamsListen returns true if this property has a type of
// "Listen". When true, use the GetActivityStreamsListen and
// SetActivityStreamsListen methods to access and set this property.
IsActivityStreamsListen() bool
// IsActivityStreamsMention returns true if this property has a type of
// "Mention". When true, use the GetActivityStreamsMention and
// SetActivityStreamsMention methods to access and set this property.
IsActivityStreamsMention() bool
// IsActivityStreamsMove returns true if this property has a type of
// "Move". When true, use the GetActivityStreamsMove and
// SetActivityStreamsMove methods to access and set this property.
IsActivityStreamsMove() bool
// IsActivityStreamsNote returns true if this property has a type of
// "Note". When true, use the GetActivityStreamsNote and
// SetActivityStreamsNote methods to access and set this property.
IsActivityStreamsNote() bool
// IsActivityStreamsObject returns true if this property has a type of
// "Object". When true, use the GetActivityStreamsObject and
// SetActivityStreamsObject methods to access and set this property.
IsActivityStreamsObject() bool
// IsActivityStreamsOffer returns true if this property has a type of
// "Offer". When true, use the GetActivityStreamsOffer and
// SetActivityStreamsOffer methods to access and set this property.
IsActivityStreamsOffer() bool
// IsActivityStreamsOrderedCollection returns true if this property has a
// type of "OrderedCollection". When true, use the
// GetActivityStreamsOrderedCollection and
// SetActivityStreamsOrderedCollection methods to access and set this
// property.
IsActivityStreamsOrderedCollection() bool
// IsActivityStreamsOrderedCollectionPage returns true if this property
// has a type of "OrderedCollectionPage". When true, use the
// GetActivityStreamsOrderedCollectionPage and
// SetActivityStreamsOrderedCollectionPage methods to access and set
// this property.
IsActivityStreamsOrderedCollectionPage() bool
// IsActivityStreamsOrganization returns true if this property has a type
// of "Organization". When true, use the
// GetActivityStreamsOrganization and SetActivityStreamsOrganization
// methods to access and set this property.
IsActivityStreamsOrganization() bool
// IsActivityStreamsPage returns true if this property has a type of
// "Page". When true, use the GetActivityStreamsPage and
// SetActivityStreamsPage methods to access and set this property.
IsActivityStreamsPage() bool
// IsActivityStreamsPerson returns true if this property has a type of
// "Person". When true, use the GetActivityStreamsPerson and
// SetActivityStreamsPerson methods to access and set this property.
IsActivityStreamsPerson() bool
// IsActivityStreamsPlace returns true if this property has a type of
// "Place". When true, use the GetActivityStreamsPlace and
// SetActivityStreamsPlace methods to access and set this property.
IsActivityStreamsPlace() bool
// IsActivityStreamsProfile returns true if this property has a type of
// "Profile". When true, use the GetActivityStreamsProfile and
// SetActivityStreamsProfile methods to access and set this property.
IsActivityStreamsProfile() bool
// IsActivityStreamsQuestion returns true if this property has a type of
// "Question". When true, use the GetActivityStreamsQuestion and
// SetActivityStreamsQuestion methods to access and set this property.
IsActivityStreamsQuestion() bool
// IsActivityStreamsRead returns true if this property has a type of
// "Read". When true, use the GetActivityStreamsRead and
// SetActivityStreamsRead methods to access and set this property.
IsActivityStreamsRead() bool
// IsActivityStreamsReject returns true if this property has a type of
// "Reject". When true, use the GetActivityStreamsReject and
// SetActivityStreamsReject methods to access and set this property.
IsActivityStreamsReject() bool
// IsActivityStreamsRelationship returns true if this property has a type
// of "Relationship". When true, use the
// GetActivityStreamsRelationship and SetActivityStreamsRelationship
// methods to access and set this property.
IsActivityStreamsRelationship() bool
// IsActivityStreamsRemove returns true if this property has a type of
// "Remove". When true, use the GetActivityStreamsRemove and
// SetActivityStreamsRemove methods to access and set this property.
IsActivityStreamsRemove() bool
// IsActivityStreamsService returns true if this property has a type of
// "Service". When true, use the GetActivityStreamsService and
// SetActivityStreamsService methods to access and set this property.
IsActivityStreamsService() bool
// IsActivityStreamsTentativeAccept returns true if this property has a
// type of "TentativeAccept". When true, use the
// GetActivityStreamsTentativeAccept and
// SetActivityStreamsTentativeAccept methods to access and set this
// property.
IsActivityStreamsTentativeAccept() bool
// IsActivityStreamsTentativeReject returns true if this property has a
// type of "TentativeReject". When true, use the
// GetActivityStreamsTentativeReject and
// SetActivityStreamsTentativeReject methods to access and set this
// property.
IsActivityStreamsTentativeReject() bool
// IsActivityStreamsTombstone returns true if this property has a type of
// "Tombstone". When true, use the GetActivityStreamsTombstone and
// SetActivityStreamsTombstone methods to access and set this property.
IsActivityStreamsTombstone() bool
// IsActivityStreamsTravel returns true if this property has a type of
// "Travel". When true, use the GetActivityStreamsTravel and
// SetActivityStreamsTravel methods to access and set this property.
IsActivityStreamsTravel() bool
// IsActivityStreamsUndo returns true if this property has a type of
// "Undo". When true, use the GetActivityStreamsUndo and
// SetActivityStreamsUndo methods to access and set this property.
IsActivityStreamsUndo() bool
// IsActivityStreamsUpdate returns true if this property has a type of
// "Update". When true, use the GetActivityStreamsUpdate and
// SetActivityStreamsUpdate methods to access and set this property.
IsActivityStreamsUpdate() bool
// IsActivityStreamsVideo returns true if this property has a type of
// "Video". When true, use the GetActivityStreamsVideo and
// SetActivityStreamsVideo methods to access and set this property.
IsActivityStreamsVideo() bool
// IsActivityStreamsView returns true if this property has a type of
// "View". When true, use the GetActivityStreamsView and
// SetActivityStreamsView methods to access and set this property.
IsActivityStreamsView() bool
// IsIRI returns true if this property is an IRI. When true, use GetIRI
// and SetIRI to access and set this property
IsIRI() bool
// IsSchemaPropertyValue returns true if this property has a type of
// "PropertyValue". When true, use the GetSchemaPropertyValue and
// SetSchemaPropertyValue methods to access and set this property.
IsSchemaPropertyValue() bool
// IsTootEmoji returns true if this property has a type of "Emoji". When
// true, use the GetTootEmoji and SetTootEmoji methods to access and
// set this property.
IsTootEmoji() bool
// IsTootHashtag returns true if this property has a type of "Hashtag".
// When true, use the GetTootHashtag and SetTootHashtag methods to
// access and set this property.
IsTootHashtag() bool
// IsTootIdentityProof returns true if this property has a type of
// "IdentityProof". When true, use the GetTootIdentityProof and
// SetTootIdentityProof methods to access and set this property.
IsTootIdentityProof() bool
// JSONLDContext returns the JSONLD URIs required in the context string
// for this property and the specific values that are set. The value
// in the map is the alias used to import the property's value or
// values.
JSONLDContext() map[string]string
// KindIndex computes an arbitrary value for indexing this kind of value.
// This is a leaky API detail only for folks looking to replace the
// go-fed implementation. Applications should not use this method.
KindIndex() int
// LessThan compares two instances of this property with an arbitrary but
// stable comparison. Applications should not use this because it is
// only meant to help alternative implementations to go-fed to be able
// to normalize nonfunctional properties.
LessThan(o ActivityStreamsResultPropertyIterator) bool
// Name returns the name of this property: "ActivityStreamsResult".
Name() string
// Next returns the next iterator, or nil if there is no next iterator.
Next() ActivityStreamsResultPropertyIterator
// Prev returns the previous iterator, or nil if there is no previous
// iterator.
Prev() ActivityStreamsResultPropertyIterator
// SetActivityStreamsAccept sets the value of this property. Calling
// IsActivityStreamsAccept afterwards returns true.
SetActivityStreamsAccept(v ActivityStreamsAccept)
// SetActivityStreamsActivity sets the value of this property. Calling
// IsActivityStreamsActivity afterwards returns true.
SetActivityStreamsActivity(v ActivityStreamsActivity)
// SetActivityStreamsAdd sets the value of this property. Calling
// IsActivityStreamsAdd afterwards returns true.
SetActivityStreamsAdd(v ActivityStreamsAdd)
// SetActivityStreamsAnnounce sets the value of this property. Calling
// IsActivityStreamsAnnounce afterwards returns true.
SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
// SetActivityStreamsApplication sets the value of this property. Calling
// IsActivityStreamsApplication afterwards returns true.
SetActivityStreamsApplication(v ActivityStreamsApplication)
// SetActivityStreamsArrive sets the value of this property. Calling
// IsActivityStreamsArrive afterwards returns true.
SetActivityStreamsArrive(v ActivityStreamsArrive)
// SetActivityStreamsArticle sets the value of this property. Calling
// IsActivityStreamsArticle afterwards returns true.
SetActivityStreamsArticle(v ActivityStreamsArticle)
// SetActivityStreamsAudio sets the value of this property. Calling
// IsActivityStreamsAudio afterwards returns true.
SetActivityStreamsAudio(v ActivityStreamsAudio)
// SetActivityStreamsBlock sets the value of this property. Calling
// IsActivityStreamsBlock afterwards returns true.
SetActivityStreamsBlock(v ActivityStreamsBlock)
// SetActivityStreamsCollection sets the value of this property. Calling
// IsActivityStreamsCollection afterwards returns true.
SetActivityStreamsCollection(v ActivityStreamsCollection)
// SetActivityStreamsCollectionPage sets the value of this property.
// Calling IsActivityStreamsCollectionPage afterwards returns true.
SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
// SetActivityStreamsCreate sets the value of this property. Calling
// IsActivityStreamsCreate afterwards returns true.
SetActivityStreamsCreate(v ActivityStreamsCreate)
// SetActivityStreamsDelete sets the value of this property. Calling
// IsActivityStreamsDelete afterwards returns true.
SetActivityStreamsDelete(v ActivityStreamsDelete)
// SetActivityStreamsDislike sets the value of this property. Calling
// IsActivityStreamsDislike afterwards returns true.
SetActivityStreamsDislike(v ActivityStreamsDislike)
// SetActivityStreamsDocument sets the value of this property. Calling
// IsActivityStreamsDocument afterwards returns true.
SetActivityStreamsDocument(v ActivityStreamsDocument)
// SetActivityStreamsEvent sets the value of this property. Calling
// IsActivityStreamsEvent afterwards returns true.
SetActivityStreamsEvent(v ActivityStreamsEvent)
// SetActivityStreamsFlag sets the value of this property. Calling
// IsActivityStreamsFlag afterwards returns true.
SetActivityStreamsFlag(v ActivityStreamsFlag)
// SetActivityStreamsFollow sets the value of this property. Calling
// IsActivityStreamsFollow afterwards returns true.
SetActivityStreamsFollow(v ActivityStreamsFollow)
// SetActivityStreamsGroup sets the value of this property. Calling
// IsActivityStreamsGroup afterwards returns true.
SetActivityStreamsGroup(v ActivityStreamsGroup)
// SetActivityStreamsIgnore sets the value of this property. Calling
// IsActivityStreamsIgnore afterwards returns true.
SetActivityStreamsIgnore(v ActivityStreamsIgnore)
// SetActivityStreamsImage sets the value of this property. Calling
// IsActivityStreamsImage afterwards returns true.
SetActivityStreamsImage(v ActivityStreamsImage)
// SetActivityStreamsIntransitiveActivity sets the value of this property.
// Calling IsActivityStreamsIntransitiveActivity afterwards returns
// true.
SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
// SetActivityStreamsInvite sets the value of this property. Calling
// IsActivityStreamsInvite afterwards returns true.
SetActivityStreamsInvite(v ActivityStreamsInvite)
// SetActivityStreamsJoin sets the value of this property. Calling
// IsActivityStreamsJoin afterwards returns true.
SetActivityStreamsJoin(v ActivityStreamsJoin)
// SetActivityStreamsLeave sets the value of this property. Calling
// IsActivityStreamsLeave afterwards returns true.
SetActivityStreamsLeave(v ActivityStreamsLeave)
// SetActivityStreamsLike sets the value of this property. Calling
// IsActivityStreamsLike afterwards returns true.
SetActivityStreamsLike(v ActivityStreamsLike)
// SetActivityStreamsLink sets the value of this property. Calling
// IsActivityStreamsLink afterwards returns true.
SetActivityStreamsLink(v ActivityStreamsLink)
// SetActivityStreamsListen sets the value of this property. Calling
// IsActivityStreamsListen afterwards returns true.
SetActivityStreamsListen(v ActivityStreamsListen)
// SetActivityStreamsMention sets the value of this property. Calling
// IsActivityStreamsMention afterwards returns true.
SetActivityStreamsMention(v ActivityStreamsMention)
// SetActivityStreamsMove sets the value of this property. Calling
// IsActivityStreamsMove afterwards returns true.
SetActivityStreamsMove(v ActivityStreamsMove)
// SetActivityStreamsNote sets the value of this property. Calling
// IsActivityStreamsNote afterwards returns true.
SetActivityStreamsNote(v ActivityStreamsNote)
// SetActivityStreamsObject sets the value of this property. Calling
// IsActivityStreamsObject afterwards returns true.
SetActivityStreamsObject(v ActivityStreamsObject)
// SetActivityStreamsOffer sets the value of this property. Calling
// IsActivityStreamsOffer afterwards returns true.
SetActivityStreamsOffer(v ActivityStreamsOffer)
// SetActivityStreamsOrderedCollection sets the value of this property.
// Calling IsActivityStreamsOrderedCollection afterwards returns true.
SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
// SetActivityStreamsOrderedCollectionPage sets the value of this
// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
// returns true.
SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
// SetActivityStreamsOrganization sets the value of this property. Calling
// IsActivityStreamsOrganization afterwards returns true.
SetActivityStreamsOrganization(v ActivityStreamsOrganization)
// SetActivityStreamsPage sets the value of this property. Calling
// IsActivityStreamsPage afterwards returns true.
SetActivityStreamsPage(v ActivityStreamsPage)
// SetActivityStreamsPerson sets the value of this property. Calling
// IsActivityStreamsPerson afterwards returns true.
SetActivityStreamsPerson(v ActivityStreamsPerson)
// SetActivityStreamsPlace sets the value of this property. Calling
// IsActivityStreamsPlace afterwards returns true.
SetActivityStreamsPlace(v ActivityStreamsPlace)
// SetActivityStreamsProfile sets the value of this property. Calling
// IsActivityStreamsProfile afterwards returns true.
SetActivityStreamsProfile(v ActivityStreamsProfile)
// SetActivityStreamsQuestion sets the value of this property. Calling
// IsActivityStreamsQuestion afterwards returns true.
SetActivityStreamsQuestion(v ActivityStreamsQuestion)
// SetActivityStreamsRead sets the value of this property. Calling
// IsActivityStreamsRead afterwards returns true.
SetActivityStreamsRead(v ActivityStreamsRead)
// SetActivityStreamsReject sets the value of this property. Calling
// IsActivityStreamsReject afterwards returns true.
SetActivityStreamsReject(v ActivityStreamsReject)
// SetActivityStreamsRelationship sets the value of this property. Calling
// IsActivityStreamsRelationship afterwards returns true.
SetActivityStreamsRelationship(v ActivityStreamsRelationship)
// SetActivityStreamsRemove sets the value of this property. Calling
// IsActivityStreamsRemove afterwards returns true.
SetActivityStreamsRemove(v ActivityStreamsRemove)
// SetActivityStreamsService sets the value of this property. Calling
// IsActivityStreamsService afterwards returns true.
SetActivityStreamsService(v ActivityStreamsService)
// SetActivityStreamsTentativeAccept sets the value of this property.
// Calling IsActivityStreamsTentativeAccept afterwards returns true.
SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
// SetActivityStreamsTentativeReject sets the value of this property.
// Calling IsActivityStreamsTentativeReject afterwards returns true.
SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
// SetActivityStreamsTombstone sets the value of this property. Calling
// IsActivityStreamsTombstone afterwards returns true.
SetActivityStreamsTombstone(v ActivityStreamsTombstone)
// SetActivityStreamsTravel sets the value of this property. Calling
// IsActivityStreamsTravel afterwards returns true.
SetActivityStreamsTravel(v ActivityStreamsTravel)
// SetActivityStreamsUndo sets the value of this property. Calling
// IsActivityStreamsUndo afterwards returns true.
SetActivityStreamsUndo(v ActivityStreamsUndo)
// SetActivityStreamsUpdate sets the value of this property. Calling
// IsActivityStreamsUpdate afterwards returns true.
SetActivityStreamsUpdate(v ActivityStreamsUpdate)
// SetActivityStreamsVideo sets the value of this property. Calling
// IsActivityStreamsVideo afterwards returns true.
SetActivityStreamsVideo(v ActivityStreamsVideo)
// SetActivityStreamsView sets the value of this property. Calling
// IsActivityStreamsView afterwards returns true.
SetActivityStreamsView(v ActivityStreamsView)
// SetIRI sets the value of this property. Calling IsIRI afterwards
// returns true.
SetIRI(v *url.URL)
// SetSchemaPropertyValue sets the value of this property. Calling
// IsSchemaPropertyValue afterwards returns true.
SetSchemaPropertyValue(v SchemaPropertyValue)
// SetTootEmoji sets the value of this property. Calling IsTootEmoji
// afterwards returns true.
SetTootEmoji(v TootEmoji)
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
// afterwards returns true.
SetTootHashtag(v TootHashtag)
// SetTootIdentityProof sets the value of this property. Calling
// IsTootIdentityProof afterwards returns true.
SetTootIdentityProof(v TootIdentityProof)
// SetType attempts to set the property for the arbitrary type. Returns an
// error if it is not a valid type to set on this property.
SetType(t Type) error
}
// Describes the result of the activity. For instance, if a particular action
// results in the creation of a new resource, the result property can be used
// to describe that new resource.
//
// Example 103 (https://www.w3.org/TR/activitystreams-vocabulary/#ex108-jsonld):
// {
// "actor": "http://sally.example.org",
// "object": "http://example.org/flights/1",
// "result": {
// "name": "On Time",
// "type": "http://www.types.example/flightstatus"
// },
// "summary": "Sally checked that her flight was on time",
// "type": [
// "Activity",
// "http://www.verbs.example/Check"
// ]
// }
type ActivityStreamsResultProperty interface {
// AppendActivityStreamsAccept appends a Accept value to the back of a
// list of the property "result". Invalidates iterators that are
// traversing using Prev.
AppendActivityStreamsAccept(v ActivityStreamsAccept)
// AppendActivityStreamsActivity appends a Activity value to the back of a
// list of the property "result". Invalidates iterators that are
// traversing using Prev.
AppendActivityStreamsActivity(v ActivityStreamsActivity)
// AppendActivityStreamsAdd appends a Add value to the back of a list of
// the property "result". Invalidates iterators that are traversing
// using Prev.
AppendActivityStreamsAdd(v ActivityStreamsAdd)
// AppendActivityStreamsAnnounce appends a Announce value to the back of a
// list of the property "result". Invalidates iterators that are
// traversing using Prev.
AppendActivityStreamsAnnounce(v ActivityStreamsAnnounce)
// AppendActivityStreamsApplication appends a Application value to the
// back of a list of the property "result". Invalidates iterators that
// are traversing using Prev.
AppendActivityStreamsApplication(v ActivityStreamsApplication)
// AppendActivityStreamsArrive appends a Arrive value to the back of a
// list of the property "result". Invalidates iterators that are
// traversing using Prev.
AppendActivityStreamsArrive(v ActivityStreamsArrive)
// AppendActivityStreamsArticle appends a Article value to the back of a
// list of the property "result". Invalidates iterators that are
// traversing using Prev.
AppendActivityStreamsArticle(v ActivityStreamsArticle)
// AppendActivityStreamsAudio appends a Audio value to the back of a list
// of the property "result". Invalidates iterators that are traversing
// using Prev.
AppendActivityStreamsAudio(v ActivityStreamsAudio)
// AppendActivityStreamsBlock appends a Block value to the back of a list
// of the property "result". Invalidates iterators that are traversing
// using Prev.
AppendActivityStreamsBlock(v ActivityStreamsBlock)
// AppendActivityStreamsCollection appends a Collection value to the back
// of a list of the property "result". Invalidates iterators that are
// traversing using Prev.
AppendActivityStreamsCollection(v ActivityStreamsCollection)
// AppendActivityStreamsCollectionPage appends a CollectionPage value to
// the back of a list of the property "result". Invalidates iterators
// that are traversing using Prev.
AppendActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
// AppendActivityStreamsCreate appends a Create value to the back of a
// list of the property "result". Invalidates iterators that are
// traversing using Prev.
AppendActivityStreamsCreate(v ActivityStreamsCreate)
// AppendActivityStreamsDelete appends a Delete value to the back of a
// list of the property "result". Invalidates iterators that are
// traversing using Prev.
AppendActivityStreamsDelete(v ActivityStreamsDelete)
// AppendActivityStreamsDislike appends a Dislike value to the back of a
// list of the property "result". Invalidates iterators that are
// traversing using Prev.
AppendActivityStreamsDislike(v ActivityStreamsDislike)
// AppendActivityStreamsDocument appends a Document value to the back of a
// list of the property "result". Invalidates iterators that are
// traversing using Prev.
AppendActivityStreamsDocument(v ActivityStreamsDocument)
// AppendActivityStreamsEvent appends a Event value to the back of a list
// of the property "result". Invalidates iterators that are traversing
// using Prev.
AppendActivityStreamsEvent(v ActivityStreamsEvent)
// AppendActivityStreamsFlag appends a Flag value to the back of a list of
// the property "result". Invalidates iterators that are traversing
// using Prev.
AppendActivityStreamsFlag(v ActivityStreamsFlag)
// AppendActivityStreamsFollow appends a Follow value to the back of a
// list of the property "result". Invalidates iterators that are
// traversing using Prev.
AppendActivityStreamsFollow(v ActivityStreamsFollow)
// AppendActivityStreamsGroup appends a Group value to the back of a list
// of the property "result". Invalidates iterators that are traversing
// using Prev.
AppendActivityStreamsGroup(v ActivityStreamsGroup)
// AppendActivityStreamsIgnore appends a Ignore value to the back of a
// list of the property "result". Invalidates iterators that are
// traversing using Prev.
AppendActivityStreamsIgnore(v ActivityStreamsIgnore)
// AppendActivityStreamsImage appends a Image value to the back of a list
// of the property "result". Invalidates iterators that are traversing
// using Prev.
AppendActivityStreamsImage(v ActivityStreamsImage)
// AppendActivityStreamsIntransitiveActivity appends a
// IntransitiveActivity value to the back of a list of the property
// "result". Invalidates iterators that are traversing using Prev.
AppendActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
// AppendActivityStreamsInvite appends a Invite value to the back of a
// list of the property "result". Invalidates iterators that are
// traversing using Prev.
AppendActivityStreamsInvite(v ActivityStreamsInvite)
// AppendActivityStreamsJoin appends a Join value to the back of a list of
// the property "result". Invalidates iterators that are traversing
// using Prev.
AppendActivityStreamsJoin(v ActivityStreamsJoin)
// AppendActivityStreamsLeave appends a Leave value to the back of a list
// of the property "result". Invalidates iterators that are traversing
// using Prev.
AppendActivityStreamsLeave(v ActivityStreamsLeave)
// AppendActivityStreamsLike appends a Like value to the back of a list of
// the property "result". Invalidates iterators that are traversing
// using Prev.
AppendActivityStreamsLike(v ActivityStreamsLike)
// AppendActivityStreamsLink appends a Link value to the back of a list of
// the property "result". Invalidates iterators that are traversing
// using Prev.
AppendActivityStreamsLink(v ActivityStreamsLink)
// AppendActivityStreamsListen appends a Listen value to the back of a
// list of the property "result". Invalidates iterators that are
// traversing using Prev.
AppendActivityStreamsListen(v ActivityStreamsListen)
// AppendActivityStreamsMention appends a Mention value to the back of a
// list of the property "result". Invalidates iterators that are
// traversing using Prev.
AppendActivityStreamsMention(v ActivityStreamsMention)
// AppendActivityStreamsMove appends a Move value to the back of a list of
// the property "result". Invalidates iterators that are traversing
// using Prev.
AppendActivityStreamsMove(v ActivityStreamsMove)
// AppendActivityStreamsNote appends a Note value to the back of a list of
// the property "result". Invalidates iterators that are traversing
// using Prev.
AppendActivityStreamsNote(v ActivityStreamsNote)
// AppendActivityStreamsObject appends a Object value to the back of a
// list of the property "result". Invalidates iterators that are
// traversing using Prev.
AppendActivityStreamsObject(v ActivityStreamsObject)
// AppendActivityStreamsOffer appends a Offer value to the back of a list
// of the property "result". Invalidates iterators that are traversing
// using Prev.
AppendActivityStreamsOffer(v ActivityStreamsOffer)
// AppendActivityStreamsOrderedCollection appends a OrderedCollection
// value to the back of a list of the property "result". Invalidates
// iterators that are traversing using Prev.
AppendActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
// AppendActivityStreamsOrderedCollectionPage appends a
// OrderedCollectionPage value to the back of a list of the property
// "result". Invalidates iterators that are traversing using Prev.
AppendActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
// AppendActivityStreamsOrganization appends a Organization value to the
// back of a list of the property "result". Invalidates iterators that
// are traversing using Prev.
AppendActivityStreamsOrganization(v ActivityStreamsOrganization)
// AppendActivityStreamsPage appends a Page value to the back of a list of
// the property "result". Invalidates iterators that are traversing
// using Prev.
AppendActivityStreamsPage(v ActivityStreamsPage)
// AppendActivityStreamsPerson appends a Person value to the back of a
// list of the property "result". Invalidates iterators that are
// traversing using Prev.
AppendActivityStreamsPerson(v ActivityStreamsPerson)
// AppendActivityStreamsPlace appends a Place value to the back of a list
// of the property "result". Invalidates iterators that are traversing
// using Prev.
AppendActivityStreamsPlace(v ActivityStreamsPlace)
// AppendActivityStreamsProfile appends a Profile value to the back of a
// list of the property "result". Invalidates iterators that are
// traversing using Prev.
AppendActivityStreamsProfile(v ActivityStreamsProfile)
// AppendActivityStreamsQuestion appends a Question value to the back of a
// list of the property "result". Invalidates iterators that are
// traversing using Prev.
AppendActivityStreamsQuestion(v ActivityStreamsQuestion)
// AppendActivityStreamsRead appends a Read value to the back of a list of
// the property "result". Invalidates iterators that are traversing
// using Prev.
AppendActivityStreamsRead(v ActivityStreamsRead)
// AppendActivityStreamsReject appends a Reject value to the back of a
// list of the property "result". Invalidates iterators that are
// traversing using Prev.
AppendActivityStreamsReject(v ActivityStreamsReject)
// AppendActivityStreamsRelationship appends a Relationship value to the
// back of a list of the property "result". Invalidates iterators that
// are traversing using Prev.
AppendActivityStreamsRelationship(v ActivityStreamsRelationship)
// AppendActivityStreamsRemove appends a Remove value to the back of a
// list of the property "result". Invalidates iterators that are
// traversing using Prev.
AppendActivityStreamsRemove(v ActivityStreamsRemove)
// AppendActivityStreamsService appends a Service value to the back of a
// list of the property "result". Invalidates iterators that are
// traversing using Prev.
AppendActivityStreamsService(v ActivityStreamsService)
// AppendActivityStreamsTentativeAccept appends a TentativeAccept value to
// the back of a list of the property "result". Invalidates iterators
// that are traversing using Prev.
AppendActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
// AppendActivityStreamsTentativeReject appends a TentativeReject value to
// the back of a list of the property "result". Invalidates iterators
// that are traversing using Prev.
AppendActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
// AppendActivityStreamsTombstone appends a Tombstone value to the back of
// a list of the property "result". Invalidates iterators that are
// traversing using Prev.
AppendActivityStreamsTombstone(v ActivityStreamsTombstone)
// AppendActivityStreamsTravel appends a Travel value to the back of a
// list of the property "result". Invalidates iterators that are
// traversing using Prev.
AppendActivityStreamsTravel(v ActivityStreamsTravel)
// AppendActivityStreamsUndo appends a Undo value to the back of a list of
// the property "result". Invalidates iterators that are traversing
// using Prev.
AppendActivityStreamsUndo(v ActivityStreamsUndo)
// AppendActivityStreamsUpdate appends a Update value to the back of a
// list of the property "result". Invalidates iterators that are
// traversing using Prev.
AppendActivityStreamsUpdate(v ActivityStreamsUpdate)
// AppendActivityStreamsVideo appends a Video value to the back of a list
// of the property "result". Invalidates iterators that are traversing
// using Prev.
AppendActivityStreamsVideo(v ActivityStreamsVideo)
// AppendActivityStreamsView appends a View value to the back of a list of
// the property "result". Invalidates iterators that are traversing
// using Prev.
AppendActivityStreamsView(v ActivityStreamsView)
// AppendIRI appends an IRI value to the back of a list of the property
// "result"
AppendIRI(v *url.URL)
// AppendSchemaPropertyValue appends a PropertyValue value to the back of
// a list of the property "result". Invalidates iterators that are
// traversing using Prev.
AppendSchemaPropertyValue(v SchemaPropertyValue)
// AppendTootEmoji appends a Emoji value to the back of a list of the
// property "result". Invalidates iterators that are traversing using
// Prev.
AppendTootEmoji(v TootEmoji)
// AppendTootHashtag appends a Hashtag value to the back of a list of the
// property "result". Invalidates iterators that are traversing using
// Prev.
AppendTootHashtag(v TootHashtag)
// AppendTootIdentityProof appends a IdentityProof value to the back of a
// list of the property "result". Invalidates iterators that are
// traversing using Prev.
AppendTootIdentityProof(v TootIdentityProof)
// PrependType prepends an arbitrary type value to the front of a list of
// the property "result". Invalidates iterators that are traversing
// using Prev. Returns an error if the type is not a valid one to set
// for this property.
AppendType(t Type) error
// At returns the property value for the specified index. Panics if the
// index is out of bounds.
At(index int) ActivityStreamsResultPropertyIterator
// Begin returns the first iterator, or nil if empty. Can be used with the
// iterator's Next method and this property's End method to iterate
// from front to back through all values.
Begin() ActivityStreamsResultPropertyIterator
// Empty returns returns true if there are no elements.
Empty() bool
// End returns beyond-the-last iterator, which is nil. Can be used with
// the iterator's Next method and this property's Begin method to
// iterate from front to back through all values.
End() ActivityStreamsResultPropertyIterator
// InsertActivityStreamsAccept inserts a Accept value at the specified
// index for a property "result". Existing elements at that index and
// higher are shifted back once. Invalidates all iterators.
InsertActivityStreamsAccept(idx int, v ActivityStreamsAccept)
// InsertActivityStreamsActivity inserts a Activity value at the specified
// index for a property "result". Existing elements at that index and
// higher are shifted back once. Invalidates all iterators.
InsertActivityStreamsActivity(idx int, v ActivityStreamsActivity)
// InsertActivityStreamsAdd inserts a Add value at the specified index for
// a property "result". Existing elements at that index and higher are
// shifted back once. Invalidates all iterators.
InsertActivityStreamsAdd(idx int, v ActivityStreamsAdd)
// InsertActivityStreamsAnnounce inserts a Announce value at the specified
// index for a property "result". Existing elements at that index and
// higher are shifted back once. Invalidates all iterators.
InsertActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
// InsertActivityStreamsApplication inserts a Application value at the
// specified index for a property "result". Existing elements at that
// index and higher are shifted back once. Invalidates all iterators.
InsertActivityStreamsApplication(idx int, v ActivityStreamsApplication)
// InsertActivityStreamsArrive inserts a Arrive value at the specified
// index for a property "result". Existing elements at that index and