Class: Increase::Models::PendingTransaction::Source::InboundFundsHold
- Inherits:
-
BaseModel
- Object
- BaseModel
- Increase::Models::PendingTransaction::Source::InboundFundsHold
- Defined in:
- lib/increase/models/pending_transaction.rb
Instance Attribute Summary collapse
-
#amount ⇒ Integer
The held amount in the minor unit of the account's currency.
-
#automatically_releases_at ⇒ String
When the hold will be released automatically.
-
#created_at ⇒ String
The ISO 8601 time at which the hold was created.
-
#currency ⇒ Symbol
The ISO 4217 code for the hold's currency.
-
#held_transaction_id ⇒ String
The ID of the Transaction for which funds were held.
-
#id ⇒ String
The Inbound Funds Hold identifier.
-
#pending_transaction_id ⇒ String
The ID of the Pending Transaction representing the held funds.
-
#released_at ⇒ String
When the hold was released (if it has been released).
-
#status ⇒ Symbol
The status of the hold.
-
#type ⇒ Symbol
A constant representing the object's type.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#amount ⇒ Integer
The held amount in the minor unit of the account's currency. For dollars, for example, this is cents.
474 |
# File 'lib/increase/models/pending_transaction.rb', line 474 required :amount, Integer |
#automatically_releases_at ⇒ String
When the hold will be released automatically. Certain conditions may cause it to be released before this time.
479 |
# File 'lib/increase/models/pending_transaction.rb', line 479 required :automatically_releases_at, String |
#created_at ⇒ String
The ISO 8601 time at which the hold was created.
484 |
# File 'lib/increase/models/pending_transaction.rb', line 484 required :created_at, String |
#currency ⇒ Symbol
The ISO 4217 code for the hold's currency.
489 |
# File 'lib/increase/models/pending_transaction.rb', line 489 required :currency, Increase::Enum.new(:CAD, :CHF, :EUR, :GBP, :JPY, :USD) |
#held_transaction_id ⇒ String
The ID of the Transaction for which funds were held.
494 |
# File 'lib/increase/models/pending_transaction.rb', line 494 required :held_transaction_id, String |
#id ⇒ String
The Inbound Funds Hold identifier.
469 |
# File 'lib/increase/models/pending_transaction.rb', line 469 required :id, String |
#pending_transaction_id ⇒ String
The ID of the Pending Transaction representing the held funds.
499 |
# File 'lib/increase/models/pending_transaction.rb', line 499 required :pending_transaction_id, String |
#released_at ⇒ String
When the hold was released (if it has been released).
504 |
# File 'lib/increase/models/pending_transaction.rb', line 504 required :released_at, String |
#status ⇒ Symbol
The status of the hold.
509 |
# File 'lib/increase/models/pending_transaction.rb', line 509 required :status, Increase::Enum.new(:held, :complete) |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be inbound_funds_hold
.
514 |
# File 'lib/increase/models/pending_transaction.rb', line 514 required :type, Increase::Enum.new(:inbound_funds_hold) |