Sha256: b30b3c78fb09e188015e1b1e111c0409947d5f3a5fc4e265d1bbefcc1d6dc2f7
Contents?: true
Size: 606 Bytes
Versions: 61
Compression:
Stored size: 606 Bytes
Contents
module NetSuite module Records class CustomField include Support::Fields include Support::Records attr_reader :internal_id, :script_id attr_accessor :type def initialize(attributes = {}) @script_id = attributes.delete(:script_id) || attributes.delete(:@script_id) @internal_id = attributes.delete(:internal_id) || attributes.delete(:@internal_id) @type = attributes.delete(:type) || attributes.delete(:"@xsi:type") self.attributes = attributes end def value attributes[:value] end end end end
Version data entries
61 entries across 61 versions & 1 rubygems