Sha256: a2271f76d26ad30da7b38586336501ad9e59a6d15aa51d5b8e84db8719c76b1a
Contents?: true
Size: 684 Bytes
Versions: 11
Compression:
Stored size: 684 Bytes
Contents
module Eddy module Elements # ### Element Summary: # # - Id: 358 # - Name: Quantity Invoiced # - Type: R # - Min/Max: 1/10 # - Description: Number of units invoiced (supplier units) class E358 < Eddy::Models::Element::R # @param val [Float] # @param req [String] # @param ref [String] # @return [void] def initialize(val: nil, req: nil, ref: nil) @id = "358" @name = "Quantity Invoiced" @description = "Number of units invoiced (supplier units)" super( min: 1, max: 10, req: req, ref: ref, val: val, ) end end end end
Version data entries
11 entries across 11 versions & 1 rubygems