Sha256: 3542a35365d6433c59e4b68e4a609a8a437625fa0f2afd329d2ed818ed36f1c9

Contents?: true

Size: 470 Bytes

Versions: 1

Compression:

Stored size: 470 Bytes

Contents

module Eddy
  module Elements
    # - Id: 785
    # - Name: Binary Data
    # - Type: B
    # - Min/Max: 1/?
    # - Description: A string of octets which can assume any binary pattern from hexadecimal 00 to FF
    class BinaryData < Eddy::Element::B
      # @return [void]
      def initialize()
        self.id = "785"
        self.name = "Binary Data"
        self.type = "B"
        self.min = 1
        self.max = 10_000_000_000_000_000
      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/785.b.binary_data.rb