# `Stripe.Params.TestHelpers.Treasury.ReceivedDebitCreateParams`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/params/test_helpers/treasury/received_debit_create_params.ex#L2)

Parameters for received debit create.

# `t`

```elixir
@type t() :: %Stripe.Params.TestHelpers.Treasury.ReceivedDebitCreateParams{
  amount: integer(),
  currency: String.t(),
  description: String.t() | nil,
  expand: [String.t()] | nil,
  financial_account: String.t(),
  initiating_payment_method_details:
    Stripe.Params.TestHelpers.Treasury.ReceivedDebitCreateParams.InitiatingPaymentMethodDetails.t()
    | nil,
  network: String.t()
}
```

* `amount` - Amount (in cents) to be transferred.
* `currency` - Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies). Format: ISO 4217 currency code.
* `description` - An arbitrary string attached to the object. Often useful for displaying to users. Max length: 5000.
* `expand` - Specifies which fields in the response should be expanded.
* `financial_account` - The FinancialAccount to pull funds from.
* `initiating_payment_method_details` - Initiating payment method details for the object.
* `network` - Specifies the network rails to be used. If not set, will default to the PaymentMethod's preferred network. See the [docs](https://docs.stripe.com/treasury/money-movement/timelines) to learn more about money movement timelines for each network type. Possible values: `ach`.

---

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