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