Class: NetSuite::Records::TransferOrderItem
- Inherits:
-
Object
- Object
- NetSuite::Records::TransferOrderItem
- Defined in:
- lib/netsuite/records/transfer_order_item.rb
Instance Method Summary collapse
-
#initialize(attributes_or_record = {}) ⇒ TransferOrderItem
constructor
A new instance of TransferOrderItem.
- #initialize_from_record(record) ⇒ Object
- #to_record ⇒ Object
Methods included from Namespaces::TranInvt
Methods included from Support::Records
#record_type, #refresh, #to_attributes!
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_or_record = {}) ⇒ TransferOrderItem
Returns a new instance of TransferOrderItem.
21 22 23 24 25 26 27 28 |
# File 'lib/netsuite/records/transfer_order_item.rb', line 21 def initialize(attributes_or_record = {}) case attributes_or_record when Hash initialize_from_attributes_hash(attributes_or_record) when self.class initialize_from_record(attributes_or_record) end end |
Instance Method Details
#initialize_from_record(record) ⇒ Object
30 31 32 |
# File 'lib/netsuite/records/transfer_order_item.rb', line 30 def initialize_from_record(record) self.attributes = record.send(:attributes) end |
#to_record ⇒ Object
34 35 36 37 38 39 40 |
# File 'lib/netsuite/records/transfer_order_item.rb', line 34 def to_record rec = super if rec["#{record_namespace}:customFieldList"] rec["#{record_namespace}:customFieldList!"] = rec.delete("#{record_namespace}:customFieldList") end rec end |