Class: CancelSubscriptionAndRefund
- Inherits:
-
Object
- Object
- CancelSubscriptionAndRefund
- Defined in:
- lib/default.rb
Overview
Instance Attribute Summary collapse
-
#callerReference ⇒ Object
Returns the value of attribute callerReference.
-
#cancelReason ⇒ Object
Returns the value of attribute cancelReason.
-
#refundAmount ⇒ Object
Returns the value of attribute refundAmount.
-
#subscriptionId ⇒ Object
Returns the value of attribute subscriptionId.
Instance Method Summary collapse
-
#initialize(subscriptionId = nil, refundAmount = nil, callerReference = nil, cancelReason = nil) ⇒ CancelSubscriptionAndRefund
constructor
A new instance of CancelSubscriptionAndRefund.
Constructor Details
#initialize(subscriptionId = nil, refundAmount = nil, callerReference = nil, cancelReason = nil) ⇒ CancelSubscriptionAndRefund
Returns a new instance of CancelSubscriptionAndRefund.
531 532 533 534 535 536 |
# File 'lib/default.rb', line 531 def initialize(subscriptionId = nil, refundAmount = nil, callerReference = nil, cancelReason = nil) @subscriptionId = subscriptionId @refundAmount = refundAmount @callerReference = callerReference @cancelReason = cancelReason end |
Instance Attribute Details
#callerReference ⇒ Object
Returns the value of attribute callerReference.
528 529 530 |
# File 'lib/default.rb', line 528 def callerReference @callerReference end |
#cancelReason ⇒ Object
Returns the value of attribute cancelReason.
529 530 531 |
# File 'lib/default.rb', line 529 def cancelReason @cancelReason end |
#refundAmount ⇒ Object
Returns the value of attribute refundAmount.
527 528 529 |
# File 'lib/default.rb', line 527 def refundAmount @refundAmount end |
#subscriptionId ⇒ Object
Returns the value of attribute subscriptionId.
526 527 528 |
# File 'lib/default.rb', line 526 def subscriptionId @subscriptionId end |