// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. package bsky // schema: app.bsky.feed.sendInteractions import ( "context" "github.com/bluesky-social/indigo/xrpc" ) // FeedSendInteractions_Input is the input argument to a app.bsky.feed.sendInteractions call. type FeedSendInteractions_Input struct { Interactions []*FeedDefs_Interaction `json:"interactions" cborgen:"interactions"` } // FeedSendInteractions_Output is the output of a app.bsky.feed.sendInteractions call. type FeedSendInteractions_Output struct { } // FeedSendInteractions calls the XRPC method "app.bsky.feed.sendInteractions". func FeedSendInteractions(ctx context.Context, c *xrpc.Client, input *FeedSendInteractions_Input) (*FeedSendInteractions_Output, error) { var out FeedSendInteractions_Output if err := c.Do(ctx, xrpc.Procedure, "application/json", "app.bsky.feed.sendInteractions", nil, input, &out); err != nil { return nil, err } return &out, nil }