27 lines
973 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.comment
6
7
import (
8
"github.com/bluesky-social/indigo/lex/util"
9
)
10
11
const (
12
RepoIssueCommentNSID = "sh.tangled.repo.issue.comment"
13
)
14
15
func init() {
16
util.RegisterType("sh.tangled.repo.issue.comment", &RepoIssueComment{})
17
} //
18
// RECORDTYPE: RepoIssueComment
19
type 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,omitempty" cborgen:"body,omitempty"`
22
CommentId *int64 `json:"commentId,omitempty" cborgen:"commentId,omitempty"`
23
CreatedAt *string `json:"createdAt,omitempty" cborgen:"createdAt,omitempty"`
24
Issue string `json:"issue" cborgen:"issue"`
25
Owner *string `json:"owner,omitempty" cborgen:"owner,omitempty"`
26
Repo *string `json:"repo,omitempty" cborgen:"repo,omitempty"`
27
}
28