Sha256: 90d7ae7ce7eb277b42d1d3df65181b8cb84b76a0c2261c6b2bc7c0c9749db4e6

Contents?: true

Size: 1.16 KB

Versions: 1

Compression:

Stored size: 1.16 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_deleted, :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

1 entries across 1 versions & 1 rubygems

Version Path
netsuite-0.8.12 lib/netsuite/records/payment_item.rb