Something went wrong. Try again.
Monorepo for Tangled
Something went wrong. Try again.
Go
at sl/comment
12345678910111213141516171819202122232425262728// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT.
package tangled
// schema: sh.tangled.repo.issue.comment
import ( "github.com/bluesky-social/indigo/lex/util")
const ( RepoIssueCommentNSID = "sh.tangled.repo.issue.comment")
func init() { util.RegisterType("sh.tangled.repo.issue.comment", &RepoIssueComment{})} //// RECORDTYPE: RepoIssueCommenttype RepoIssueComment struct { LexiconTypeID string `json:"$type,const=sh.tangled.repo.issue.comment" cborgen:"$type,const=sh.tangled.repo.issue.comment"` Body string `json:"body" cborgen:"body"` CreatedAt string `json:"createdAt" cborgen:"createdAt"` Issue string `json:"issue" cborgen:"issue"` Mentions []string `json:"mentions,omitempty" cborgen:"mentions,omitempty"` References []string `json:"references,omitempty" cborgen:"references,omitempty"` ReplyTo *string `json:"replyTo,omitempty" cborgen:"replyTo,omitempty"`}