class NetSuite::Records::TaxGroup
Attributes
external_id[RW]
internal_id[R]
TODO tax_item_list subsidiary_list
Public Class Methods
new(attributes = {})
click to toggle source
# File lib/netsuite/records/tax_group.rb, line 27 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