module NetSuiteRails::SubListSync::ClassMethods

some sublists don't have an internal ID at all, from the docs: “…non-keyed sublists contain no referencing keys (or handles)” “…Instead, you must interact with the sublist as a whole. In non-keyed sublists, the replaceAll attribute is ignored and behaves as if it were set to TRUE for all requests. Consequently, an update operation is similar to the add operation with respect to non-keyed sublists.”

Public Instance Methods

netsuite_sublist_parent(parent = nil) click to toggle source
# File lib/netsuite_rails/sub_list_sync.rb, line 21
def netsuite_sublist_parent(parent = nil)
  if parent.nil?
    @netsuite_sublist_parent
  else
    @netsuite_sublist_parent = parent
  end
end