1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT.
2
3package tangled
4
5// schema: sh.tangled.repo.issue.state
6
7import (
8 "github.com/bluesky-social/indigo/lex/util"
9)
10
11const (
12 RepoIssueStateNSID = "sh.tangled.repo.issue.state"
13)
14
15func init() {
16 util.RegisterType("sh.tangled.repo.issue.state", &RepoIssueState{})
17} //
18// RECORDTYPE: RepoIssueState
19type 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}