Sha256: 8a25ff4212027d8159bd0e66f35f7a32a365a45a5357dd937e87b6e90adfc821
Contents?: true
Size: 735 Bytes
Versions: 27
Compression:
Stored size: 735 Bytes
Contents
module NetSuite module Records class NoteType include Support::Records include Support::Fields include Support::Actions include Namespaces::ListAcct # https://system.netsuite.com/help/helpcenter/en_US/srbrowser/Browser2016_1/schema/record/notetype.html actions :get, :search fields :name, :description, :is_inactive 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
27 entries across 27 versions & 1 rubygems