Class: Increase::Models::ProofOfAuthorizationRequest
- Defined in:
- lib/increase/models/proof_of_authorization_request.rb
Defined Under Namespace
Classes: ACHTransfer
Instance Attribute Summary collapse
-
#ach_transfers ⇒ Array<Increase::Models::ProofOfAuthorizationRequest::ACHTransfer>
The ACH Transfers associated with the request.
-
#created_at ⇒ String
The time the Proof of Authorization Request was created.
-
#due_on ⇒ String
The time the Proof of Authorization Request is due.
-
#id ⇒ String
The Proof of Authorization Request identifier.
-
#type ⇒ Symbol
A constant representing the object's type.
-
#updated_at ⇒ String
The time the Proof of Authorization Request was last updated.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#ach_transfers ⇒ Array<Increase::Models::ProofOfAuthorizationRequest::ACHTransfer>
The ACH Transfers associated with the request.
14 15 |
# File 'lib/increase/models/proof_of_authorization_request.rb', line 14 required :ach_transfers, Increase::ArrayOf.new(-> { Increase::Models::ProofOfAuthorizationRequest::ACHTransfer }) |
#created_at ⇒ String
The time the Proof of Authorization Request was created.
20 |
# File 'lib/increase/models/proof_of_authorization_request.rb', line 20 required :created_at, String |
#due_on ⇒ String
The time the Proof of Authorization Request is due.
25 |
# File 'lib/increase/models/proof_of_authorization_request.rb', line 25 required :due_on, String |
#id ⇒ String
The Proof of Authorization Request identifier.
9 |
# File 'lib/increase/models/proof_of_authorization_request.rb', line 9 required :id, String |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be proof_of_authorization_request
.
30 |
# File 'lib/increase/models/proof_of_authorization_request.rb', line 30 required :type, Increase::Enum.new(:proof_of_authorization_request) |
#updated_at ⇒ String
The time the Proof of Authorization Request was last updated.
35 |
# File 'lib/increase/models/proof_of_authorization_request.rb', line 35 required :updated_at, String |