1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT.
2
3package tangled
4
5// schema: sh.tangled.repo.pull.state
6
7import (
8 //"github.com/bluesky-social/indigo/lex/util"
9)
10
11const (
12 RepoPullStateNSID = "sh.tangled.repo.pull.state"
13)
14
15func init() {
16 //util.RegisterType("sh.tangled.repo.pull.state", &RepoPullState{})
17} //
18// RECORDTYPE: RepoPullState
19type RepoPullState struct {
20 LexiconTypeID string `json:"$type,const=sh.tangled.repo.pull.state" cborgen:"$type,const=sh.tangled.repo.pull.state"`
21 Pull string `json:"pull" cborgen:"pull"`
22 // state: state of the pull request
23 State *string `json:"state,omitempty" cborgen:"state,omitempty"`
24}