at sl/spindle-adapters 26 lines 815 B view raw
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. 2 3// Lexicon schema: sh.tangled.repo.pull.comment 4 5package tangled 6 7import ( 8 lexutil "github.com/bluesky-social/indigo/lex/util" 9) 10 11const ( 12 RepoPullCommentNSID = "sh.tangled.repo.pull.comment" 13) 14 15func init() { 16 lexutil.RegisterType("sh.tangled.repo.pull.comment", &RepoPullComment{}) 17} 18 19type RepoPullComment struct { 20 LexiconTypeID string `json:"$type" cborgen:"$type,const=sh.tangled.repo.pull.comment"` 21 Body string `json:"body" cborgen:"body"` 22 CreatedAt string `json:"createdAt" cborgen:"createdAt"` 23 Mentions []string `json:"mentions,omitempty" cborgen:"mentions,omitempty"` 24 Pull string `json:"pull" cborgen:"pull"` 25 References []string `json:"references,omitempty" cborgen:"references,omitempty"` 26}