# mandate\_bacs\_debit

From **Stripe API**.

- Type: `object`

## Properties

### `network_status`

- Required: true
- Type: `string`
- Allowed values: `"accepted"`, `"pending"`, `"refused"`, `"revoked"`

The status of the mandate on the Bacs network. Can be one of `pending`, `revoked`, `refused`, or `accepted`.

### `reference`

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

The unique reference identifying the mandate on the Bacs network.

### `url`

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

The URL that will contain the mandate that the customer has signed.

## JSON Schema

```json
{"properties":{"network_status":{"description":"The status of the mandate on the Bacs network. Can be one of `pending`, `revoked`, `refused`, or `accepted`.","enum":["accepted","pending","refused","revoked"],"type":"string"},"reference":{"description":"The unique reference identifying the mandate on the Bacs network.","maxLength":5000,"type":"string"},"url":{"description":"The URL that will contain the mandate that the customer has signed.","maxLength":5000,"type":"string"}},"required":["network_status","reference","url"],"title":"mandate_bacs_debit","type":"object","x-expandableFields":[]}
```
