File

src/api/aaai/aaaiUser.interface.ts

Description

Represents a User for authentication purposes.

Index

Methods

Methods

getAsApiUser
getAsApiUser()
Returns : User
getEmail
getEmail()
Returns : string
getIdentifier
getIdentifier()
Returns : string
getToken
getToken()
Returns : string
getUsername
getUsername()
Returns : string
import { User } from 'api/webApi/data/user.interface';

/**
 * Represents a User for authentication purposes.
 */
export interface AAAIUser {
  getUsername(): string;
  getEmail(): string;
  getToken(): string;
  getIdentifier(): string;
  getAsApiUser(): User;
}

results matching ""

    No results matching ""