Sha256: ac99b2b1664a4404c38136eb82e83ac717bac5ff2f41b10c3611c1209f18b31e

Contents?: true

Size: 1.17 KB

Versions: 5

Compression:

Stored size: 1.17 KB

Contents

require_relative 'models/model_base'
require_relative 'utils/requestor'

module CorePro
  class Transfer < Models::ModelBase

    attr_accessor :customerId
    attr_accessor :fromId
    attr_accessor :toId
    attr_accessor :amount
    attr_accessor :tag
    attr_accessor :transactionId

    def self.create(customerId, fromId, toId, amount, tag, connection = nil, loggingObject = nil)
      t = Transfer.new
      t.customerId = customerId
      t.fromId = fromId
      t.toId = toId
      t.amount = amount
      t.tag = tag
      t.create connection, loggingObject
    end

    def create(connection = nil, loggingObject = nil)
      CorePro::Utils::Requestor.post('/transfer/create', Transfer, self, connection, loggingObject)
    end

    def self.void(customerId, transactionId, tag, connection = nil, loggingObject = nil)
      t = Transfer.new
      t.customerId = customerId
      t.transactionId = transactionId
      t.tag = tag
      t.void connection, loggingObject
    end

    def void(connection = nil, loggingObject = nil)
      CorePro::Utils::Requestor.post('/transfer/void', Transfer, self, connection, loggingObject)
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
corepro-1.0.1 lib/corepro/transfer.rb
corepro-1.0.0 lib/corepro/transfer.rb
corepro-0.0.9 lib/corepro/transfer.rb
corepro-0.0.8 lib/corepro/transfer.rb
corepro-0.0.7 lib/corepro/transfer.rb