<!--
{
  "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.0.0 - 6.0.0"
  ],
  "documentType" : "symbol",
  "framework" : "SiriKit",
  "identifier" : "/documentation/Intents/INPaymentsDomainHandling",
  "metadataVersion" : "0.1.0",
  "role" : "Protocol",
  "symbol" : {
    "kind" : "Protocol",
    "modules" : [
      "Intents"
    ],
    "preciseIdentifier" : "c:objc(pl)INPaymentsDomainHandling"
  },
  "title" : "INPaymentsDomainHandling"
}
-->

# INPaymentsDomainHandling

An interface for adopting all of the protocols in the payments domain.

```
protocol INPaymentsDomainHandling : INRequestPaymentIntentHandling, INSendPaymentIntentHandling
```

## Overview

The [`INPaymentsDomainHandling`](/documentation/Intents/INPaymentsDomainHandling) protocol is a convenience protocol that adopts all of the protocols used to handle payment-related intents. When your app adopts all of the protocols associated with payments, you can adopt this one protocol instead of adopting the [`INSendPaymentIntentHandling`](/documentation/Intents/INSendPaymentIntentHandling), [`INRequestPaymentIntentHandling`](/documentation/Intents/INRequestPaymentIntentHandling), [`INPayBillIntentHandling`](/documentation/Intents/INPayBillIntentHandling), [`INSearchForBillsIntentHandling`](/documentation/Intents/INSearchForBillsIntentHandling), [`INSearchForAccountsIntentHandling`](/documentation/Intents/INSearchForAccountsIntentHandling), and [`INTransferMoneyIntentHandling`](/documentation/Intents/INTransferMoneyIntentHandling) protocols separately.

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

- [`INRequestPaymentIntent`](/documentation/Intents/INRequestPaymentIntent), a request for a payment from another user.
- [`INSendPaymentIntent`](/documentation/Intents/INSendPaymentIntent), a request to send a payment to another user.
- [`INPayBillIntent`](/documentation/Intents/INPayBillIntent), a request to pay a bill.
- [`INSearchForBillsIntent`](/documentation/Intents/INSearchForBillsIntent), a request to search for bills to pay.
- [`INSearchForAccountsIntent`](/documentation/Intents/INSearchForAccountsIntent), a request to provide a list of the user’s accounts.
- [`INTransferMoneyIntent`](/documentation/Intents/INTransferMoneyIntent), a request to transfer money between the designated accounts.

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)