Module: Increase::Models::FileListParams::Purpose::In
- Extended by:
- Internal::Type::Enum
- Defined in:
- lib/increase/models/file_list_params.rb
Constant Summary collapse
- CARD_DISPUTE_ATTACHMENT =
A file to be attached to a Card Dispute.
:card_dispute_attachment- CHECK_IMAGE_FRONT =
An image of the front of a check, used for check deposits.
:check_image_front- CHECK_IMAGE_BACK =
An image of the back of a check, used for check deposits.
:check_image_back- PROCESSED_CHECK_IMAGE_FRONT =
An image of the front of a deposited check after processing by Increase and submission to the Federal Reserve.
:processed_check_image_front- PROCESSED_CHECK_IMAGE_BACK =
An image of the back of a deposited check after processing by Increase and submission to the Federal Reserve.
:processed_check_image_back- MAILED_CHECK_IMAGE =
An image of a check that was mailed to a recipient.
:mailed_check_image- CHECK_ATTACHMENT =
A document to be printed on an additional page and mailed with a check that you’ve requested Increase print.
:check_attachment- CHECK_VOUCHER_IMAGE =
An image to be used as the check voucher image, which is printed in the middle of the trifold area of a check. This must be a 2550x1100 pixel PNG.
:check_voucher_image- INBOUND_MAIL_ITEM =
A scanned mail item sent to Increase.
:inbound_mail_item- FORM_1099_INT =
IRS Form 1099-INT.
:form_1099_int- FORM_1099_MISC =
IRS Form 1099-MISC.
:form_1099_misc- FORM_SS_4 =
IRS Form SS-4.
:form_ss_4- IDENTITY_DOCUMENT =
An image of a government-issued ID.
:identity_document- INCREASE_STATEMENT =
A statement generated by Increase.
:increase_statement- LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT =
A supplemental document for a Loan Application.
:loan_application_supplemental_document- OTHER =
A file purpose not covered by any of the other cases.
:other- TRUST_FORMATION_DOCUMENT =
A legal document forming a trust.
:trust_formation_document- DIGITAL_WALLET_ARTWORK =
A card image to be rendered inside digital wallet apps. This must be a 1536x969 pixel PNG.
:digital_wallet_artwork- DIGITAL_WALLET_APP_ICON =
An icon for you app to be rendered inside digital wallet apps. This must be a 100x100 pixel PNG.
:digital_wallet_app_icon- PHYSICAL_CARD_FRONT =
A card image to be printed on the front of a physical card. This must be a 2100x1344 pixel PNG with no other color but black.
:physical_card_front- PHYSICAL_CARD_BACK =
The image to be printed on the back of a physical card.
:physical_card_back- PHYSICAL_CARD_CARRIER =
An image representing the entirety of the carrier used for a physical card. This must be a 2550x3300 pixel PNG with no other color but black.
:physical_card_carrier- DOCUMENT_REQUEST =
A document requested by Increase.
:document_request- ENTITY_SUPPLEMENTAL_DOCUMENT =
A supplemental document associated an an Entity.
:entity_supplemental_document- EXPORT =
The results of an Export you requested via the dashboard or API.
:export- UNUSUAL_ACTIVITY_REPORT_ATTACHMENT =
An attachment to an Unusual Activity Report.
:unusual_activity_report_attachment- DEPOSIT_ACCOUNT_CONTROL_AGREEMENT =
A document granting another entity access to the funds into your account.
:deposit_account_control_agreement- PROOF_OF_AUTHORIZATION_REQUEST_SUBMISSION =
A file containing additional evidence for a Proof of Authorization Request Submission.
:proof_of_authorization_request_submission- ACCOUNT_VERIFICATION_LETTER =
An account verification letter.
:account_verification_letter- FUNDING_INSTRUCTIONS =
Funding instructions.
:funding_instructions- HOLD_HARMLESS_LETTER =
A Hold Harmless Letter.
:hold_harmless_letter
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(in_: nil) ⇒ Object
Some parameter documentations has been truncated, see Increase::Models::FileListParams::Purpose for more details.
Methods included from Internal::Type::Enum
==, ===, coerce, dump, hash, inspect, to_sorbet_type, values
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, inspect, #inspect, meta_info, new_coerce_state, type_info
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/increase/models/file_list_params.rb', line 212
|
Instance Method Details
#initialize(in_: nil) ⇒ Object
Some parameter documentations has been truncated, see Increase::Models::FileListParams::Purpose for more details.
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 |
# File 'lib/increase/models/file_list_params.rb', line 116 module In extend Increase::Internal::Type::Enum # A file to be attached to a Card Dispute. CARD_DISPUTE_ATTACHMENT = :card_dispute_attachment # An image of the front of a check, used for check deposits. CHECK_IMAGE_FRONT = :check_image_front # An image of the back of a check, used for check deposits. CHECK_IMAGE_BACK = :check_image_back # An image of the front of a deposited check after processing by Increase and submission to the Federal Reserve. PROCESSED_CHECK_IMAGE_FRONT = :processed_check_image_front # An image of the back of a deposited check after processing by Increase and submission to the Federal Reserve. PROCESSED_CHECK_IMAGE_BACK = :processed_check_image_back # An image of a check that was mailed to a recipient. MAILED_CHECK_IMAGE = :mailed_check_image # A document to be printed on an additional page and mailed with a check that you've requested Increase print. CHECK_ATTACHMENT = :check_attachment # An image to be used as the check voucher image, which is printed in the middle of the trifold area of a check. This must be a 2550x1100 pixel PNG. CHECK_VOUCHER_IMAGE = :check_voucher_image # A scanned mail item sent to Increase. INBOUND_MAIL_ITEM = :inbound_mail_item # IRS Form 1099-INT. FORM_1099_INT = :form_1099_int # IRS Form 1099-MISC. FORM_1099_MISC = :form_1099_misc # IRS Form SS-4. FORM_SS_4 = :form_ss_4 # An image of a government-issued ID. IDENTITY_DOCUMENT = :identity_document # A statement generated by Increase. INCREASE_STATEMENT = :increase_statement # A supplemental document for a Loan Application. LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT = :loan_application_supplemental_document # A file purpose not covered by any of the other cases. OTHER = :other # A legal document forming a trust. TRUST_FORMATION_DOCUMENT = :trust_formation_document # A card image to be rendered inside digital wallet apps. This must be a 1536x969 pixel PNG. DIGITAL_WALLET_ARTWORK = :digital_wallet_artwork # An icon for you app to be rendered inside digital wallet apps. This must be a 100x100 pixel PNG. DIGITAL_WALLET_APP_ICON = :digital_wallet_app_icon # A card image to be printed on the front of a physical card. This must be a 2100x1344 pixel PNG with no other color but black. PHYSICAL_CARD_FRONT = :physical_card_front # The image to be printed on the back of a physical card. PHYSICAL_CARD_BACK = :physical_card_back # An image representing the entirety of the carrier used for a physical card. This must be a 2550x3300 pixel PNG with no other color but black. PHYSICAL_CARD_CARRIER = :physical_card_carrier # A document requested by Increase. DOCUMENT_REQUEST = :document_request # A supplemental document associated an an Entity. ENTITY_SUPPLEMENTAL_DOCUMENT = :entity_supplemental_document # The results of an Export you requested via the dashboard or API. EXPORT = :export # An attachment to an Unusual Activity Report. UNUSUAL_ACTIVITY_REPORT_ATTACHMENT = :unusual_activity_report_attachment # A document granting another entity access to the funds into your account. DEPOSIT_ACCOUNT_CONTROL_AGREEMENT = :deposit_account_control_agreement # A file containing additional evidence for a Proof of Authorization Request Submission. PROOF_OF_AUTHORIZATION_REQUEST_SUBMISSION = :proof_of_authorization_request_submission # An account verification letter. ACCOUNT_VERIFICATION_LETTER = :account_verification_letter # Funding instructions. FUNDING_INSTRUCTIONS = :funding_instructions # A Hold Harmless Letter. HOLD_HARMLESS_LETTER = :hold_harmless_letter # @!method self.values # @return [Array<Symbol>] end |