# `Stripe.Resources.Capability`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/resources/capability.ex#L2)

AccountCapability

This is an object representing a capability for a Stripe account.

Related guide: [Account capabilities](https://docs.stripe.com/connect/account-capabilities)

# `t`

```elixir
@type t() :: %Stripe.Resources.Capability{
  account: term(),
  future_requirements: term(),
  id: term(),
  object: term(),
  requested: term(),
  requested_at: term(),
  requirements: term(),
  status: term()
}
```

* `account` - The account for which the capability enables functionality. Expandable.
* `future_requirements` - Expandable.
* `id` - The identifier for the capability. Max length: 5000.
* `object` - String representing the object's type. Objects of the same type share the same value. Possible values: `capability`.
* `requested` - Whether the capability has been requested.
* `requested_at` - Time at which the capability was requested. Measured in seconds since the Unix epoch. Format: Unix timestamp. Nullable.
* `requirements` - Expandable.
* `status` - The status of the capability. Possible values: `active`, `inactive`, `pending`, `unrequested`.

# `expandable_fields`

# `object_name`

---

*Consult [api-reference.md](api-reference.md) for complete listing*
