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.



574
575
576
577
578
# File 'lib/AfricasTalking/Payments.rb', line 574

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

Instance Attribute Details

#descriptionObject (readonly)

Returns the value of attribute description.



573
574
575
# File 'lib/AfricasTalking/Payments.rb', line 573

def description
  @description
end

#entriesObject (readonly)

Returns the value of attribute entries.



573
574
575
# File 'lib/AfricasTalking/Payments.rb', line 573

def entries
  @entries
end

#statusObject (readonly)

Returns the value of attribute status.



573
574
575
# File 'lib/AfricasTalking/Payments.rb', line 573

def status
  @status
end