# payment\_method\_details\_sofort

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.

### `country`

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

Two-letter ISO code representing the country the bank account is located in.

### `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"`, `"es"`, `"fr"`, `"it"`, `"nl"`, `"pl"`

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

### `verified_name`

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

Owner's verified full name. Values are verified or provided by SOFORT 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"},"country":{"description":"Two-letter ISO code representing the country the bank account is located in.","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 SOFORT authorization page that the customer is redirected to.\nCan be one of `de`, `en`, `es`, `fr`, `it`, `nl`, or `pl`","enum":["de","en","es","fr","it","nl","pl"],"nullable":true,"type":"string"},"verified_name":{"description":"Owner's verified full name. Values are verified or provided by SOFORT 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_sofort","type":"object","x-expandableFields":["generated_sepa_debit","generated_sepa_debit_mandate"]}
```
