Class: WalletTransferResponse

Inherits:
Object
  • Object
show all
Defined in:
lib/AfricasTalking/Payments.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(status_, description_, transactionId_) ⇒ WalletTransferResponse

Returns a new instance of WalletTransferResponse.



422
423
424
425
426
# File 'lib/AfricasTalking/Payments.rb', line 422

def initialize status_, description_, transactionId_
		@description = description_
		@status = status_
		@transactionId = transactionId_
end

Instance Attribute Details

#descriptionObject (readonly)

Returns the value of attribute description.



421
422
423
# File 'lib/AfricasTalking/Payments.rb', line 421

def description
  @description
end

#statusObject (readonly)

Returns the value of attribute status.



421
422
423
# File 'lib/AfricasTalking/Payments.rb', line 421

def status
  @status
end

#transactionIdObject (readonly)

Returns the value of attribute transactionId.



421
422
423
# File 'lib/AfricasTalking/Payments.rb', line 421

def transactionId
  @transactionId
end