Class: NetSuite::Records::VendorPaymentApplyList

Inherits:
Object
  • Object
show all
Includes:
Namespaces::TranPurch, Support::Fields
Defined in:
lib/netsuite/records/vendor_payment_apply_list.rb

Instance Method Summary collapse

Methods included from Namespaces::TranPurch

#record_namespace

Methods included from Support::Fields

included

Methods included from Support::Attributes

#attributes, #attributes=, #initialize_from_attributes_hash

Constructor Details

#initialize(attributes = {}) ⇒ VendorPaymentApplyList

Returns a new instance of VendorPaymentApplyList.



9
10
11
# File 'lib/netsuite/records/vendor_payment_apply_list.rb', line 9

def initialize(attributes = {})
  initialize_from_attributes_hash(attributes)
end

Instance Method Details

#appliesObject



22
23
24
# File 'lib/netsuite/records/vendor_payment_apply_list.rb', line 22

def applies
  @applies ||= []
end

#apply=(applies) ⇒ Object



13
14
15
16
17
18
19
20
# File 'lib/netsuite/records/vendor_payment_apply_list.rb', line 13

def apply=(applies)
  case applies
    when Hash
      @applies = [VendorPaymentApply.new(applies)]
    when Array
      @applies = applies.map { |apply| VendorPaymentApply.new(apply) }
  end
end

#to_recordObject



26
27
28
# File 'lib/netsuite/records/vendor_payment_apply_list.rb', line 26

def to_record
  { "#{record_namespace}:apply" => applies.map(&:to_record) }
end