// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. // Lexicon schema: com.atproto.server.listAppPasswords package atproto import ( "context" lexutil "github.com/bluesky-social/indigo/lex/util" ) // ServerListAppPasswords_AppPassword is a "appPassword" in the com.atproto.server.listAppPasswords schema. type ServerListAppPasswords_AppPassword struct { CreatedAt string `json:"createdAt" cborgen:"createdAt"` Name string `json:"name" cborgen:"name"` Privileged *bool `json:"privileged,omitempty" cborgen:"privileged,omitempty"` } // ServerListAppPasswords_Output is the output of a com.atproto.server.listAppPasswords call. type ServerListAppPasswords_Output struct { Passwords []*ServerListAppPasswords_AppPassword `json:"passwords" cborgen:"passwords"` } // ServerListAppPasswords calls the XRPC method "com.atproto.server.listAppPasswords". func ServerListAppPasswords(ctx context.Context, c lexutil.LexClient) (*ServerListAppPasswords_Output, error) { var out ServerListAppPasswords_Output if err := c.LexDo(ctx, lexutil.Query, "", "com.atproto.server.listAppPasswords", nil, nil, &out); err != nil { return nil, err } return &out, nil }