---
title: INGetRideStatusIntentResponseObserver
framework: intents
role: symbol
role_heading: Protocol
path: intents/ingetridestatusintentresponseobserver
---

# INGetRideStatusIntentResponseObserver

An interface for providing updated status for an active ride.

## Declaration

```swift
protocol INGetRideStatusIntentResponseObserver : NSObjectProtocol
```

## Overview

Overview The INGetRideStatusIntentResponseObserver protocol defines methods that provide SiriKit with an updated status for an active ride request. You do not implement the methods of this protocol in your own objects. Instead, the system provides an object that adopts this protocol. You call its didUpdate(getRideStatus:) method to deliver updated information about the status of a booked ride. When the system initiates a request for status updates, it passes an object that adopts this protocol to the startSendingUpdates(for:to:) method of your ride status handler object—your custom object that adopts the INGetRideStatusIntentHandling protocol. Your handler must store a reference to this object and use it to deliver regular updates about the status of the ride. For more information about providing status updates for a ride, see INGetRideStatusIntentHandling.

## Topics

### Updating the Status of a Ride

- [Providing Live Status Updates](sirikit/providing-live-status-updates.md)
- [didUpdate(getRideStatus:)](intents/ingetridestatusintentresponseobserver/didupdate(getridestatus:).md)

## Relationships

### Inherits From

- [NSObjectProtocol](objectivec/nsobjectprotocol.md)

## See Also

### Get the Ride Status

- [INGetRideStatusIntentHandling](intents/ingetridestatusintenthandling.md)
- [INGetRideStatusIntent](intents/ingetridestatusintent.md)
- [INGetRideStatusIntentResponse](intents/ingetridestatusintentresponse.md)
