Class: NetSuite::Records::DepositOtherList

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

Instance Method Summary collapse

Methods included from Namespaces::TranBank

#record_namespace

Methods included from Support::Fields

included

Methods included from Support::Attributes

#attributes, #attributes=, #initialize_from_attributes_hash

Constructor Details

#initialize(attributes = {}) ⇒ DepositOtherList

Returns a new instance of DepositOtherList.



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

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

Instance Method Details

#other=(others) ⇒ Object



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

def other=(others)
  case others
  when Hash
    self.others << DepositOther.new(others)
  when Array
    others.each { |cb| self.others << DepositOther.new(cb) }
  end
end

#othersObject



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

def others
  @others ||= []
end

#to_recordObject



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

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