Class: Increase::Models::InboundFundsHoldReleaseResponse
- Defined in:
- lib/increase/models/inbound_funds_hold_release_response.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.
14 |
# File 'lib/increase/models/inbound_funds_hold_release_response.rb', line 14 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.
19 |
# File 'lib/increase/models/inbound_funds_hold_release_response.rb', line 19 required :automatically_releases_at, String |
#created_at ⇒ String
The ISO 8601 time at which the hold was created.
24 |
# File 'lib/increase/models/inbound_funds_hold_release_response.rb', line 24 required :created_at, String |
#currency ⇒ Symbol
The ISO 4217 code for the hold's currency.
29 |
# File 'lib/increase/models/inbound_funds_hold_release_response.rb', line 29 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.
34 |
# File 'lib/increase/models/inbound_funds_hold_release_response.rb', line 34 required :held_transaction_id, String |
#id ⇒ String
The Inbound Funds Hold identifier.
9 |
# File 'lib/increase/models/inbound_funds_hold_release_response.rb', line 9 required :id, String |
#pending_transaction_id ⇒ String
The ID of the Pending Transaction representing the held funds.
39 |
# File 'lib/increase/models/inbound_funds_hold_release_response.rb', line 39 required :pending_transaction_id, String |
#released_at ⇒ String
When the hold was released (if it has been released).
44 |
# File 'lib/increase/models/inbound_funds_hold_release_response.rb', line 44 required :released_at, String |
#status ⇒ Symbol
The status of the hold.
49 |
# File 'lib/increase/models/inbound_funds_hold_release_response.rb', line 49 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
.
54 |
# File 'lib/increase/models/inbound_funds_hold_release_response.rb', line 54 required :type, Increase::Enum.new(:inbound_funds_hold) |