Sha256: f7c824c8d0ab1e574b7eecb79dcf2d53eab1b3a8f2638c2bbdad9d5c4989fb98
Contents?: true
Size: 639 Bytes
Versions: 4
Compression:
Stored size: 639 Bytes
Contents
module Eddy module Elements # ### Element Summary: # # - Id: 166 # - Name: Address Information # - Type: AN # - Min/Max: 1/55 # - Description: Address information class E166 < Eddy::Element::AN # @param val [String] # @param req [String] # @param ref [String] # @return [void] def initialize(val: nil, req: nil, ref: nil) @id = "166" @name = "Address Information" @description = "Address information" super( min: 1, max: 55, req: req, ref: ref, val: val, ) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems