Sha256: 20de549d62d2b9d23a2d667aa367e4e6875bbc431884016b5d958f21b056a8cb
Contents?: true
Size: 818 Bytes
Versions: 33
Compression:
Stored size: 818 Bytes
Contents
module NetSuite module Records class Location include Support::Fields include Support::RecordRefs include Support::Actions actions :get fields :addr1, :addr2, :addr3, :addr_phone, :addr_text, :addressee, :attention, :city, :country, :include_children, :is_inactive, :make_inventory_available, :make_inventory_available_store, :name, :override, :state, :tran_prefix, :zip record_refs :logo, :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
33 entries across 33 versions & 1 rubygems