24 lines
667 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.state
6
7
import (
8
"github.com/bluesky-social/indigo/lex/util"
9
)
10
11
const (
12
RepoIssueStateNSID = "sh.tangled.repo.issue.state"
13
)
14
15
func init() {
16
util.RegisterType("sh.tangled.repo.issue.state", &RepoIssueState{})
17
} //
18
// RECORDTYPE: RepoIssueState
19
type RepoIssueState struct {
20
LexiconTypeID string `json:"$type,const=sh.tangled.repo.issue.state" cborgen:"$type,const=sh.tangled.repo.issue.state"`
21
Issue string `json:"issue" cborgen:"issue"`
22
// state: state of the issue
23
State *string `json:"state,omitempty" cborgen:"state,omitempty"`
24
}
25