Class: ValidateCardCheckoutResponse

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(status_, description_, checkoutToken_) ⇒ ValidateCardCheckoutResponse

Returns a new instance of ValidateCardCheckoutResponse.



524
525
526
527
528
# File 'lib/AfricasTalking/Payments.rb', line 524

def initialize status_, description_, checkoutToken_
		@description = description_
		@status = status_
		@checkoutToken = checkoutToken_
end

Instance Attribute Details

#checkoutTokenObject (readonly)

Returns the value of attribute checkoutToken.



523
524
525
# File 'lib/AfricasTalking/Payments.rb', line 523

def checkoutToken
  @checkoutToken
end

#descriptionObject (readonly)

Returns the value of attribute description.



523
524
525
# File 'lib/AfricasTalking/Payments.rb', line 523

def description
  @description
end

#statusObject (readonly)

Returns the value of attribute status.



523
524
525
# File 'lib/AfricasTalking/Payments.rb', line 523

def status
  @status
end