Sha256: 07a988c71f9d3a275550a037424cab31197529ac0dfc0efea0e181c91c66d4ad
Contents?: true
Size: 835 Bytes
Versions: 4
Compression:
Stored size: 835 Bytes
Contents
module Eddy module Elements # ### Element Summary: # # - 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 E785 < Eddy::Element::B # @param max [Integer] Value set in preceeding `784` element. # @param val [String] (nil) # @param req [String] (nil) # @param ref [String] (nil) # @return [void] def initialize(max:, val: nil, req: nil, ref: nil) @id = "785" @name = "Binary Data" @description = "A string of octets which can assume any binary pattern from hexadecimal 00 to FF" super( min: 1, max: max, req: req, ref: ref, val: val, ) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems