forked from
tangled.org/core
Monorepo for Tangled
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT.
2
3package tangled
4
5// schema: sh.tangled.feed.reaction
6
7const (
8 FeedReactionNSID = "sh.tangled.feed.reaction"
9)
10
11func init() {
12 // util.RegisterType("sh.tangled.feed.reaction", &FeedReaction{})
13} //
14// RECORDTYPE: FeedReaction
15type FeedReaction struct {
16 LexiconTypeID string `json:"$type,const=sh.tangled.feed.reaction" cborgen:"$type,const=sh.tangled.feed.reaction"`
17 CreatedAt string `json:"createdAt" cborgen:"createdAt"`
18 Reaction string `json:"reaction" cborgen:"reaction"`
19 Subject string `json:"subject" cborgen:"subject"`
20 SubjectDid *string `json:"subjectDid,omitempty" cborgen:"subjectDid,omitempty"`
21}