Module: Increase::Models::DocumentListParams::Category::In
- Extended by:
- Internal::Type::Enum
- Defined in:
- lib/increase/models/document_list_params.rb
Constant Summary collapse
- FORM_1099_INT =
Internal Revenue Service Form 1099-INT.
:form_1099_int- FORM_1099_MISC =
Internal Revenue Service Form 1099-MISC.
:form_1099_misc- PROOF_OF_AUTHORIZATION =
A document submitted in response to a proof of authorization request for an ACH transfer.
:proof_of_authorization- COMPANY_INFORMATION =
Company information, such a policies or procedures, typically submitted during our due diligence process.
:company_information- ACCOUNT_VERIFICATION_LETTER =
An account verification letter.
:account_verification_letter- FUNDING_INSTRUCTIONS =
Funding instructions.
:funding_instructions
Instance Method Summary collapse
-
#initialize(in_: nil) ⇒ Object
Some parameter documentations has been truncated, see Increase::Models::DocumentListParams::Category 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
Instance Method Details
#initialize(in_: nil) ⇒ Object
Some parameter documentations has been truncated, see Increase::Models::DocumentListParams::Category for more details.
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 |
# File 'lib/increase/models/document_list_params.rb', line 83 module In extend Increase::Internal::Type::Enum # Internal Revenue Service Form 1099-INT. FORM_1099_INT = :form_1099_int # Internal Revenue Service Form 1099-MISC. FORM_1099_MISC = :form_1099_misc # A document submitted in response to a proof of authorization request for an ACH transfer. PROOF_OF_AUTHORIZATION = :proof_of_authorization # Company information, such a policies or procedures, typically submitted during our due diligence process. COMPANY_INFORMATION = :company_information # An account verification letter. ACCOUNT_VERIFICATION_LETTER = :account_verification_letter # Funding instructions. FUNDING_INSTRUCTIONS = :funding_instructions # @!method self.values # @return [Array<Symbol>] end |