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