Monorepo for Tangled
0

Configure Feed

Select the types of activity you want to include in your feed.

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