Class: FetchWalletEntries

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(description_, balance_, date_, category_, value_, transactionId_, transactionData_) ⇒ FetchWalletEntries

Returns a new instance of FetchWalletEntries.



600
601
602
603
604
605
606
607
608
# File 'lib/AfricasTalking/Payments.rb', line 600

def initialize description_, balance_, date_, category_, value_, transactionId_, transactionData_
  @description = description_
  @balance = balance_
  @date = date_
  @category = category_
  @value = value_
  @transactionId = transactionId_
  @transactionData = transactionData_
end

Instance Attribute Details

#balanceObject (readonly)

Returns the value of attribute balance.



599
600
601
# File 'lib/AfricasTalking/Payments.rb', line 599

def balance
  @balance
end

#categoryObject (readonly)

Returns the value of attribute category.



599
600
601
# File 'lib/AfricasTalking/Payments.rb', line 599

def category
  @category
end

#dateObject (readonly)

Returns the value of attribute date.



599
600
601
# File 'lib/AfricasTalking/Payments.rb', line 599

def date
  @date
end

#descriptionObject (readonly)

Returns the value of attribute description.



599
600
601
# File 'lib/AfricasTalking/Payments.rb', line 599

def description
  @description
end

#transactionDataObject (readonly)

Returns the value of attribute transactionData.



599
600
601
# File 'lib/AfricasTalking/Payments.rb', line 599

def transactionData
  @transactionData
end

#transactionIdObject (readonly)

Returns the value of attribute transactionId.



599
600
601
# File 'lib/AfricasTalking/Payments.rb', line 599

def transactionId
  @transactionId
end

#valueObject (readonly)

Returns the value of attribute value.



599
600
601
# File 'lib/AfricasTalking/Payments.rb', line 599

def value
  @value
end