---
title: "init(nickname:number:organizationName:)"
framework: intents
role: symbol
role_heading: Initializer
path: "intents/inbillpayee/init(nickname:number:organizationname:)"
---

# init(nickname:number:organizationName:)

Initializes a payee object with the specified account details.

## Declaration

```swift
init?(nickname: INSpeakableString, number: String?, organizationName: INSpeakableString?)
```

## Parameters

- `nickname`: The nickname that the user assigned to this payee. Siri may display this text to the user. Don’t include account numbers or other potentially sensitive user information.
- `number`: A string to help the user differentiate between similar accounts. Typically, you use this parameter to specify the last few digits of the user’s account or an encoded version of the user’s account number. Never specify the user’s full account number.
- `organizationName`: The name of the organization receiving the payment. Siri may display this text to the user. Don’t include account numbers or other potentially sensitive user information.

## Return Value

Return Value An initialized payee object.

## Discussion

Discussion When creating an INBillPayee object, specify the information that you need to identify a payee in your app.
