# MoveShutdownResult

{% tabs %}
{% tab title="Android" %}

```kotlin
enum class MoveShutdownResult {
    SUCCESS,
    NETWORK_ERROR,
    UNINITIALIZED;
}
```

{% endtab %}

{% tab title="iOS" %}

```swift
public enum MoveShutdownResult {
    case success
    case networkError
    case uninitialized
}
```

{% endtab %}

{% tab title="Flutter" %}

```dart
import 'package:movesdk/io/dolphin/move/move_shutdown_result.dart';// Some code
```

```dart
enum MoveShutdownResult {
    success,
    networkError,
    uninitialized,
}
```

{% endtab %}

{% tab title="React" %}

```typescript
export declare type ShutdownReturnType = 'NETWORK_ERROR' | 'SUCCESS' | 'UNINITIALIZED';
```

{% hint style="warning" %}
Error results will be returned with a rejected promise.
{% endhint %}
{% endtab %}
{% endtabs %}

<table data-header-hidden><thead><tr><th width="229"></th><th></th></tr></thead><tbody><tr><td><strong>MoveShutdownResult</strong></td><td></td></tr><tr><td>success</td><td>The shutdown completed.</td></tr><tr><td>networkError</td><td>The shutdown could not be completed since there is pending data.</td></tr><tr><td>uninitialized</td><td>The SDK was not setup. No user active.</td></tr></tbody></table>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.movesdk.com/move-platform/sdk/models/moveshutdownresult.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
