thibaultponcelet/decodar

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

Summary

Maintainability
A
0 mins
Test Coverage
module Decodar
  module Record
    class FreeCommunications < Base
      include Helper::Link

      specify_identifier 4

      specify_code :sequence_number, 2..5, :integer
      specify_code :detail_number, 6..9, :integer
      specify_code :communication, 32..111, :string
      specify_code :link_code, 127, :integer
    end
  end
end