Sha256: 8db008411c3a1bb9bf50ab7883d9195f20f751d9b1337261f69e98efc2d2794f
Contents?: true
Size: 592 Bytes
Versions: 37
Compression:
Stored size: 592 Bytes
Contents
module NetSuite module Records class CustomerRefundApplyList include Namespaces::TranCust def initialize(attributes = {}) case attributes[:apply] when Hash applies << CustomerRefundApply.new(attributes[:apply]) when Array attributes[:apply].each { |apply| applies << CustomerRefundApply.new(apply) } end end def applies @applies ||= [] end def to_record applies.map do |apply| { "#{record_namespace}:apply" => apply.to_record } end end end end end
Version data entries
37 entries across 37 versions & 1 rubygems