# The StripeBalanceDebitAgreement object

### The StripeBalanceDebitAgreement object

```json
{
  "id": "sbda_1Na5YT2eZvKYlo2Ctn7SPPuy",
  "object": "stripe_balance_debit_agreement",
  "financial_account": "fa_1Na5YT2eZvKYlo2Ctn7SPPuy",
  "livemode": false,
  "multi_use": null,
  "seller_network_business_profile": "snbp_1Na5YT2eZvKYlo2Ctn7SPPuz",
  "single_use": {
    "amount": 1000,
    "currency": "usd"
  },
  "status": "active"
}
```

## Attributes

- `id` (string)
  Unique identifier for the object.

- `object` (string)
  String representing the object’s type. Objects of the same type share the same value.

- `financial_account` (string, nullable)
  The ID of the financial account that is authorized to be debited.

- `livemode` (boolean)
  Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.

- `multi_use` (object, nullable)
  If this is a `multi_use` debit agreement, this hash contains details about the agreement.

  - `multi_use.currency` (enum)
    Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase.

- `seller_network_business_profile` (string)
  The ID of the seller network business profile associated with this debit agreement.

- `single_use` (object, nullable)
  If this is a `single_use` debit agreement, this hash contains details about the agreement.

  - `single_use.amount` (integer)
    The amount to be debited, in the smallest currency unit.

  - `single_use.currency` (enum)
    Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase.

- `status` (enum)
  The status of the debit agreement.
Possible enum values:
  - `active`
    The debit agreement is active and can be used to create payment methods.

  - `expired`
    The debit agreement has expired due to single-use consumption.

  - `pending`
    The debit agreement has been created and is pending activation.

  - `revoked`
    The debit agreement has been revoked by the granting account.
