Sha256: bb7074c090e6796b247918e82e5b2a3f38c9d2e98370202a29a6631dbf813816
Contents?: true
Size: 685 Bytes
Versions: 4
Compression:
Stored size: 685 Bytes
Contents
module Eddy module Elements # ### Element Summary: # # - Id: 234 # - Name: Product/Service ID # - Type: AN # - Min/Max: 1/48 # - Description: Identifying number for a product or service class E234 < Eddy::Element::AN # @param val [String] # @param req [String] # @param ref [String] # @return [void] def initialize(val: nil, req: nil, ref: nil) @id = "234" @name = "Product/Service ID" @description = "Identifying number for a product or service" super( min: 1, max: 48, req: req, ref: ref, val: val, ) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems