Sha256: af832df5a0845e412204d8c2e7b82325c06d7619e5388a15d73090f620ae27e9

Contents?: true

Size: 444 Bytes

Versions: 1

Compression:

Stored size: 444 Bytes

Contents

module Eddy
  module Elements
    # - Id: I08
    # - Name: Interchange Date
    # - Type: DT (YYMMDD)
    # - Min/Max: 6/6
    # - Description: Date of the interchange
    class InterchangeDate < Eddy::Element::DT
      # @return [void]
      def initialize()
        @id = "I08"
        @name = "Interchange Date"
        @type = "DT"
        self.min = 6
        self.max = 6
        super(:yymmdd, Time.now.utc)
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
eddy-0.1.0 lib/eddy/definitions/manual/elements/I08.interchange_date.rb