Sha256: ba3cb3e8f15c36d8ab0d72f31e0f1bb8c38fc75d9a3a5ab98c9fd04879a58d81
Contents?: true
Size: 701 Bytes
Versions: 35
Compression:
Stored size: 701 Bytes
Contents
module NetSuite module Records class CustomListCustomValue include Support::Records include Support::Fields include Namespaces::SetupCustom # https://system.netsuite.com/help/helpcenter/en_US/srbrowser/Browser2014_1/schema/other/customlistcustomvalue.html?mode=package fields :abbreviation, :value, :value_id, :is_inactive # field valueLanguageValueList 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
35 entries across 35 versions & 1 rubygems