Class: NetSuite::Records::KitItem

Inherits:
Object
  • Object
show all
Includes:
Namespaces::ListAcct, Support::Actions, Support::Fields, Support::RecordRefs, Support::Records
Defined in:
lib/netsuite/records/kit_item.rb

Instance Attribute Summary collapse

Attributes included from Support::Actions

#errors

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Namespaces::ListAcct

#record_namespace

Methods included from Support::Actions

included

Methods included from Support::Records

#record_type, #refresh, #to_attributes!, #to_record

Methods included from Namespaces::PlatformCore

#record_namespace

Methods included from Support::Attributes

#attributes, #attributes=, #initialize_from_attributes_hash

Methods included from Support::RecordRefs

included

Methods included from Support::Fields

included

Constructor Details

#initialize(attributes = {}) ⇒ KitItem

Returns a new instance of KitItem.



60
61
62
63
64
# File 'lib/netsuite/records/kit_item.rb', line 60

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

Instance Attribute Details

#external_idObject

Returns the value of attribute external_id.



58
59
60
# File 'lib/netsuite/records/kit_item.rb', line 58

def external_id
  @external_id
end

#internal_idObject (readonly)

TODO custom records need to be implemented field :accounting_book_detail_list, ItemAccountingBookDetailList field :cost_estimate_type, ItemCostEstimateType field :country_of_manufacture, Country field :create_revenue_plans_on, ItemCreateRevenuePlansOn field :hazmat_packing_group, HazmatPackingGroup field :item_carrier, ItemCarrier field :item_options_list, ItemOptionsList field :item_ship_method_list, RecordRefList field :out_of_stock_behavior, ItemOutOfStockBehavior field :overall_quantity_pricing_type, ItemOverallQuantityPricingType field :preference_criterion, ItemPreferenceCriterion field :presentation_item_list, PresentationItemList field :product_feed_list, ProductFeedList field :site_category_list, SiteCategoryList field :sitemap_priority, SitemapPriority field :translations_list, TranslationList field :vsoe_deferral, VsoeDeferral field :vsoe_permit_discount, VsoePermitDiscount field :vsoe_sop_group, VsoeSopGroup



57
58
59
# File 'lib/netsuite/records/kit_item.rb', line 57

def internal_id
  @internal_id
end

Class Method Details

.search_class_nameObject



66
67
68
# File 'lib/netsuite/records/kit_item.rb', line 66

def self.search_class_name
  "Item"
end