Sha256: 9c5d86ec2cdfb48672593b8b724dd9cb3678257bb18babaf773970d4af9c79e2
Contents?: true
Size: 750 Bytes
Versions: 11
Compression:
Stored size: 750 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::Models::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
11 entries across 11 versions & 1 rubygems