# MoveAuthResult

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

```kotlin
data class MoveAuthResult(
    val status: AuthSetupStatus,
    val description: String,
)

enum class AuthSetupStatus {
    SUCCESS,
    INVALID_CODE,
    NETWORK_ERROR;
}
```

{% endtab %}

{% tab title="iOS" %}

<pre class="language-swift"><code class="lang-swift">enum MoveAuthResult {
    case success
<strong>    case networkError(String)
</strong>    case invalidCode(String)
}
</code></pre>

{% endtab %}

{% tab title="Flutter" %}

<pre class="language-dart"><code class="lang-dart"><strong>enum AuthSetupStatus {
</strong>  success,
  networkError,
  invalidCode,
}

class MoveAuthResult {
  AuthSetupStatus status;
  String description;
}
</code></pre>

{% endtab %}
{% endtabs %}

| MoveAuthResult |                                                                 |
| -------------- | --------------------------------------------------------------- |
| status         | see MoveAuthStatus                                              |
| description    | A slightly more descriptive description of the success / error. |

| MoveAuthStatus |                                                                                            |
| -------------- | ------------------------------------------------------------------------------------------ |
| success        | Code was accepted by the backend. Authentication is valid.                                 |
| invalid\_code  | <p>Authentication is invalid.</p><p>e.g. Code is empty, invalid or expired</p>             |
| network\_error | <p>A network error was triggered.<br>e.g. Client error, Server exception, timeout, ...</p> |


---

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