Sha256: 211ece7df212350642b68b335ab8d78f79dd432a9fb6da93dd8b4b01c6578a9f

Contents?: true

Size: 1.38 KB

Versions: 6

Compression:

Stored size: 1.38 KB

Contents

# Conekta::TransfersResponse

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **amount** | **Integer** | Amount in cents of the transfer. | [optional] |
| **created_at** | **Integer** | Date and time of creation of the transfer. | [optional] |
| **currency** | **String** | The currency of the transfer. It uses the 3-letter code of the [International Standard ISO 4217.](https://es.wikipedia.org/wiki/ISO_4217) | [optional] |
| **id** | **String** | Unique identifier of the transfer. | [optional] |
| **livemode** | **Boolean** | Indicates whether the transfer was created in live mode or test mode. | [optional] |
| **method** | [**TransferMethodResponse**](TransferMethodResponse.md) |  | [optional] |
| **object** | **String** | Object name, which is transfer. | [optional] |
| **statement_description** | **String** | Description of the transfer. | [optional] |
| **statement_reference** | **String** | Reference number of the transfer. | [optional] |
| **status** | **String** | Code indicating transfer status. | [optional] |

## Example

```ruby
require 'conekta'

instance = Conekta::TransfersResponse.new(
  amount: 10000,
  created_at: 1553273553,
  currency: MXN,
  id: 5b0337d4dD344ef954fe1X4b6,
  livemode: true,
  method: null,
  object: transfer,
  statement_description: Conekta 4401234,
  statement_reference: 4401234,
  status: pending
)
```

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
conekta-6.0.5 docs/TransfersResponse.md
conekta-6.0.4 docs/TransfersResponse.md
conekta-6.0.3 docs/TransfersResponse.md
conekta-6.0.2 docs/TransfersResponse.md
conekta-6.0.1 docs/TransfersResponse.md
conekta-6.0.0 docs/TransfersResponse.md