Class: NetSuite::Records::KitItem
- Inherits:
-
Object
- Object
- NetSuite::Records::KitItem
- Includes:
- Namespaces::ListAcct, Support::Actions, Support::Fields, Support::RecordRefs, Support::Records
- Defined in:
- lib/netsuite/records/kit_item.rb
Instance Attribute Summary collapse
-
#external_id ⇒ Object
Returns the value of attribute external_id.
-
#internal_id ⇒ Object
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.
Attributes included from Support::Actions
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(attributes = {}) ⇒ KitItem
constructor
A new instance of KitItem.
Methods included from Namespaces::ListAcct
Methods included from Support::Actions
Methods included from Support::Records
#record_type, #refresh, #to_attributes!, #to_record
Methods included from Namespaces::PlatformCore
Methods included from Support::Attributes
#attributes, #attributes=, #initialize_from_attributes_hash
Methods included from Support::RecordRefs
Methods included from Support::Fields
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_id ⇒ Object
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_id ⇒ Object (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_name ⇒ Object
66 67 68 |
# File 'lib/netsuite/records/kit_item.rb', line 66 def self.search_class_name "Item" end |