Class: FetchTransactionsResponse

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(status_, description_, entries_) ⇒ FetchTransactionsResponse

Returns a new instance of FetchTransactionsResponse.



619
620
621
622
623
# File 'lib/AfricasTalking/Payments.rb', line 619

def initialize status_, description_, entries_
	@description = description_
	@status = status_
	@entries = entries_
end

Instance Attribute Details

#descriptionObject (readonly)

Returns the value of attribute description.



618
619
620
# File 'lib/AfricasTalking/Payments.rb', line 618

def description
  @description
end

#entriesObject (readonly)

Returns the value of attribute entries.



618
619
620
# File 'lib/AfricasTalking/Payments.rb', line 618

def entries
  @entries
end

#statusObject (readonly)

Returns the value of attribute status.



618
619
620
# File 'lib/AfricasTalking/Payments.rb', line 618

def status
  @status
end