---
title: "init(userCurrentBookings:code:userActivity:)"
framework: intents
role: symbol
role_heading: Initializer
path: "intents/ingetusercurrentrestaurantreservationbookingsintentresponse/init(usercurrentbookings:code:useractivity:)"
---

# init(userCurrentBookings:code:userActivity:)

Initializes the response object with the specified code and user activity object.

## Declaration

```swift
init(userCurrentBookings: [INRestaurantReservationUserBooking], code: INGetUserCurrentRestaurantReservationBookingsIntentResponseCode, userActivity: NSUserActivity?)
```

## Parameters

- `userCurrentBookings`: The array of doc://com.apple.sirikit/documentation/Intents/INRestaurantReservationUserBooking objects representing the user’s current reservations. If the user has no current bookings, specify an empty array.
- `code`: The response code indicating your success or failure in handling the intent. For a list of possible values, see doc://com.apple.sirikit/documentation/Intents/INGetUserCurrentRestaurantReservationBookingsIntentResponseCode.
- `userActivity`: The user activity object to use when launching your app. Provide an object if you want to add information that is specific to your app. If you specify nil, the system automatically creates a user activity object for you, sets its type to the class name of the intent being handled, and fills it with an doc://com.apple.sirikit/documentation/Intents/INInteraction object containing the intent and your response.

## Return Value

Return Value An initialized response object or nil if the object could not be created.
