// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. // Lexicon schema: chat.bsky.convo.unlockConvo package chat import ( "context" lexutil "github.com/bluesky-social/indigo/lex/util" ) // ConvoUnlockConvo_Input is the input argument to a chat.bsky.convo.unlockConvo call. type ConvoUnlockConvo_Input struct { ConvoId string `json:"convoId" cborgen:"convoId"` } // ConvoUnlockConvo_Output is the output of a chat.bsky.convo.unlockConvo call. type ConvoUnlockConvo_Output struct { Convo *ConvoDefs_ConvoView `json:"convo" cborgen:"convo"` } // ConvoUnlockConvo calls the XRPC method "chat.bsky.convo.unlockConvo". func ConvoUnlockConvo(ctx context.Context, c lexutil.LexClient, input *ConvoUnlockConvo_Input) (*ConvoUnlockConvo_Output, error) { var out ConvoUnlockConvo_Output if err := c.LexDo(ctx, lexutil.Procedure, "application/json", "chat.bsky.convo.unlockConvo", nil, input, &out); err != nil { return nil, err } return &out, nil }