Sha256: dd9344be8e72e0b90a8b4e6a27d7cd4ff7e4e078895406bfacacbe16d67a2c2b

Contents?: true

Size: 723 Bytes

Versions: 61

Compression:

Stored size: 723 Bytes

Contents

module NetSuite
  module Records
    class BillingScheduleRecurrence
      include Support::Fields
      include Support::RecordRefs
      include Support::Records
      include Namespaces::ListAcct

      fields :amount, :count, :recurrence_date, :recurrence_id,
        :relative_to_previous, :units

      record_refs :payment_terms

      def initialize(attributes_or_record = {})
        case attributes_or_record
        when Hash
          initialize_from_attributes_hash(attributes_or_record)
        when self.class
          initialize_from_record(attributes_or_record)
        end
      end

      def initialize_from_record(record)
        self.attributes = record.send(:attributes)
      end
    end
  end
end

Version data entries

61 entries across 61 versions & 1 rubygems

Version Path
netsuite-0.9.3 lib/netsuite/records/billing_schedule_recurrence.rb
netsuite-0.9.2 lib/netsuite/records/billing_schedule_recurrence.rb
netsuite-0.9.1 lib/netsuite/records/billing_schedule_recurrence.rb
netsuite-0.9.0 lib/netsuite/records/billing_schedule_recurrence.rb
netsuite-0.8.12 lib/netsuite/records/billing_schedule_recurrence.rb
netsuite-0.8.11 lib/netsuite/records/billing_schedule_recurrence.rb
netsuite-0.8.10 lib/netsuite/records/billing_schedule_recurrence.rb
netsuite-0.8.9 lib/netsuite/records/billing_schedule_recurrence.rb
netsuite-0.8.8 lib/netsuite/records/billing_schedule_recurrence.rb
netsuite-0.8.7 lib/netsuite/records/billing_schedule_recurrence.rb
netsuite-0.8.6 lib/netsuite/records/billing_schedule_recurrence.rb
netsuite-0.8.5 lib/netsuite/records/billing_schedule_recurrence.rb
netsuite-0.8.4 lib/netsuite/records/billing_schedule_recurrence.rb
netsuite-0.8.3 lib/netsuite/records/billing_schedule_recurrence.rb
netsuite-0.8.2 lib/netsuite/records/billing_schedule_recurrence.rb
netsuite-0.8.1 lib/netsuite/records/billing_schedule_recurrence.rb
netsuite-0.8.0 lib/netsuite/records/billing_schedule_recurrence.rb
netsuite-0.7.9 lib/netsuite/records/billing_schedule_recurrence.rb
netsuite-0.7.8 lib/netsuite/records/billing_schedule_recurrence.rb
netsuite-0.7.7 lib/netsuite/records/billing_schedule_recurrence.rb