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