Class: FetchWalletResponse

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(status_, description_, responses_) ⇒ FetchWalletResponse

Returns a new instance of FetchWalletResponse.



636
637
638
639
640
# File 'lib/AfricasTalking/Payments.rb', line 636

def initialize status_, description_, responses_
	@description = description_
	@status = status_
	@responses = responses_
end

Instance Attribute Details

#descriptionObject (readonly)

Returns the value of attribute description.



635
636
637
# File 'lib/AfricasTalking/Payments.rb', line 635

def description
  @description
end

#responsesObject (readonly)

Returns the value of attribute responses.



635
636
637
# File 'lib/AfricasTalking/Payments.rb', line 635

def responses
  @responses
end

#statusObject (readonly)

Returns the value of attribute status.



635
636
637
# File 'lib/AfricasTalking/Payments.rb', line 635

def status
  @status
end