class MobileB2BResponse
Attributes
errorMessage[R]
providerChannel[R]
status[R]
transactionFee[R]
transactionId[R]
Public Class Methods
new(status_, transactionId_, transactionFee_, providerChannel_, errorMessage_)
click to toggle source
# File lib/AfricasTalking/Payments.rb, line 508 def initialize status_, transactionId_, transactionFee_, providerChannel_, errorMessage_ @providerChannel = providerChannel_ @transactionId = transactionId_ @transactionFee = transactionFee_ @status = status_ @errorMessage = errorMessage_ end