# payment\_method\_details\_bacs\_debit

From **Stripe API**.

- Type: `object`

## Properties

### `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.

### `last4`

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

Last four digits of the bank account number.

### `mandate`

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

ID of the mandate used to make this payment.

### `sort_code`

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

Sort code of the bank account. (e.g., `10-20-30`)

## JSON Schema

```json
{"properties":{"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"},"last4":{"description":"Last four digits of the bank account number.","maxLength":5000,"nullable":true,"type":"string"},"mandate":{"description":"ID of the mandate used to make this payment.","maxLength":5000,"nullable":true,"type":"string"},"sort_code":{"description":"Sort code of the bank account. (e.g., `10-20-30`)","maxLength":5000,"nullable":true,"type":"string"}},"title":"payment_method_details_bacs_debit","type":"object","x-expandableFields":[]}
```
