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