# The InboundTransfer object

## 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.

- `amount` (integer)
  Amount (in cents) transferred.

- `cancelable` (boolean)
  Returns `true` if the InboundTransfer is able to be canceled.

- `created` (timestamp)
  Time at which the object was created. Measured in seconds since the Unix epoch.

- `currency` (enum)
  Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://docs.stripe.com/currencies.md).

- `description` (string, nullable)
  An arbitrary string attached to the object. Often useful for displaying to users.

- [`failure_details`](https://docs.stripe.com/api/treasury/inbound_transfers/object.md?query=failure_details) (object, nullable)
  Details about this InboundTransfer’s failure. Only set when status is `failed`.

- `financial_account` (string)
  The FinancialAccount that received the funds.

- `hosted_regulatory_receipt_url` (string, nullable)
  A [hosted transaction receipt](https://docs.stripe.com/treasury/moving-money/regulatory-receipts.md) URL that is provided when money movement is considered regulated under Stripe’s money transmission licenses.

- [`linked_flows`](https://docs.stripe.com/api/treasury/inbound_transfers/object.md?query=linked_flows) (object)
  Other flows linked to a InboundTransfer.

- `livemode` (boolean)
  If the object exists in live mode, the value is `true`. If the object exists in test mode, the value is `false`.

- `metadata` (map)
  Set of [key-value pairs](https://docs.stripe.com/api/metadata.md) that you can attach to an object. This can be useful for storing additional information about the object in a structured format.

- `origin_payment_method` (string, nullable)
  The origin payment method to be debited for an InboundTransfer.

- [`origin_payment_method_details`](https://docs.stripe.com/api/treasury/inbound_transfers/object.md?query=origin_payment_method_details) (object, nullable)
  Details about the PaymentMethod for an InboundTransfer.

- `returned` (boolean, nullable)
  Returns `true` if the funds for an InboundTransfer were returned after the InboundTransfer went to the `succeeded` state.

- `statement_descriptor` (string)
  Statement descriptor shown when funds are debited from the source. Not all payment networks support `statement_descriptor`.

- `status` (enum)
  Status of the InboundTransfer: `processing`, `succeeded`, `failed`, and `canceled`. An InboundTransfer is `processing` if it is created and pending. The status changes to `succeeded` once the funds have been “confirmed” and a `transaction` is created and posted. The status changes to `failed` if the transfer fails.

- [`status_transitions`](https://docs.stripe.com/api/treasury/inbound_transfers/object.md?query=status_transitions) (object)
  Hash containing timestamps of when the object transitioned to a particular `status`.

- `transaction` (string, nullable, expandable (can be expanded into an object with the `expand` request parameter))
  The Transaction associated with this object.
