Sha256: 8d885fb49c601e13c4c4ee21f8f6b9f4097a22a9bdfe33be30ef73aa8308126c
Contents?: true
Size: 844 Bytes
Versions: 13
Compression:
Stored size: 844 Bytes
Contents
module NetSuite module Records class PaymentMethod include Support::Fields include Support::RecordRefs include Support::Actions include Namespaces::ListAcct actions :add, :delete, :get, :get_list, :search, :update, :upsert, :upsert_list fields :credit_card, :express_checkout_arrangement, :is_debit_card, :is_inactive, :is_online, :name, :pay_pal_email_address, :undep_funds, :use_express_checkout record_ref :account 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
13 entries across 13 versions & 1 rubygems