Sha256: ba6baeea408790f3172b0f2a97f80aeb5d80603806da7db7b7bd13be0af8d5af
Contents?: true
Size: 799 Bytes
Versions: 13
Compression:
Stored size: 799 Bytes
Contents
module NetSuite module Records class SalesRole include Support::Records include Support::Fields include Support::Actions include Support::RecordRefs include Namespaces::ListEmp # https://system.netsuite.com/help/helpcenter/en_US/srbrowser/Browser2017_1/script/record/sales_role.html actions :get, :get_list, :add, :update, :upsert, :upsert_list, :delete, :search fields :name 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
13 entries across 13 versions & 1 rubygems