MoveShutdownResult

A result for the shutdown function with force: false.
Android
iOS
enum class MoveShutdownResult {
SUCCESS,
NETWORK_ERROR,
UNINITIALIZED;
}
public enum MoveShutdownResult {
case success
case networkError
case uninitialized
}
MoveShutdownResult
success
The shutdown completed.
networkError
The shutdown could not be completed since there is pending data.
uninitialized
The SDK was not setup. No user active.