Sha256: b62c2a6c97da92f241e19d60d59572e84d9f3d0114c97a5571348ca3ebb8fb7a

Contents?: true

Size: 742 Bytes

Versions: 4

Compression:

Stored size: 742 Bytes

Contents

module Eddy
  module Elements
    # ### Element Summary:
    #
    # - Id: 784
    # - Name: Length of Binary Data
    # - Type: N0
    # - Min/Max: 1/15
    # - Description: The length in integral octets of the binary data
    class E784 < Eddy::Element::N
      # @param val [Integer] (nil)
      # @param req [String] (nil)
      # @param ref [String] (nil)
      # @return [void]
      def initialize(val: nil, req: nil, ref: nil)
        @id = "784"
        @name = "Length of Binary Data"
        @description = "The length in integral octets of the binary data"
        super(
          min: 1,
          max: 15,
          req: req,
          ref: ref,
          val: val,
          decimals: 0,
        )
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
eddy-0.5.1 lib/definitions/elements/manual/784.length_of_binary_data.rb
eddy-0.5.0 lib/definitions/elements/manual/784.length_of_binary_data.rb
eddy-0.4.0 lib/definitions/elements/manual/784.length_of_binary_data.rb
eddy-0.3.0 lib/definitions/elements/manual/784.length_of_binary_data.rb