login
abstract suspend fun login(identifier: IdentifierType? = null, password: String? = null, token: String? = null, type: LoginType = LoginType.Password, deviceId: String? = null, initialDeviceDisplayName: String? = null, refreshToken: Boolean? = null): Result<Login.Response>
See also
Login
abstract suspend fun login(identifier: IdentifierType? = null, passwordOrToken: String, type: LoginType = LoginType.Password, deviceId: String? = null, initialDeviceDisplayName: String? = null): Result<Login.Response>
Deprecated
use login with separated password and token
See also
Login