Sha256: bf5d003270e6cdeba3a068a5b603e4a34b9b7ee8f12b7422acb21cafbcfb4754
Contents?: true
Size: 682 Bytes
Versions: 4
Compression:
Stored size: 682 Bytes
Contents
module Eddy module Elements # ### Element Summary: # # - Id: 212 # - Name: Unit Price # - Type: R # - Min/Max: 1/17 # - Description: Price per unit of product, service, commodity, etc. class E212 < Eddy::Element::R # @param val [Float] # @param req [String] # @param ref [String] # @return [void] def initialize(val: nil, req: nil, ref: nil) @id = "212" @name = "Unit Price" @description = "Price per unit of product, service, commodity, etc." super( min: 1, max: 17, req: req, ref: ref, val: val, ) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems