import type { TokenResponse } from './TokenResponse'; /** * @type AuthenticateResult: * * @property credentialId: The credential ID that was used for authentication. * - **Max Length:** 1024 * * @property username: The authenticated username. * - **Max Length:** 128 * * @property success: Specifies whether authentication was successful (true) or not (false). * * @property tokenResponse: * */ export type AuthenticateResult = { credentialId?: string; username?: string; success?: boolean; tokenResponse?: TokenResponse; } & { [key: string]: any; };