-
Notifications
You must be signed in to change notification settings - Fork 125
/
actordefs.go
382 lines (350 loc) · 20.1 KB
/
actordefs.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
// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT.
package bsky
// schema: app.bsky.actor.defs
import (
"encoding/json"
"fmt"
comatprototypes "github.com/bluesky-social/indigo/api/atproto"
"github.com/bluesky-social/indigo/lex/util"
)
// ActorDefs_AdultContentPref is a "adultContentPref" in the app.bsky.actor.defs schema.
//
// RECORDTYPE: ActorDefs_AdultContentPref
type ActorDefs_AdultContentPref struct {
LexiconTypeID string `json:"$type,const=app.bsky.actor.defs#adultContentPref" cborgen:"$type,const=app.bsky.actor.defs#adultContentPref"`
Enabled bool `json:"enabled" cborgen:"enabled"`
}
// ActorDefs_BskyAppProgressGuide is a "bskyAppProgressGuide" in the app.bsky.actor.defs schema.
//
// If set, an active progress guide. Once completed, can be set to undefined. Should have unspecced fields tracking progress.
type ActorDefs_BskyAppProgressGuide struct {
Guide string `json:"guide" cborgen:"guide"`
}
// ActorDefs_BskyAppStatePref is a "bskyAppStatePref" in the app.bsky.actor.defs schema.
//
// A grab bag of state that's specific to the bsky.app program. Third-party apps shouldn't use this.
//
// RECORDTYPE: ActorDefs_BskyAppStatePref
type ActorDefs_BskyAppStatePref struct {
LexiconTypeID string `json:"$type,const=app.bsky.actor.defs#bskyAppStatePref" cborgen:"$type,const=app.bsky.actor.defs#bskyAppStatePref"`
ActiveProgressGuide *ActorDefs_BskyAppProgressGuide `json:"activeProgressGuide,omitempty" cborgen:"activeProgressGuide,omitempty"`
// nuxs: Storage for NUXs the user has encountered.
Nuxs []*ActorDefs_Nux `json:"nuxs,omitempty" cborgen:"nuxs,omitempty"`
// queuedNudges: An array of tokens which identify nudges (modals, popups, tours, highlight dots) that should be shown to the user.
QueuedNudges []string `json:"queuedNudges,omitempty" cborgen:"queuedNudges,omitempty"`
}
// ActorDefs_ContentLabelPref is a "contentLabelPref" in the app.bsky.actor.defs schema.
//
// RECORDTYPE: ActorDefs_ContentLabelPref
type ActorDefs_ContentLabelPref struct {
LexiconTypeID string `json:"$type,const=app.bsky.actor.defs#contentLabelPref" cborgen:"$type,const=app.bsky.actor.defs#contentLabelPref"`
Label string `json:"label" cborgen:"label"`
// labelerDid: Which labeler does this preference apply to? If undefined, applies globally.
LabelerDid *string `json:"labelerDid,omitempty" cborgen:"labelerDid,omitempty"`
Visibility string `json:"visibility" cborgen:"visibility"`
}
// ActorDefs_FeedViewPref is a "feedViewPref" in the app.bsky.actor.defs schema.
//
// RECORDTYPE: ActorDefs_FeedViewPref
type ActorDefs_FeedViewPref struct {
LexiconTypeID string `json:"$type,const=app.bsky.actor.defs#feedViewPref" cborgen:"$type,const=app.bsky.actor.defs#feedViewPref"`
// feed: The URI of the feed, or an identifier which describes the feed.
Feed string `json:"feed" cborgen:"feed"`
// hideQuotePosts: Hide quote posts in the feed.
HideQuotePosts *bool `json:"hideQuotePosts,omitempty" cborgen:"hideQuotePosts,omitempty"`
// hideReplies: Hide replies in the feed.
HideReplies *bool `json:"hideReplies,omitempty" cborgen:"hideReplies,omitempty"`
// hideRepliesByLikeCount: Hide replies in the feed if they do not have this number of likes.
HideRepliesByLikeCount *int64 `json:"hideRepliesByLikeCount,omitempty" cborgen:"hideRepliesByLikeCount,omitempty"`
// hideRepliesByUnfollowed: Hide replies in the feed if they are not by followed users.
HideRepliesByUnfollowed *bool `json:"hideRepliesByUnfollowed,omitempty" cborgen:"hideRepliesByUnfollowed,omitempty"`
// hideReposts: Hide reposts in the feed.
HideReposts *bool `json:"hideReposts,omitempty" cborgen:"hideReposts,omitempty"`
}
// ActorDefs_HiddenPostsPref is a "hiddenPostsPref" in the app.bsky.actor.defs schema.
//
// RECORDTYPE: ActorDefs_HiddenPostsPref
type ActorDefs_HiddenPostsPref struct {
LexiconTypeID string `json:"$type,const=app.bsky.actor.defs#hiddenPostsPref" cborgen:"$type,const=app.bsky.actor.defs#hiddenPostsPref"`
// items: A list of URIs of posts the account owner has hidden.
Items []string `json:"items" cborgen:"items"`
}
// ActorDefs_InterestsPref is a "interestsPref" in the app.bsky.actor.defs schema.
//
// RECORDTYPE: ActorDefs_InterestsPref
type ActorDefs_InterestsPref struct {
LexiconTypeID string `json:"$type,const=app.bsky.actor.defs#interestsPref" cborgen:"$type,const=app.bsky.actor.defs#interestsPref"`
// tags: A list of tags which describe the account owner's interests gathered during onboarding.
Tags []string `json:"tags" cborgen:"tags"`
}
// ActorDefs_KnownFollowers is a "knownFollowers" in the app.bsky.actor.defs schema.
//
// The subject's followers whom you also follow
type ActorDefs_KnownFollowers struct {
Count int64 `json:"count" cborgen:"count"`
Followers []*ActorDefs_ProfileViewBasic `json:"followers" cborgen:"followers"`
}
// ActorDefs_LabelerPrefItem is a "labelerPrefItem" in the app.bsky.actor.defs schema.
type ActorDefs_LabelerPrefItem struct {
Did string `json:"did" cborgen:"did"`
}
// ActorDefs_LabelersPref is a "labelersPref" in the app.bsky.actor.defs schema.
//
// RECORDTYPE: ActorDefs_LabelersPref
type ActorDefs_LabelersPref struct {
LexiconTypeID string `json:"$type,const=app.bsky.actor.defs#labelersPref" cborgen:"$type,const=app.bsky.actor.defs#labelersPref"`
Labelers []*ActorDefs_LabelerPrefItem `json:"labelers" cborgen:"labelers"`
}
// ActorDefs_MutedWord is a "mutedWord" in the app.bsky.actor.defs schema.
//
// A word that the account owner has muted.
type ActorDefs_MutedWord struct {
// actorTarget: Groups of users to apply the muted word to. If undefined, applies to all users.
ActorTarget *string `json:"actorTarget,omitempty" cborgen:"actorTarget,omitempty"`
// expiresAt: The date and time at which the muted word will expire and no longer be applied.
ExpiresAt *string `json:"expiresAt,omitempty" cborgen:"expiresAt,omitempty"`
Id *string `json:"id,omitempty" cborgen:"id,omitempty"`
// targets: The intended targets of the muted word.
Targets []*string `json:"targets" cborgen:"targets"`
// value: The muted word itself.
Value string `json:"value" cborgen:"value"`
}
// ActorDefs_MutedWordsPref is a "mutedWordsPref" in the app.bsky.actor.defs schema.
//
// RECORDTYPE: ActorDefs_MutedWordsPref
type ActorDefs_MutedWordsPref struct {
LexiconTypeID string `json:"$type,const=app.bsky.actor.defs#mutedWordsPref" cborgen:"$type,const=app.bsky.actor.defs#mutedWordsPref"`
// items: A list of words the account owner has muted.
Items []*ActorDefs_MutedWord `json:"items" cborgen:"items"`
}
// ActorDefs_Nux is a "nux" in the app.bsky.actor.defs schema.
//
// A new user experiences (NUX) storage object
type ActorDefs_Nux struct {
Completed bool `json:"completed" cborgen:"completed"`
// data: Arbitrary data for the NUX. The structure is defined by the NUX itself. Limited to 300 characters.
Data *string `json:"data,omitempty" cborgen:"data,omitempty"`
// expiresAt: The date and time at which the NUX will expire and should be considered completed.
ExpiresAt *string `json:"expiresAt,omitempty" cborgen:"expiresAt,omitempty"`
Id string `json:"id" cborgen:"id"`
}
// ActorDefs_PersonalDetailsPref is a "personalDetailsPref" in the app.bsky.actor.defs schema.
//
// RECORDTYPE: ActorDefs_PersonalDetailsPref
type ActorDefs_PersonalDetailsPref struct {
LexiconTypeID string `json:"$type,const=app.bsky.actor.defs#personalDetailsPref" cborgen:"$type,const=app.bsky.actor.defs#personalDetailsPref"`
// birthDate: The birth date of account owner.
BirthDate *string `json:"birthDate,omitempty" cborgen:"birthDate,omitempty"`
}
type ActorDefs_Preferences_Elem struct {
ActorDefs_AdultContentPref *ActorDefs_AdultContentPref
ActorDefs_ContentLabelPref *ActorDefs_ContentLabelPref
ActorDefs_SavedFeedsPref *ActorDefs_SavedFeedsPref
ActorDefs_SavedFeedsPrefV2 *ActorDefs_SavedFeedsPrefV2
ActorDefs_PersonalDetailsPref *ActorDefs_PersonalDetailsPref
ActorDefs_FeedViewPref *ActorDefs_FeedViewPref
ActorDefs_ThreadViewPref *ActorDefs_ThreadViewPref
ActorDefs_InterestsPref *ActorDefs_InterestsPref
ActorDefs_MutedWordsPref *ActorDefs_MutedWordsPref
ActorDefs_HiddenPostsPref *ActorDefs_HiddenPostsPref
ActorDefs_BskyAppStatePref *ActorDefs_BskyAppStatePref
ActorDefs_LabelersPref *ActorDefs_LabelersPref
}
func (t *ActorDefs_Preferences_Elem) MarshalJSON() ([]byte, error) {
if t.ActorDefs_AdultContentPref != nil {
t.ActorDefs_AdultContentPref.LexiconTypeID = "app.bsky.actor.defs#adultContentPref"
return json.Marshal(t.ActorDefs_AdultContentPref)
}
if t.ActorDefs_ContentLabelPref != nil {
t.ActorDefs_ContentLabelPref.LexiconTypeID = "app.bsky.actor.defs#contentLabelPref"
return json.Marshal(t.ActorDefs_ContentLabelPref)
}
if t.ActorDefs_SavedFeedsPref != nil {
t.ActorDefs_SavedFeedsPref.LexiconTypeID = "app.bsky.actor.defs#savedFeedsPref"
return json.Marshal(t.ActorDefs_SavedFeedsPref)
}
if t.ActorDefs_SavedFeedsPrefV2 != nil {
t.ActorDefs_SavedFeedsPrefV2.LexiconTypeID = "app.bsky.actor.defs#savedFeedsPrefV2"
return json.Marshal(t.ActorDefs_SavedFeedsPrefV2)
}
if t.ActorDefs_PersonalDetailsPref != nil {
t.ActorDefs_PersonalDetailsPref.LexiconTypeID = "app.bsky.actor.defs#personalDetailsPref"
return json.Marshal(t.ActorDefs_PersonalDetailsPref)
}
if t.ActorDefs_FeedViewPref != nil {
t.ActorDefs_FeedViewPref.LexiconTypeID = "app.bsky.actor.defs#feedViewPref"
return json.Marshal(t.ActorDefs_FeedViewPref)
}
if t.ActorDefs_ThreadViewPref != nil {
t.ActorDefs_ThreadViewPref.LexiconTypeID = "app.bsky.actor.defs#threadViewPref"
return json.Marshal(t.ActorDefs_ThreadViewPref)
}
if t.ActorDefs_InterestsPref != nil {
t.ActorDefs_InterestsPref.LexiconTypeID = "app.bsky.actor.defs#interestsPref"
return json.Marshal(t.ActorDefs_InterestsPref)
}
if t.ActorDefs_MutedWordsPref != nil {
t.ActorDefs_MutedWordsPref.LexiconTypeID = "app.bsky.actor.defs#mutedWordsPref"
return json.Marshal(t.ActorDefs_MutedWordsPref)
}
if t.ActorDefs_HiddenPostsPref != nil {
t.ActorDefs_HiddenPostsPref.LexiconTypeID = "app.bsky.actor.defs#hiddenPostsPref"
return json.Marshal(t.ActorDefs_HiddenPostsPref)
}
if t.ActorDefs_BskyAppStatePref != nil {
t.ActorDefs_BskyAppStatePref.LexiconTypeID = "app.bsky.actor.defs#bskyAppStatePref"
return json.Marshal(t.ActorDefs_BskyAppStatePref)
}
if t.ActorDefs_LabelersPref != nil {
t.ActorDefs_LabelersPref.LexiconTypeID = "app.bsky.actor.defs#labelersPref"
return json.Marshal(t.ActorDefs_LabelersPref)
}
return nil, fmt.Errorf("cannot marshal empty enum")
}
func (t *ActorDefs_Preferences_Elem) UnmarshalJSON(b []byte) error {
typ, err := util.TypeExtract(b)
if err != nil {
return err
}
switch typ {
case "app.bsky.actor.defs#adultContentPref":
t.ActorDefs_AdultContentPref = new(ActorDefs_AdultContentPref)
return json.Unmarshal(b, t.ActorDefs_AdultContentPref)
case "app.bsky.actor.defs#contentLabelPref":
t.ActorDefs_ContentLabelPref = new(ActorDefs_ContentLabelPref)
return json.Unmarshal(b, t.ActorDefs_ContentLabelPref)
case "app.bsky.actor.defs#savedFeedsPref":
t.ActorDefs_SavedFeedsPref = new(ActorDefs_SavedFeedsPref)
return json.Unmarshal(b, t.ActorDefs_SavedFeedsPref)
case "app.bsky.actor.defs#savedFeedsPrefV2":
t.ActorDefs_SavedFeedsPrefV2 = new(ActorDefs_SavedFeedsPrefV2)
return json.Unmarshal(b, t.ActorDefs_SavedFeedsPrefV2)
case "app.bsky.actor.defs#personalDetailsPref":
t.ActorDefs_PersonalDetailsPref = new(ActorDefs_PersonalDetailsPref)
return json.Unmarshal(b, t.ActorDefs_PersonalDetailsPref)
case "app.bsky.actor.defs#feedViewPref":
t.ActorDefs_FeedViewPref = new(ActorDefs_FeedViewPref)
return json.Unmarshal(b, t.ActorDefs_FeedViewPref)
case "app.bsky.actor.defs#threadViewPref":
t.ActorDefs_ThreadViewPref = new(ActorDefs_ThreadViewPref)
return json.Unmarshal(b, t.ActorDefs_ThreadViewPref)
case "app.bsky.actor.defs#interestsPref":
t.ActorDefs_InterestsPref = new(ActorDefs_InterestsPref)
return json.Unmarshal(b, t.ActorDefs_InterestsPref)
case "app.bsky.actor.defs#mutedWordsPref":
t.ActorDefs_MutedWordsPref = new(ActorDefs_MutedWordsPref)
return json.Unmarshal(b, t.ActorDefs_MutedWordsPref)
case "app.bsky.actor.defs#hiddenPostsPref":
t.ActorDefs_HiddenPostsPref = new(ActorDefs_HiddenPostsPref)
return json.Unmarshal(b, t.ActorDefs_HiddenPostsPref)
case "app.bsky.actor.defs#bskyAppStatePref":
t.ActorDefs_BskyAppStatePref = new(ActorDefs_BskyAppStatePref)
return json.Unmarshal(b, t.ActorDefs_BskyAppStatePref)
case "app.bsky.actor.defs#labelersPref":
t.ActorDefs_LabelersPref = new(ActorDefs_LabelersPref)
return json.Unmarshal(b, t.ActorDefs_LabelersPref)
default:
return nil
}
}
// ActorDefs_ProfileAssociated is a "profileAssociated" in the app.bsky.actor.defs schema.
type ActorDefs_ProfileAssociated struct {
Chat *ActorDefs_ProfileAssociatedChat `json:"chat,omitempty" cborgen:"chat,omitempty"`
Feedgens *int64 `json:"feedgens,omitempty" cborgen:"feedgens,omitempty"`
Labeler *bool `json:"labeler,omitempty" cborgen:"labeler,omitempty"`
Lists *int64 `json:"lists,omitempty" cborgen:"lists,omitempty"`
StarterPacks *int64 `json:"starterPacks,omitempty" cborgen:"starterPacks,omitempty"`
}
// ActorDefs_ProfileAssociatedChat is a "profileAssociatedChat" in the app.bsky.actor.defs schema.
type ActorDefs_ProfileAssociatedChat struct {
AllowIncoming string `json:"allowIncoming" cborgen:"allowIncoming"`
}
// ActorDefs_ProfileView is a "profileView" in the app.bsky.actor.defs schema.
type ActorDefs_ProfileView struct {
Associated *ActorDefs_ProfileAssociated `json:"associated,omitempty" cborgen:"associated,omitempty"`
Avatar *string `json:"avatar,omitempty" cborgen:"avatar,omitempty"`
CreatedAt *string `json:"createdAt,omitempty" cborgen:"createdAt,omitempty"`
Description *string `json:"description,omitempty" cborgen:"description,omitempty"`
Did string `json:"did" cborgen:"did"`
DisplayName *string `json:"displayName,omitempty" cborgen:"displayName,omitempty"`
Handle string `json:"handle" cborgen:"handle"`
IndexedAt *string `json:"indexedAt,omitempty" cborgen:"indexedAt,omitempty"`
Labels []*comatprototypes.LabelDefs_Label `json:"labels,omitempty" cborgen:"labels,omitempty"`
Viewer *ActorDefs_ViewerState `json:"viewer,omitempty" cborgen:"viewer,omitempty"`
}
// ActorDefs_ProfileViewBasic is a "profileViewBasic" in the app.bsky.actor.defs schema.
type ActorDefs_ProfileViewBasic struct {
Associated *ActorDefs_ProfileAssociated `json:"associated,omitempty" cborgen:"associated,omitempty"`
Avatar *string `json:"avatar,omitempty" cborgen:"avatar,omitempty"`
CreatedAt *string `json:"createdAt,omitempty" cborgen:"createdAt,omitempty"`
Did string `json:"did" cborgen:"did"`
DisplayName *string `json:"displayName,omitempty" cborgen:"displayName,omitempty"`
Handle string `json:"handle" cborgen:"handle"`
Labels []*comatprototypes.LabelDefs_Label `json:"labels,omitempty" cborgen:"labels,omitempty"`
Viewer *ActorDefs_ViewerState `json:"viewer,omitempty" cborgen:"viewer,omitempty"`
}
// ActorDefs_ProfileViewDetailed is a "profileViewDetailed" in the app.bsky.actor.defs schema.
type ActorDefs_ProfileViewDetailed struct {
Associated *ActorDefs_ProfileAssociated `json:"associated,omitempty" cborgen:"associated,omitempty"`
Avatar *string `json:"avatar,omitempty" cborgen:"avatar,omitempty"`
Banner *string `json:"banner,omitempty" cborgen:"banner,omitempty"`
CreatedAt *string `json:"createdAt,omitempty" cborgen:"createdAt,omitempty"`
Description *string `json:"description,omitempty" cborgen:"description,omitempty"`
Did string `json:"did" cborgen:"did"`
DisplayName *string `json:"displayName,omitempty" cborgen:"displayName,omitempty"`
FollowersCount *int64 `json:"followersCount,omitempty" cborgen:"followersCount,omitempty"`
FollowsCount *int64 `json:"followsCount,omitempty" cborgen:"followsCount,omitempty"`
Handle string `json:"handle" cborgen:"handle"`
IndexedAt *string `json:"indexedAt,omitempty" cborgen:"indexedAt,omitempty"`
JoinedViaStarterPack *GraphDefs_StarterPackViewBasic `json:"joinedViaStarterPack,omitempty" cborgen:"joinedViaStarterPack,omitempty"`
Labels []*comatprototypes.LabelDefs_Label `json:"labels,omitempty" cborgen:"labels,omitempty"`
PinnedPost *comatprototypes.RepoStrongRef `json:"pinnedPost,omitempty" cborgen:"pinnedPost,omitempty"`
PostsCount *int64 `json:"postsCount,omitempty" cborgen:"postsCount,omitempty"`
Viewer *ActorDefs_ViewerState `json:"viewer,omitempty" cborgen:"viewer,omitempty"`
}
// ActorDefs_SavedFeed is a "savedFeed" in the app.bsky.actor.defs schema.
type ActorDefs_SavedFeed struct {
Id string `json:"id" cborgen:"id"`
Pinned bool `json:"pinned" cborgen:"pinned"`
Type string `json:"type" cborgen:"type"`
Value string `json:"value" cborgen:"value"`
}
// ActorDefs_SavedFeedsPref is a "savedFeedsPref" in the app.bsky.actor.defs schema.
//
// RECORDTYPE: ActorDefs_SavedFeedsPref
type ActorDefs_SavedFeedsPref struct {
LexiconTypeID string `json:"$type,const=app.bsky.actor.defs#savedFeedsPref" cborgen:"$type,const=app.bsky.actor.defs#savedFeedsPref"`
Pinned []string `json:"pinned" cborgen:"pinned"`
Saved []string `json:"saved" cborgen:"saved"`
TimelineIndex *int64 `json:"timelineIndex,omitempty" cborgen:"timelineIndex,omitempty"`
}
// ActorDefs_SavedFeedsPrefV2 is a "savedFeedsPrefV2" in the app.bsky.actor.defs schema.
//
// RECORDTYPE: ActorDefs_SavedFeedsPrefV2
type ActorDefs_SavedFeedsPrefV2 struct {
LexiconTypeID string `json:"$type,const=app.bsky.actor.defs#savedFeedsPrefV2" cborgen:"$type,const=app.bsky.actor.defs#savedFeedsPrefV2"`
Items []*ActorDefs_SavedFeed `json:"items" cborgen:"items"`
}
// ActorDefs_ThreadViewPref is a "threadViewPref" in the app.bsky.actor.defs schema.
//
// RECORDTYPE: ActorDefs_ThreadViewPref
type ActorDefs_ThreadViewPref struct {
LexiconTypeID string `json:"$type,const=app.bsky.actor.defs#threadViewPref" cborgen:"$type,const=app.bsky.actor.defs#threadViewPref"`
// prioritizeFollowedUsers: Show followed users at the top of all replies.
PrioritizeFollowedUsers *bool `json:"prioritizeFollowedUsers,omitempty" cborgen:"prioritizeFollowedUsers,omitempty"`
// sort: Sorting mode for threads.
Sort *string `json:"sort,omitempty" cborgen:"sort,omitempty"`
}
// ActorDefs_ViewerState is a "viewerState" in the app.bsky.actor.defs schema.
//
// Metadata about the requesting account's relationship with the subject account. Only has meaningful content for authed requests.
type ActorDefs_ViewerState struct {
BlockedBy *bool `json:"blockedBy,omitempty" cborgen:"blockedBy,omitempty"`
Blocking *string `json:"blocking,omitempty" cborgen:"blocking,omitempty"`
BlockingByList *GraphDefs_ListViewBasic `json:"blockingByList,omitempty" cborgen:"blockingByList,omitempty"`
FollowedBy *string `json:"followedBy,omitempty" cborgen:"followedBy,omitempty"`
Following *string `json:"following,omitempty" cborgen:"following,omitempty"`
KnownFollowers *ActorDefs_KnownFollowers `json:"knownFollowers,omitempty" cborgen:"knownFollowers,omitempty"`
Muted *bool `json:"muted,omitempty" cborgen:"muted,omitempty"`
MutedByList *GraphDefs_ListViewBasic `json:"mutedByList,omitempty" cborgen:"mutedByList,omitempty"`
}