Contents

INGetRideStatusIntent

A request for the current status of a previously booked ride.

Declaration

class INGetRideStatusIntent

Overview

When there’s a request for the status of a booked ride, SiriKit sends an INGetRideStatusIntent object to your handler object. Upon receiving this intent, fetch the ride status and return it in your response object. The intent object has no additional parameters.

To handle this intent, the handler object in your Intents extension must adopt the INGetRideStatusIntentHandling protocol. Your handler should confirm the request and create an INGetRideStatusIntentResponse object with the status of the ride.

Additional Intent Attributes

The following table lists additional attributes of this intent object:

Attribute

Description

Supported by

Siri Intents, Maps

Always requires unlocked device

No

Apps can optionally ask the user to unlock the device before handling this intent. To require unlocking of the device, include the name of this class in the IntentsRestrictedWhileLocked key of your Intents extension’s Info.plist file.

Topics

Initializing an Intent Object

See Also

Get the Ride Status