# The FinancialAccount Feature object

### The FinancialAccount Feature object

```json
{
  "object": "treasury.financial_account_features",
  "card_issuing": {
    "requested": true,
    "status": "active",
    "status_details": []
  },
  "deposit_insurance": {
    "requested": true,
    "status": "active",
    "status_details": []
  },
  "financial_addresses": {
    "aba": {
      "requested": true,
      "status": "active",
      "status_details": []
    }
  },
  "inbound_transfers": {
    "ach": {
      "requested": true,
      "status": "active",
      "status_details": []
    }
  },
  "intra_stripe_flows": {
    "requested": true,
    "status": "active",
    "status_details": []
  },
  "outbound_payments": {
    "ach": {
      "requested": true,
      "status": "active",
      "status_details": []
    },
    "us_domestic_wire": {
      "requested": true,
      "status": "active",
      "status_details": []
    }
  },
  "outbound_transfers": {
    "ach": {
      "requested": true,
      "status": "active",
      "status_details": []
    },
    "us_domestic_wire": {
      "requested": true,
      "status": "active",
      "status_details": []
    }
  }
}
```

## Attributes

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

- [`card_issuing`](https://docs.stripe.com/api/treasury/financial_account_features/object.md?query=card_issuing) (object, nullable)
  Contains a Feature encoding the FinancialAccount’s ability to be used with the Issuing product, including attaching cards to and drawing funds from.

- [`deposit_insurance`](https://docs.stripe.com/api/treasury/financial_account_features/object.md?query=deposit_insurance) (object, nullable)
  Represents whether this FinancialAccount is eligible for deposit insurance. Various factors determine the insurance amount.

- [`financial_addresses`](https://docs.stripe.com/api/treasury/financial_account_features/object.md?query=financial_addresses) (object, nullable)
  Contains Features that add FinancialAddresses to the FinancialAccount.

- [`inbound_transfers`](https://docs.stripe.com/api/treasury/financial_account_features/object.md?query=inbound_transfers) (object, nullable)
  Contains settings related to adding funds to a FinancialAccount from another Account with the same owner.

- [`intra_stripe_flows`](https://docs.stripe.com/api/treasury/financial_account_features/object.md?query=intra_stripe_flows) (object, nullable)
  Represents the ability for this FinancialAccount to send money to, or receive money from other FinancialAccounts (for example, via OutboundPayment).

- [`outbound_payments`](https://docs.stripe.com/api/treasury/financial_account_features/object.md?query=outbound_payments) (object, nullable)
  Contains Features related to initiating money movement out of the FinancialAccount to someone else’s bucket of money.

- [`outbound_transfers`](https://docs.stripe.com/api/treasury/financial_account_features/object.md?query=outbound_transfers) (object, nullable)
  Contains a Feature and settings related to moving money out of the FinancialAccount into another Account with the same owner.
