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.



591
592
593
594
595
# File 'lib/AfricasTalking/Payments.rb', line 591

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

Instance Attribute Details

#descriptionObject (readonly)

Returns the value of attribute description.



590
591
592
# File 'lib/AfricasTalking/Payments.rb', line 590

def description
  @description
end

#responsesObject (readonly)

Returns the value of attribute responses.



590
591
592
# File 'lib/AfricasTalking/Payments.rb', line 590

def responses
  @responses
end

#statusObject (readonly)

Returns the value of attribute status.



590
591
592
# File 'lib/AfricasTalking/Payments.rb', line 590

def status
  @status
end