Dolphin MOVE SDK
SDK
1.x
1.x
  • Introduction
  • MOVE Services
  • MOVE SDK
    • Getting Started
      • MOVE Dashboard
      • Android
        • Installation
        • Quick Start
      • iOS
        • Installation
        • Quick Start
      • React Native
    • API Interface
      • Android
        • Initialization
        • Services
      • iOS
        • Initialization
        • Services
      • React Native
        • Initialization
        • Services
    • Models
      • MoveAuth
      • MoveConfig
      • MoveConfigurationError
      • MoveDeviceStatus
      • MoveSDKState
      • MoveTripState
      • MoveAuthState
      • Listeners/Callbacks
    • Appendix
      • Android
        • Token refresh
        • Permission Handling
        • Battery optimization
        • Notification Management
      • iOS
        • Permissions Handling
        • App Store
  • MOVE Backend
    • MOVE Timeline
    • MOVE State
    • MOVE Last Location
    • MOVE Generic Notifier
    • Open Api Specification
  • Changelog
    • Android
    • iOS
  • Data privacy (GDPR)
Powered by GitBook
On this page
  1. MOVE SDK
  2. Models

MoveConfigurationError

PreviousMoveConfigNextMoveDeviceStatus

Last updated 3 years ago

Represents the potential errors occurring when initializing the SDK or updating the .

enum MoveConfigurationError{   
    ServiceUnreachable
    AuthInvalid
    ConfigMismatch
}
enum MoveConfigurationError{   
    case authInvalid
    case configMismatch
    case serviceUnreachable
}

MoveConfigurationError

authInvalid

Indicates that the passed auth is not valid.

configMismatch

Indicates that the passed configuration mismatches the configurations allowed for this product ID.

serviceUnreachable

Indicates that SDK server is unreachable.

MoveConfigurationError-related APIs

Initialization ( / )

For more info about initializing the SDK.

Update Auth ( / )

For more info about updating the .

MoveAuth
Android
iOS
MoveAuth
Android
iOS