Sha256: 133e597abe030f7cdf3e28f3f44198b0be5e254e8bdc72b7ae3c7eafa5251c47
Contents?: true
Size: 676 Bytes
Versions: 4
Compression:
Stored size: 676 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::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
4 entries across 4 versions & 1 rubygems