Class: Nacha::Record::ThirdIatAddenda
- Includes:
- AddendaRecordType
- Defined in:
- lib/nacha/record/third_iat_addenda.rb
Overview
Represents a third IAT addenda record.
Instance Attribute Summary collapse
-
#addenda_type_code ⇒ String
Specifies this is the third in a series of IAT addenda records with code ‘12’.
-
#entry_detail_sequence_number ⇒ Nacha::Numeric
The sequence number of the IAT Entry Detail record this addenda is associated with.
-
#originator_city_state ⇒ String
The city and state/province of the originator.
-
#originator_country_postal ⇒ String
The country and postal code of the originator.
-
#record_type_code ⇒ String
Identifies the record as an Addenda record with a constant value of ‘7’.
-
#reserved ⇒ String
A reserved field for future use.
Attributes inherited from Base
#children, #fields, #line_number, #name, #original_input_line, #parent, #validations
Method Summary
Methods included from AddendaRecordType
#child_record_types, included, #next_record_types
Methods inherited from Base
#add_error, #create_fields_from_definition, #credit?, #debit?, definition, #definition, #errors, #human_name, #initialize, #inspect, matcher, #method_missing, nacha_field, parse, #record_type, record_type, #respond_to_missing?, #to_ach, #to_h, to_h, #to_html, to_json, #to_json, unpack_str, #valid?, #validate, validations
Methods included from Validations::FieldValidations
Constructor Details
This class inherits a constructor from Nacha::Record::Base
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Nacha::Record::Base
Instance Attribute Details
#addenda_type_code ⇒ String
Returns Specifies this is the third in a series of IAT addenda records with code ‘12’.
22 23 24 25 26 27 28 29 30 31 |
# File 'lib/nacha/record/third_iat_addenda.rb', line 22 class ThirdIatAddenda < Nacha::Record::Base include AddendaRecordType nacha_field :record_type_code, inclusion: 'M', contents: 'C7', position: 1..1 nacha_field :addenda_type_code, inclusion: 'M', contents: 'C12', position: 2..3 nacha_field :originator_city_state, inclusion: 'M', contents: 'Alphameric', position: 4..38 nacha_field :originator_country_postal, inclusion: 'M', contents: 'Alphameric', position: 39..73 nacha_field :reserved, inclusion: 'M', contents: 'C ', position: 74..87 nacha_field :entry_detail_sequence_number, inclusion: 'M', contents: 'Numeric', position: 88..94 end |
#entry_detail_sequence_number ⇒ Nacha::Numeric
Returns The sequence number of the IAT Entry Detail record this addenda is associated with.
22 23 24 25 26 27 28 29 30 31 |
# File 'lib/nacha/record/third_iat_addenda.rb', line 22 class ThirdIatAddenda < Nacha::Record::Base include AddendaRecordType nacha_field :record_type_code, inclusion: 'M', contents: 'C7', position: 1..1 nacha_field :addenda_type_code, inclusion: 'M', contents: 'C12', position: 2..3 nacha_field :originator_city_state, inclusion: 'M', contents: 'Alphameric', position: 4..38 nacha_field :originator_country_postal, inclusion: 'M', contents: 'Alphameric', position: 39..73 nacha_field :reserved, inclusion: 'M', contents: 'C ', position: 74..87 nacha_field :entry_detail_sequence_number, inclusion: 'M', contents: 'Numeric', position: 88..94 end |
#originator_city_state ⇒ String
Returns The city and state/province of the originator.
22 23 24 25 26 27 28 29 30 31 |
# File 'lib/nacha/record/third_iat_addenda.rb', line 22 class ThirdIatAddenda < Nacha::Record::Base include AddendaRecordType nacha_field :record_type_code, inclusion: 'M', contents: 'C7', position: 1..1 nacha_field :addenda_type_code, inclusion: 'M', contents: 'C12', position: 2..3 nacha_field :originator_city_state, inclusion: 'M', contents: 'Alphameric', position: 4..38 nacha_field :originator_country_postal, inclusion: 'M', contents: 'Alphameric', position: 39..73 nacha_field :reserved, inclusion: 'M', contents: 'C ', position: 74..87 nacha_field :entry_detail_sequence_number, inclusion: 'M', contents: 'Numeric', position: 88..94 end |
#originator_country_postal ⇒ String
Returns The country and postal code of the originator.
22 23 24 25 26 27 28 29 30 31 |
# File 'lib/nacha/record/third_iat_addenda.rb', line 22 class ThirdIatAddenda < Nacha::Record::Base include AddendaRecordType nacha_field :record_type_code, inclusion: 'M', contents: 'C7', position: 1..1 nacha_field :addenda_type_code, inclusion: 'M', contents: 'C12', position: 2..3 nacha_field :originator_city_state, inclusion: 'M', contents: 'Alphameric', position: 4..38 nacha_field :originator_country_postal, inclusion: 'M', contents: 'Alphameric', position: 39..73 nacha_field :reserved, inclusion: 'M', contents: 'C ', position: 74..87 nacha_field :entry_detail_sequence_number, inclusion: 'M', contents: 'Numeric', position: 88..94 end |
#record_type_code ⇒ String
Returns Identifies the record as an Addenda record with a constant value of ‘7’.
22 23 24 25 26 27 28 29 30 31 |
# File 'lib/nacha/record/third_iat_addenda.rb', line 22 class ThirdIatAddenda < Nacha::Record::Base include AddendaRecordType nacha_field :record_type_code, inclusion: 'M', contents: 'C7', position: 1..1 nacha_field :addenda_type_code, inclusion: 'M', contents: 'C12', position: 2..3 nacha_field :originator_city_state, inclusion: 'M', contents: 'Alphameric', position: 4..38 nacha_field :originator_country_postal, inclusion: 'M', contents: 'Alphameric', position: 39..73 nacha_field :reserved, inclusion: 'M', contents: 'C ', position: 74..87 nacha_field :entry_detail_sequence_number, inclusion: 'M', contents: 'Numeric', position: 88..94 end |
#reserved ⇒ String
Returns A reserved field for future use.
22 23 24 25 26 27 28 29 30 31 |
# File 'lib/nacha/record/third_iat_addenda.rb', line 22 class ThirdIatAddenda < Nacha::Record::Base include AddendaRecordType nacha_field :record_type_code, inclusion: 'M', contents: 'C7', position: 1..1 nacha_field :addenda_type_code, inclusion: 'M', contents: 'C12', position: 2..3 nacha_field :originator_city_state, inclusion: 'M', contents: 'Alphameric', position: 4..38 nacha_field :originator_country_postal, inclusion: 'M', contents: 'Alphameric', position: 39..73 nacha_field :reserved, inclusion: 'M', contents: 'C ', position: 74..87 nacha_field :entry_detail_sequence_number, inclusion: 'M', contents: 'Numeric', position: 88..94 end |