class NetSuite::Records::LocationsList

Public Class Methods

new(attributes = {}) click to toggle source
# File lib/netsuite/records/locations_list.rb, line 4
def initialize(attributes = {})
  attributes[:locations].each do |location|
    locations << location
  end if attributes[:locations]
end

Public Instance Methods

locations() click to toggle source
# File lib/netsuite/records/locations_list.rb, line 10
def locations
  @locations ||= []
end