Class: Increase::Models::CheckTransfer::StopPaymentRequest
- Defined in:
- lib/increase/models/check_transfer.rb
Instance Attribute Summary collapse
-
#reason ⇒ Symbol
The reason why this transfer was stopped.
-
#requested_at ⇒ String
The time the stop-payment was requested.
-
#transfer_id ⇒ String
The ID of the check transfer that was stopped.
-
#type ⇒ Symbol
A constant representing the object's type.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#reason ⇒ Symbol
The reason why this transfer was stopped.
312 313 |
# File 'lib/increase/models/check_transfer.rb', line 312 required :reason, Increase::Enum.new(:mail_delivery_failed, :rejected_by_increase, :not_authorized, :unknown) |
#requested_at ⇒ String
The time the stop-payment was requested.
318 |
# File 'lib/increase/models/check_transfer.rb', line 318 required :requested_at, String |
#transfer_id ⇒ String
The ID of the check transfer that was stopped.
323 |
# File 'lib/increase/models/check_transfer.rb', line 323 required :transfer_id, String |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be check_transfer_stop_payment_request
.
328 |
# File 'lib/increase/models/check_transfer.rb', line 328 required :type, Increase::Enum.new(:check_transfer_stop_payment_request) |