<!--
{
  "availability" : [
    "iOS: 11.0.0 -",
    "iPadOS: 11.0.0 -",
    "macCatalyst: 13.1.0 -",
    "visionOS: 1.0.0 -",
    "watchOS: 4.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "SiriKit",
  "identifier" : "/documentation/Intents/INRideCompletionStatus/completed(feedbackType:)",
  "metadataVersion" : "0.1.0",
  "role" : "Type Method",
  "symbol" : {
    "kind" : "Type Method",
    "modules" : [
      "Intents"
    ],
    "preciseIdentifier" : "c:objc(cs)INRideCompletionStatus(cm)completedWithOutstandingFeedbackType:"
  },
  "title" : "completed(feedbackType:)"
}
-->

# completed(feedbackType:)

Creates an instance of this class that indicates the ride completed successfully but still requires feedback from the user.

```
class func completed(feedbackType: INRideFeedbackTypeOptions = []) -> Self
```

## Parameters

`feedbackType`

The type of feedback you want from the user. You can ask the user to provide feedback on the driver, leave a tip, or both.

## Return Value

An initialized [`INRideCompletionStatus`](/documentation/Intents/INRideCompletionStatus) object.

## Discussion

Use this method when the ride completed successfully and you want the user to provide a tip or feedback about the ride. This method sets the `isCompleted` and [`isOutstanding`](/documentation/Intents/INRideCompletionStatus/isOutstanding) properties of the returned object to <doc://com.apple.documentation/documentation/Swift/true>, and it sets the [`isCanceled`](/documentation/Intents/INRideCompletionStatus/isCanceled) and [`isMissedPickup`](/documentation/Intents/INRideCompletionStatus/isMissedPickup) properties to <doc://com.apple.documentation/documentation/Swift/false>. If you ask the user to specify a tip, assign values to the [`defaultTippingOptions`](/documentation/Intents/INRideCompletionStatus/defaultTippingOptions) property representing proposed tip amounts.

If your Intents extension supports the [`INSendRideFeedbackIntent`](/documentation/Intents/INSendRideFeedbackIntent), SiriKit delivers that intent when feedback from the last ride is still needed. If you don’t support the intent, you can still assign a value to the [`completionUserActivity`](/documentation/Intents/INRideCompletionStatus/completionUserActivity) property to allow the collection of feedback from your app.

---

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)