Sha256: b83b095ec83ff4a184a0e6f53617cab8150d765a6c6dcd5fbacf458181f7835b
Contents?: true
Size: 696 Bytes
Versions: 61
Compression:
Stored size: 696 Bytes
Contents
module NetSuite module Records class UnitsType include Support::Fields include Support::Records include Support::Actions include Namespaces::ListAcct actions :get, :get_list, :add, :update, :upsert, :delete, :search fields :is_inactive, :name field :uom_list, UnitsTypeUomList attr_reader :internal_id attr_accessor :external_id 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 end end end
Version data entries
61 entries across 61 versions & 1 rubygems