forked from tangled.org/core
Monorepo for Tangled — https://tangled.org
at master 954 B view raw
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. 2 3package tangled 4 5// schema: sh.tangled.repo.issue.comment 6 7import ( 8 "github.com/bluesky-social/indigo/lex/util" 9) 10 11const ( 12 RepoIssueCommentNSID = "sh.tangled.repo.issue.comment" 13) 14 15func init() { 16 util.RegisterType("sh.tangled.repo.issue.comment", &RepoIssueComment{}) 17} // 18// RECORDTYPE: RepoIssueComment 19type RepoIssueComment struct { 20 LexiconTypeID string `json:"$type,const=sh.tangled.repo.issue.comment" cborgen:"$type,const=sh.tangled.repo.issue.comment"` 21 Body string `json:"body" cborgen:"body"` 22 CreatedAt string `json:"createdAt" cborgen:"createdAt"` 23 Issue string `json:"issue" cborgen:"issue"` 24 Mentions []string `json:"mentions,omitempty" cborgen:"mentions,omitempty"` 25 References []string `json:"references,omitempty" cborgen:"references,omitempty"` 26 ReplyTo *string `json:"replyTo,omitempty" cborgen:"replyTo,omitempty"` 27}