Class: Increase::Models::InboundMailItem::Check
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Increase::Models::InboundMailItem::Check
- Defined in:
- lib/increase/models/inbound_mail_item.rb
Instance Attribute Summary collapse
-
#amount ⇒ Integer
The amount of the check.
-
#back_file_id ⇒ String?
The identifier for the File containing the back of the check.
-
#front_file_id ⇒ String?
The identifier for the File containing the front of the check.
Instance Method Summary collapse
-
#initialize(id: , checks: , created_at: , file_id: , lockbox_id: , recipient_name: , rejection_reason: , status: , type: ) ⇒ Object
constructor
Some parameter documentations has been truncated, see Increase::Models::InboundMailItem for more details.
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(id: , checks: , created_at: , file_id: , lockbox_id: , recipient_name: , rejection_reason: , status: , type: ) ⇒ Object
Some parameter documentations has been truncated, see Increase::Models::InboundMailItem for more details.
Inbound Mail Items represent pieces of physical mail delivered to a Lockbox.
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 |
# File 'lib/increase/models/inbound_mail_item.rb', line 88 class Check < Increase::Internal::Type::BaseModel # @!attribute amount # The amount of the check. # # @return [Integer] required :amount, Integer # @!attribute back_file_id # The identifier for the File containing the back of the check. # # @return [String, nil] required :back_file_id, String, nil?: true # @!attribute front_file_id # The identifier for the File containing the front of the check. # # @return [String, nil] required :front_file_id, String, nil?: true # @!method initialize(amount:, back_file_id:, front_file_id:) # Inbound Mail Item Checks represent the checks in an Inbound Mail Item. # # @param amount [Integer] The amount of the check. # # @param back_file_id [String, nil] The identifier for the File containing the back of the check. # # @param front_file_id [String, nil] The identifier for the File containing the front of the check. end |
Instance Attribute Details
#amount ⇒ Integer
The amount of the check.
93 |
# File 'lib/increase/models/inbound_mail_item.rb', line 93 required :amount, Integer |
#back_file_id ⇒ String?
The identifier for the File containing the back of the check.
99 |
# File 'lib/increase/models/inbound_mail_item.rb', line 99 required :back_file_id, String, nil?: true |
#front_file_id ⇒ String?
The identifier for the File containing the front of the check.
105 |
# File 'lib/increase/models/inbound_mail_item.rb', line 105 required :front_file_id, String, nil?: true |