class NetSuite::Records::SerializedInventoryItem
Attributes
external_id[RW]
internal_id[R]
TODO from standard copied item record; may need to be deleted field :pricing_matrix, PricingMatrix
field :bin_number_list, BinNumberList
field :item_vendor_list, ItemVendorList
field :matrix_option_list, MatrixOptionList
Public Class Methods
new(attributes = {})
click to toggle source
# File lib/netsuite/records/serialized_inventory_item.rb, line 237 def initialize(attributes = {}) @internal_id = attributes.delete(:internal_id) || attributes.delete(:@internal_id) @external_id = attributes.delete(:external_id) || attributes.delete(:@external_id) initialize_from_attributes_hash(attributes) end
search_class_name()
click to toggle source
# File lib/netsuite/records/serialized_inventory_item.rb, line 243 def self.search_class_name "Item" end