// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. // Lexicon schema: app.bsky.graph.unmuteActor package bsky import ( "context" lexutil "github.com/bluesky-social/indigo/lex/util" ) // GraphUnmuteActor_Input is the input argument to a app.bsky.graph.unmuteActor call. type GraphUnmuteActor_Input struct { Actor string `json:"actor" cborgen:"actor"` } // GraphUnmuteActor calls the XRPC method "app.bsky.graph.unmuteActor". func GraphUnmuteActor(ctx context.Context, c lexutil.LexClient, input *GraphUnmuteActor_Input) error { if err := c.LexDo(ctx, lexutil.Procedure, "application/json", "app.bsky.graph.unmuteActor", nil, input, nil); err != nil { return err } return nil }