---
title: "init(type:name:identificationHint:icon:)"
framework: intents
role: symbol
role_heading: Initializer
path: "intents/inpaymentmethod/init(type:name:identificationhint:icon:)"
---

# init(type:name:identificationHint:icon:)

Initializes the payment method object with the specified type and descriptive information.

## Declaration

```swift
init(type: INPaymentMethodType, name: String?, identificationHint: String?, icon: INImage?)
```

## Parameters

- `type`: The payment method type. For a list of possible values, see doc://com.apple.sirikit/documentation/Intents/INPaymentMethodType.
- `name`: The name of the payment method. For a branded credit card, you might specify the specific brand name of the card. If the user provides you with payment information, such as credit card information, you can specify the name that the user assigned to that payment method or whatever descriptive string your company assigned to it.
- `identificationHint`: Additional information that when combined with the name parameter helps you identify the payment method. You can use identification hints to help differentiate payment methods with similar names. For example, if the user has two credit cards of the same type, you might use this parameter to specify the last four digits of the credit card.
- `icon`: An image that visually represents the payment method. For payment methods with an associated brand, use the image associated with the brand.

## Return Value

Return Value An initialized payment method object.

## Discussion

Discussion This method stores copies of the name, identificationHint, and icon parameters that you provide. Don’t use this method to create payment method objects for Apple Pay. Instead, use the applePay() to obtain the correct payment method object.

## See Also

### Initializing a Payment Object

- [applePay()](intents/inpaymentmethod/applepay().md)
