import { LoginRequestInterface } from './login-request.interface'; export interface LoginServiceRequestData extends LoginRequestInterface { confirmationCode?: string; clientDeviceDescription?: string; rememberClientDeviceForMFA?: boolean; moduleName?: string; externalSourceId?: number; commit?: boolean; sessionTitle?: string; actionTitle?: string; language?: string; password?: string; securityCode?: string; response?: string; sessionId?: string; refreshToken?: string; }