package lex import ( "github.com/bluesky-social/indigo/lex/util" ) func init() { } type ButtonRecord struct { LexiconTypeID string `json:"$type,const=org.xcvr.actor.profile" cborgen:"$type,const=org.xcvr.actor.profile"` Href *string `json:"href,omitempty" cborgen:"href,omitempty"` Title *string `json:"title,omitempty" cborgen:"title,omitempty"` Alt *string `json:"alt,omitempty" cborgen:"alt,omitempty"` Blob util.BlobSchema `json:"blob" cborgen:"blob"` PostedAt string `json:"postedAt,omitempty" cborgen:"postedAt,omitEmpty" ` } type LikeSubject struct { URI string `json:"uri" cborgen:"uri"` CID string `json:"cid" cborgen:"cid"` } type LikeRecord struct { LexiconTypeID string `json:"$type,const=org.xcvr.feed.channel" cborgen:"$type,const=org.xcvr.feed.channel"` Subject LikeSubject `json:"subject" cborgen:"subject"` CreatedAt string `json:"postedAt,omitempty" cborgen:"postedAt,omitEmpty" ` }