Monorepo for Tangled
Something went wrong. Try again.
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT.
package tangled
// schema: sh.tangled.repo.pull.listStatusesBy
import ( "context"
"github.com/bluesky-social/indigo/lex/util")
const ( RepoPullListStatusesByNSID = "sh.tangled.repo.pull.listStatusesBy")
// RepoPullListStatusesBy_Output is the output of a sh.tangled.repo.pull.listStatusesBy call.type RepoPullListStatusesBy_Output struct { Cursor *string `json:"cursor,omitempty" cborgen:"cursor,omitempty"` Items []*RepoPullListStatuses_ListItem `json:"items" cborgen:"items"`}
// RepoPullListStatusesBy calls the XRPC method "sh.tangled.repo.pull.listStatusesBy".//// cursor: Pagination cursor// order: Sort direction by createdAt.// subject: Actor DID whose pull-status authorings to list.func RepoPullListStatusesBy(ctx context.Context, c util.LexClient, cursor string, limit int64, order string, subject string) (*RepoPullListStatusesBy_Output, error) { var out RepoPullListStatusesBy_Output
params := map[string]interface{}{} if cursor != "" { params["cursor"] = cursor } if limit != 0 { params["limit"] = limit } if order != "" { params["order"] = order } params["subject"] = subject if err := c.LexDo(ctx, util.Query, "", "sh.tangled.repo.pull.listStatusesBy", params, nil, &out); err != nil { return nil, err }
return &out, nil}