Sha256: 99b865f5d460e72792a1b0552d2a430af6d443c53ed6e54a7051b9dc0957bda2
Contents?: true
Size: 712 Bytes
Versions: 61
Compression:
Stored size: 712 Bytes
Contents
module NetSuite module Records class Department include Support::Fields include Support::RecordRefs include Support::Actions include Namespaces::ListAcct actions :get, :get_list, :get_select_value, :add, :delete, :upsert, :search, :update fields :name, :is_inactive record_refs :parent 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