# payment\_method\_sepa\_debit

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.

### `branch_code`

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

Branch code of 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.

### `fingerprint`

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

Uniquely identifies this particular bank account. You can use this attribute to check whether two bank accounts are the same.

### `generated_from`

- Required: false
- Nullable: true

Information about the object that generated this PaymentMethod.

### `last4`

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

Last four characters of the IBAN.

## JSON Schema

```json
{"properties":{"bank_code":{"description":"Bank code of bank associated with the bank account.","maxLength":5000,"nullable":true,"type":"string"},"branch_code":{"description":"Branch code of 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"},"fingerprint":{"description":"Uniquely identifies this particular bank account. You can use this attribute to check whether two bank accounts are the same.","maxLength":5000,"nullable":true,"type":"string"},"generated_from":{"anyOf":[{"$ref":"#/components/schemas/sepa_debit_generated_from"}],"description":"Information about the object that generated this PaymentMethod.","nullable":true},"last4":{"description":"Last four characters of the IBAN.","maxLength":5000,"nullable":true,"type":"string"}},"title":"payment_method_sepa_debit","type":"object","x-expandableFields":["generated_from"]}
```
