Class: Increase::Models::ProofOfAuthorizationRequestSubmission
- Inherits:
-
BaseModel
- Object
- BaseModel
- Increase::Models::ProofOfAuthorizationRequestSubmission
- Defined in:
- lib/increase/models/proof_of_authorization_request_submission.rb
Instance Attribute Summary collapse
-
#authorization_terms ⇒ String
Terms of authorization.
-
#authorized_at ⇒ String
Time of authorization.
-
#authorizer_company ⇒ String
Company of the authorizer.
-
#authorizer_email ⇒ String
Email of the authorizer.
-
#authorizer_ip_address ⇒ String
IP address of the authorizer.
-
#authorizer_name ⇒ String
Name of the authorizer.
-
#created_at ⇒ String
The time the Proof of Authorization Request Submission was created.
-
#customer_has_been_offboarded ⇒ Boolean
Whether the customer has been offboarded.
-
#id ⇒ String
The Proof of Authorization Request Submission identifier.
-
#idempotency_key ⇒ String
The idempotency key you chose for this object.
-
#proof_of_authorization_request_id ⇒ String
ID of the proof of authorization request.
-
#status ⇒ Symbol
Status of the proof of authorization request submission.
-
#type ⇒ Symbol
A constant representing the object's type.
-
#updated_at ⇒ String
The time the Proof of Authorization Request Submission was last updated.
-
#validated_account_ownership_via_credential ⇒ Boolean
Whether account ownership was validated via credential (for instance, Plaid).
-
#validated_account_ownership_with_account_statement ⇒ Boolean
Whether account ownership was validated with an account statement.
-
#validated_account_ownership_with_microdeposit ⇒ Boolean
Whether account ownership was validated with microdeposit.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#authorization_terms ⇒ String
Terms of authorization.
14 |
# File 'lib/increase/models/proof_of_authorization_request_submission.rb', line 14 required :authorization_terms, String |
#authorized_at ⇒ String
Time of authorization.
19 |
# File 'lib/increase/models/proof_of_authorization_request_submission.rb', line 19 required :authorized_at, String |
#authorizer_company ⇒ String
Company of the authorizer.
24 |
# File 'lib/increase/models/proof_of_authorization_request_submission.rb', line 24 required :authorizer_company, String |
#authorizer_email ⇒ String
Email of the authorizer.
29 |
# File 'lib/increase/models/proof_of_authorization_request_submission.rb', line 29 required :authorizer_email, String |
#authorizer_ip_address ⇒ String
IP address of the authorizer.
34 |
# File 'lib/increase/models/proof_of_authorization_request_submission.rb', line 34 required :authorizer_ip_address, String |
#authorizer_name ⇒ String
Name of the authorizer.
39 |
# File 'lib/increase/models/proof_of_authorization_request_submission.rb', line 39 required :authorizer_name, String |
#created_at ⇒ String
The time the Proof of Authorization Request Submission was created.
44 |
# File 'lib/increase/models/proof_of_authorization_request_submission.rb', line 44 required :created_at, String |
#customer_has_been_offboarded ⇒ Boolean
Whether the customer has been offboarded.
49 |
# File 'lib/increase/models/proof_of_authorization_request_submission.rb', line 49 required :customer_has_been_offboarded, Increase::BooleanModel |
#id ⇒ String
The Proof of Authorization Request Submission identifier.
9 |
# File 'lib/increase/models/proof_of_authorization_request_submission.rb', line 9 required :id, String |
#idempotency_key ⇒ String
The idempotency key you chose for this object. This value is unique across Increase and is used to ensure that a request is only processed once. Learn more about idempotency.
54 |
# File 'lib/increase/models/proof_of_authorization_request_submission.rb', line 54 required :idempotency_key, String |
#proof_of_authorization_request_id ⇒ String
ID of the proof of authorization request.
59 |
# File 'lib/increase/models/proof_of_authorization_request_submission.rb', line 59 required :proof_of_authorization_request_id, String |
#status ⇒ Symbol
Status of the proof of authorization request submission.
64 |
# File 'lib/increase/models/proof_of_authorization_request_submission.rb', line 64 required :status, Increase::Enum.new(:pending_review, :rejected, :pending_sending, :sent) |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be proof_of_authorization_request_submission
.
69 |
# File 'lib/increase/models/proof_of_authorization_request_submission.rb', line 69 required :type, Increase::Enum.new(:proof_of_authorization_request_submission) |
#updated_at ⇒ String
The time the Proof of Authorization Request Submission was last updated.
74 |
# File 'lib/increase/models/proof_of_authorization_request_submission.rb', line 74 required :updated_at, String |
#validated_account_ownership_via_credential ⇒ Boolean
Whether account ownership was validated via credential (for instance, Plaid).
79 |
# File 'lib/increase/models/proof_of_authorization_request_submission.rb', line 79 required :validated_account_ownership_via_credential, Increase::BooleanModel |
#validated_account_ownership_with_account_statement ⇒ Boolean
Whether account ownership was validated with an account statement.
84 |
# File 'lib/increase/models/proof_of_authorization_request_submission.rb', line 84 required :validated_account_ownership_with_account_statement, Increase::BooleanModel |
#validated_account_ownership_with_microdeposit ⇒ Boolean
Whether account ownership was validated with microdeposit.
89 |
# File 'lib/increase/models/proof_of_authorization_request_submission.rb', line 89 required :validated_account_ownership_with_microdeposit, Increase::BooleanModel |