1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT.
2
3package bsky
4
5// schema: app.bsky.notification.declaration
6
7import (
8 "github.com/bluesky-social/indigo/lex/util"
9)
10
11func init() {
12 util.RegisterType("app.bsky.notification.declaration", &NotificationDeclaration{})
13} //
14// RECORDTYPE: NotificationDeclaration
15type NotificationDeclaration struct {
16 LexiconTypeID string `json:"$type,const=app.bsky.notification.declaration" cborgen:"$type,const=app.bsky.notification.declaration"`
17 // allowSubscriptions: A declaration of the user's preference for allowing activity subscriptions from other users. Absence of a record implies 'followers'.
18 AllowSubscriptions string `json:"allowSubscriptions" cborgen:"allowSubscriptions"`
19}