thibaultponcelet/decodar

View on GitHub
lib/decodar/lexer/records/information3.rb

Summary

Maintainability
A
15 mins
Test Coverage
module Decodar
  module Record
    class Information3 < Information
      specify_identifier 3, 3
      specify_code :sequence_number, 2..5, :integer
      specify_code :detail_number, 6..9, :integer
      specify_code :raw_communication, 10..99, :string
      specify_code :next_code, 125, :integer
      specify_code :link_code, 127, :integer
    end
  end
end