MoveAuthError
MOVE Models
Deprecated: update(auth:) was deprecated.
Represents the potential errors occurring when updating the MoveAuth.
sealed class MoveAuthError {
object AuthInvalid : MoveAuthError()
object Throttle : MoveAuthError()
object ServiceUnreachable : MoveAuthError()
}@available(*, deprecated, message: "update(auth:) was deprecated.")
enum MoveAuthError {
case authInvalid
case throttle
case serviceUnreachable
}import 'package:movesdk/io/dolphin/move/move_auth_error.dart';@Deprecated('obsolete')
enum MoveAuthError {
authInvalid,
throttle,
serviceUnreachable,
}MoveAuthError
authInvalid
Indicates that the passed auth is not the same used in setup.
throttle
Update called too often. Limit: 5 times per minute.
serviceUnreachable
Bad connection or service failure
MoveAuthError related
Update Auth
For more info about updating the MoveAuth.
Last updated