Class AuthenticateWithPasswordRequest


public class AuthenticateWithPasswordRequest extends JsonrpcRequest
Represents a JSON-RPC Request to authenticate with a Password.

This is used by UI to login with username + password at Edge or Backend.

 {
   "jsonrpc": "2.0",
   "id": "UUID",
   "method": "authenticateWithPassword",
   "params": {
     "username"?: string,
     "password": string
   }
 }