# payment\_method\_details\_bancontact

From **Stripe API**.

- Type: `object`

## Properties

### `bank_code`

- Required: false
- Type: `string`
- Nullable: true
- maxLength: `5000`

Bank code of bank associated with the bank account.

### `bank_name`

- Required: false
- Type: `string`
- Nullable: true
- maxLength: `5000`

Name of the bank associated with the bank account.

### `bic`

- Required: false
- Type: `string`
- Nullable: true
- maxLength: `5000`

Bank Identifier Code of the bank associated with the bank account.

### `generated_sepa_debit`

- Required: false
- Nullable: true

The ID of the SEPA Direct Debit PaymentMethod which was generated by this Charge.

### `generated_sepa_debit_mandate`

- Required: false
- Nullable: true

The mandate for the SEPA Direct Debit PaymentMethod which was generated by this Charge.

### `iban_last4`

- Required: false
- Type: `string`
- Nullable: true
- maxLength: `5000`

Last four characters of the IBAN.

### `preferred_language`

- Required: false
- Type: `string`
- Nullable: true
- Allowed values: `"de"`, `"en"`, `"fr"`, `"nl"`

Preferred language of the Bancontact authorization page that the customer is redirected to.
Can be one of `en`, `de`, `fr`, or `nl`

### `verified_name`

- Required: false
- Type: `string`
- Nullable: true
- maxLength: `5000`

Owner's verified full name. Values are verified or provided by Bancontact directly
(if supported) at the time of authorization or settlement. They cannot be set or mutated.

## JSON Schema

```json
{"properties":{"bank_code":{"description":"Bank code of bank associated with the bank account.","maxLength":5000,"nullable":true,"type":"string"},"bank_name":{"description":"Name of the bank associated with the bank account.","maxLength":5000,"nullable":true,"type":"string"},"bic":{"description":"Bank Identifier Code of the bank associated with the bank account.","maxLength":5000,"nullable":true,"type":"string"},"generated_sepa_debit":{"anyOf":[{"maxLength":5000,"type":"string"},{"$ref":"#/components/schemas/payment_method"}],"description":"The ID of the SEPA Direct Debit PaymentMethod which was generated by this Charge.","nullable":true,"x-expansionResources":{"oneOf":[{"$ref":"#/components/schemas/payment_method"}]}},"generated_sepa_debit_mandate":{"anyOf":[{"maxLength":5000,"type":"string"},{"$ref":"#/components/schemas/mandate"}],"description":"The mandate for the SEPA Direct Debit PaymentMethod which was generated by this Charge.","nullable":true,"x-expansionResources":{"oneOf":[{"$ref":"#/components/schemas/mandate"}]}},"iban_last4":{"description":"Last four characters of the IBAN.","maxLength":5000,"nullable":true,"type":"string"},"preferred_language":{"description":"Preferred language of the Bancontact authorization page that the customer is redirected to.\nCan be one of `en`, `de`, `fr`, or `nl`","enum":["de","en","fr","nl"],"nullable":true,"type":"string"},"verified_name":{"description":"Owner's verified full name. Values are verified or provided by Bancontact directly\n(if supported) at the time of authorization or settlement. They cannot be set or mutated.","maxLength":5000,"nullable":true,"type":"string"}},"title":"payment_method_details_bancontact","type":"object","x-expandableFields":["generated_sepa_debit","generated_sepa_debit_mandate"]}
```
