Sha256: d009e0d673d432f0eb2531b11d4c42e431f43ca3399b4a6fb2f6dc7e83f663c6
Contents?: true
Size: 890 Bytes
Versions: 4
Compression:
Stored size: 890 Bytes
Contents
module Eddy module Elements # ### Element Summary: # # - Id: 338 # - Name: Terms Discount Percent # - Type: R # - Min/Max: 1/6 # - Description: Terms discount percentage, expressed as a percent, available to the purchaser if an invoice is paid on or before the Terms Discount Due Date class E338 < Eddy::Models::Element::R # @param val [Float] # @param req [String] # @param ref [String] # @return [void] def initialize(val: nil, req: nil, ref: nil) @id = "338" @name = "Terms Discount Percent" @description = "Terms discount percentage, expressed as a percent, available to the purchaser if an invoice is paid on or before the Terms Discount Due Date" super( min: 1, max: 6, req: req, ref: ref, val: val, ) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems