Sha256: 1bd29222d7e2026e7452083395964960bfc70e4be8304c8eb9736f51f51be507

Contents?: true

Size: 446 Bytes

Versions: 1

Compression:

Stored size: 446 Bytes

Contents

module Eddy
  module Elements
    # - Id: 111
    # - Name: Pick-up Time
    # - Type: TM (HHMM)
    # - Min/Max: 4/4
    # - Description: Time (HHMM) that the carrier is to pick up the shipment.
    class PickupTime < Eddy::Element::TM
      # @return [void]
      def initialize()
        @id = "111"
        @name = "Pick-up Time"
        @type = "TM"
        self.min = 4
        self.max = 4
        super(:hhmm)
      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/111.tm.pickup_time.rb