Sha256: c48100ee514a152b0f208286b20b5973ee9b72bbfa1ec8c722864d7b38e5dc91

Contents?: true

Size: 480 Bytes

Versions: 2

Compression:

Stored size: 480 Bytes

Contents

module Xeroizer
  module Record

    class BatchPaymentModel < BaseModel
      set_permissions :read
    end

    class BatchPayment < Base
      guid    :batch_payment_id
      string  :reference
      string  :details
      date    :date
      string  :type
      string  :status
      decimal :total_amount
      boolean :is_reconciled

      datetime_utc :updated_date_utc, :api_name => 'UpdatedDateUTC'

      belongs_to :account
      has_many   :payments
    end
  end
end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
xeroizer-3-pre-beta-3.0.0.pre.beta lib/xeroizer/models/batch_payment.rb
xeroizer-2.20.0 lib/xeroizer/models/batch_payment.rb