forked from
tangled.org/core
fork
Configure Feed
Select the types of activity you want to include in your feed.
Monorepo for Tangled
fork
Configure Feed
Select the types of activity you want to include in your feed.
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT.
2
3package tangled
4
5// schema: sh.tangled.repo.pull.comment
6
7import (
8 "github.com/bluesky-social/indigo/lex/util"
9)
10
11const (
12 RepoPullCommentNSID = "sh.tangled.repo.pull.comment"
13)
14
15func init() {
16 util.RegisterType("sh.tangled.repo.pull.comment", &RepoPullComment{})
17} //
18// RECORDTYPE: RepoPullComment
19type RepoPullComment struct {
20 LexiconTypeID string `json:"$type,const=sh.tangled.repo.pull.comment" cborgen:"$type,const=sh.tangled.repo.pull.comment"`
21 Body string `json:"body" cborgen:"body"`
22 CommentId *int64 `json:"commentId,omitempty" cborgen:"commentId,omitempty"`
23 CreatedAt string `json:"createdAt" cborgen:"createdAt"`
24 Owner *string `json:"owner,omitempty" cborgen:"owner,omitempty"`
25 Pull string `json:"pull" cborgen:"pull"`
26 Repo *string `json:"repo,omitempty" cborgen:"repo,omitempty"`
27}