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