For the complete documentation index, see llms.txt. This page is also available as Markdown.

MoveDeviceState

When a device is registered, it is synchronized with the backend so that it will persist across installations. If the device has a malformed identifier it may be rejected by the backend. The device property state will reflect this status and the app will be notified via the deviceStateListener.

enum class MoveDeviceState {
    OK,
    NOT_SYNCHRONIZED,
}
public enum MoveDeviceState {
	case ok
	case notSynchronized
}
export type MoveSdkDeviceState = 'OK' | 'NOT_SYNCHRONIZED';
enum MoveDeviceState {
  ok,
  notSynchronized,
}

MoveDevice

ok

No error.

notSynchronized

There was an error and the device was not accepted by the backend, possibly due to malformed id.

Last updated