<!--
{
  "availability" : [
    "iOS: 11.0.0 - 13.0.0",
    "iPadOS: 11.0.0 - 13.0.0",
    "macCatalyst: 13.1.0 - 13.1.0",
    "visionOS: 1.0.0 - 1.0.0",
    "watchOS: 3.2.0 - 6.0.0"
  ],
  "documentType" : "symbol",
  "framework" : "SiriKit",
  "identifier" : "/documentation/Intents/INRidesharingDomainHandling",
  "metadataVersion" : "0.1.0",
  "role" : "Protocol",
  "symbol" : {
    "kind" : "Protocol",
    "modules" : [
      "Intents"
    ],
    "preciseIdentifier" : "c:objc(pl)INRidesharingDomainHandling"
  },
  "title" : "INRidesharingDomainHandling"
}
-->

# INRidesharingDomainHandling

An interface for adopting all of the protocols in the ride-booking domain.

```
protocol INRidesharingDomainHandling : INCancelRideIntentHandling, INGetRideStatusIntentHandling, INListRideOptionsIntentHandling, INRequestRideIntentHandling, INSendRideFeedbackIntentHandling
```

## Overview

The [`INRidesharingDomainHandling`](/documentation/Intents/INRidesharingDomainHandling) protocol is a convenience protocol that adopts all of the protocols used to handle ride sharing-related intents. When your app adopts all of the protocols associated with ride sharing, you can adopt this one protocol instead of adopting the [`INListRideOptionsIntentHandling`](/documentation/Intents/INListRideOptionsIntentHandling), [`INRequestRideIntentHandling`](/documentation/Intents/INRequestRideIntentHandling), [`INGetRideStatusIntentHandling`](/documentation/Intents/INGetRideStatusIntentHandling), [`INCancelRideIntentHandling`](/documentation/Intents/INCancelRideIntentHandling), and [`INSendRideFeedbackIntentHandling`](/documentation/Intents/INSendRideFeedbackIntentHandling) protocols separately.

An object that adopts this protocol must be able to respond to the following intents:

- [`INListRideOptionsIntent`](/documentation/Intents/INListRideOptionsIntent), a request to view the available vehicles and prices.
- [`INRequestRideIntent`](/documentation/Intents/INRequestRideIntent), a request to book a ride.
- [`INGetRideStatusIntent`](/documentation/Intents/INGetRideStatusIntent), a request to get the status of a previously booked ride.
- [`INCancelRideIntent`](/documentation/Intents/INCancelRideIntent), a request to cancel the currently active ride.
- [`INSendRideFeedbackIntent`](/documentation/Intents/INSendRideFeedbackIntent), a request to record feedback for the just-completed ride.

Your handler object must be prepared to resolve any parameters associated with these intents and to confirm and handle the requests. When confirming and handling a request, you provide the response object that matches the specified intent.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)