> 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/movenotification.md).

# MoveNotification

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

```kotlin
data class MoveNotification(
    val recognitionTitle: String,
    val recognitionText: String,
    val drivingTitle: String,
    val drivingText: String,
)
```

{% endtab %}
{% endtabs %}

Used with `setNotificationText()` to customize notification texts.

| recognitionTitle | Title for the recognition notification. |
| ---------------- | --------------------------------------- |
| recognitionText  | Text for the recognition notification.  |
| drivingTitle     | Title for the trip notification.        |
| drivingText      | Text for the trip notification.         |
