> For the complete documentation index, see [llms.txt](https://docs.movesdk.com/move-platform/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.movesdk.com/move-platform/sdk/models/moveshutdownresult.md).

# 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><p>Pending data in the queue could not be sent to the backend.</p><ul><li><code>shutdown(force: false)</code>: SDK remains active and does not shut down. Retry later.</li><li><code>shutdown(force: true)</code>: SDK shuts down regardless. Pending data is lost.</li></ul></td></tr><tr><td>uninitialized</td><td>The SDK was not setup. No user active.</td></tr></tbody></table>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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.
