Monorepo for Tangled
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT.
2
3package tangled
4
5// schema: sh.tangled.repo.issue
6
7const (
8 RepoIssueNSID = "sh.tangled.repo.issue"
9)
10
11func init() {
12 // util.RegisterType("sh.tangled.repo.issue", &RepoIssue{})
13} //
14// RECORDTYPE: RepoIssue
15type RepoIssue struct {
16 LexiconTypeID string `json:"$type,const=sh.tangled.repo.issue" cborgen:"$type,const=sh.tangled.repo.issue"`
17 Body *string `json:"body,omitempty" cborgen:"body,omitempty"`
18 CreatedAt string `json:"createdAt" cborgen:"createdAt"`
19 Mentions []string `json:"mentions,omitempty" cborgen:"mentions,omitempty"`
20 References []string `json:"references,omitempty" cborgen:"references,omitempty"`
21 Repo string `json:"repo" cborgen:"repo"`
22 RepoDid *string `json:"repoDid,omitempty" cborgen:"repoDid,omitempty"`
23 Title string `json:"title" cborgen:"title"`
24}