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