Sha256: 0f0dcc3197ccf24255146c39ca45c07f1f171a0f4765e7d2383418d5a8d2f8f6
Contents?: true
Size: 670 Bytes
Versions: 4
Compression:
Stored size: 670 Bytes
Contents
module Eddy module Elements # ### Element Summary: # # - Id: 646 # - Name: Quantity Shipped to Date # - Type: R # - Min/Max: 1/15 # - Description: Number of units shipped to date class E646 < Eddy::Element::R # @param val [Float] # @param req [String] # @param ref [String] # @return [void] def initialize(val: nil, req: nil, ref: nil) @id = "646" @name = "Quantity Shipped to Date" @description = "Number of units shipped to date" super( min: 1, max: 15, req: req, ref: ref, val: val, ) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems