27 lines
841 B
1
// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT.
2
3
package tangled
4
5
// schema: sh.tangled.repo.issue
6
7
import (
8
"github.com/bluesky-social/indigo/lex/util"
9
)
10
11
const (
12
RepoIssueNSID = "sh.tangled.repo.issue"
13
)
14
15
func init() {
16
util.RegisterType("sh.tangled.repo.issue", &RepoIssue{})
17
} //
18
// RECORDTYPE: RepoIssue
19
type RepoIssue struct {
20
LexiconTypeID string `json:"$type,const=sh.tangled.repo.issue" cborgen:"$type,const=sh.tangled.repo.issue"`
21
Body *string `json:"body,omitempty" cborgen:"body,omitempty"`
22
CreatedAt *string `json:"createdAt,omitempty" cborgen:"createdAt,omitempty"`
23
IssueId int64 `json:"issueId" cborgen:"issueId"`
24
Owner string `json:"owner" cborgen:"owner"`
25
Repo string `json:"repo" cborgen:"repo"`
26
Title string `json:"title" cborgen:"title"`
27
}
28