Sha256: dc86ae6b4ef8bc7cd5da2a5c92bd856c55952525d2d807756553ed5f48bf745c

Contents?: true

Size: 1.15 KB

Versions: 23

Compression:

Stored size: 1.15 KB

Contents

module NetSuite
  module Records
    class PaymentItem
      include Support::Fields
      include Support::RecordRefs
      include Support::Records
      include Support::Actions
      include Namespaces::ListAcct

      actions :get, :get_list, :add, :delete, :search, :update, :upsert

      fields :available_to_partners, :created_date, :description, :display_name, :include_children, :is_inactive, :item_id, :last_modified_date, :undep_funds

      record_refs :account, :custom_form, :department, :issue_product, :klass, :location, :payment_method

      field :custom_field_list, CustomFieldList
      field :subsidiary_list, RecordRefList
      
      # TODO custom records need to be implemented
      # field :translations_list, TranslationList

      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

      def self.search_class_name
        "Item"
      end
    end
  end
end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
netsuite-0.8.10 lib/netsuite/records/payment_item.rb
netsuite-0.8.9 lib/netsuite/records/payment_item.rb
netsuite-0.8.8 lib/netsuite/records/payment_item.rb
netsuite-0.8.7 lib/netsuite/records/payment_item.rb
netsuite-0.8.6 lib/netsuite/records/payment_item.rb
netsuite-0.8.5 lib/netsuite/records/payment_item.rb
netsuite-0.8.4 lib/netsuite/records/payment_item.rb
netsuite-0.8.3 lib/netsuite/records/payment_item.rb
netsuite-0.8.2 lib/netsuite/records/payment_item.rb
netsuite-0.8.1 lib/netsuite/records/payment_item.rb
netsuite-0.8.0 lib/netsuite/records/payment_item.rb
netsuite-0.7.9 lib/netsuite/records/payment_item.rb
netsuite-0.7.8 lib/netsuite/records/payment_item.rb
netsuite-0.7.7 lib/netsuite/records/payment_item.rb
netsuite-0.7.6 lib/netsuite/records/payment_item.rb
netsuite-0.7.5 lib/netsuite/records/payment_item.rb
netsuite-0.7.4 lib/netsuite/records/payment_item.rb
netsuite-0.7.3 lib/netsuite/records/payment_item.rb
netsuite-0.7.2 lib/netsuite/records/payment_item.rb
netsuite-0.7.1 lib/netsuite/records/payment_item.rb