Class: CreditCardTransactionOptions
- Inherits:
-
Object
- Object
- CreditCardTransactionOptions
- Defined in:
- lib/mundipagg/CreditCardTransaction/credit_card_transaction_options.rb
Instance Attribute Summary collapse
-
#CaptureDelayInMinutes ⇒ Object
Returns the value of attribute CaptureDelayInMinutes.
-
#CurrencyIso ⇒ Object
Returns the value of attribute CurrencyIso.
-
#ExtendedLimitCode ⇒ Object
Returns the value of attribute ExtendedLimitCode.
-
#ExtendedLimitEnabled ⇒ Object
Returns the value of attribute ExtendedLimitEnabled.
-
#IataAmountInCents ⇒ Object
Returns the value of attribute IataAmountInCents.
-
#InterestRate ⇒ Object
Returns the value of attribute InterestRate.
-
#MerchantCategoryCode ⇒ Object
Returns the value of attribute MerchantCategoryCode.
-
#PaymentMethodCode ⇒ Object
Returns the value of attribute PaymentMethodCode.
-
#SoftDescriptorText ⇒ Object
Returns the value of attribute SoftDescriptorText.
Instance Method Summary collapse
Instance Attribute Details
#CaptureDelayInMinutes ⇒ Object
Returns the value of attribute CaptureDelayInMinutes.
9 10 11 |
# File 'lib/mundipagg/CreditCardTransaction/credit_card_transaction_options.rb', line 9 def CaptureDelayInMinutes @CaptureDelayInMinutes end |
#CurrencyIso ⇒ Object
Returns the value of attribute CurrencyIso.
5 6 7 |
# File 'lib/mundipagg/CreditCardTransaction/credit_card_transaction_options.rb', line 5 def CurrencyIso @CurrencyIso end |
#ExtendedLimitCode ⇒ Object
Returns the value of attribute ExtendedLimitCode.
19 20 21 |
# File 'lib/mundipagg/CreditCardTransaction/credit_card_transaction_options.rb', line 19 def ExtendedLimitCode @ExtendedLimitCode end |
#ExtendedLimitEnabled ⇒ Object
Returns the value of attribute ExtendedLimitEnabled.
17 18 19 |
# File 'lib/mundipagg/CreditCardTransaction/credit_card_transaction_options.rb', line 17 def ExtendedLimitEnabled @ExtendedLimitEnabled end |
#IataAmountInCents ⇒ Object
Returns the value of attribute IataAmountInCents.
7 8 9 |
# File 'lib/mundipagg/CreditCardTransaction/credit_card_transaction_options.rb', line 7 def IataAmountInCents @IataAmountInCents end |
#InterestRate ⇒ Object
Returns the value of attribute InterestRate.
15 16 17 |
# File 'lib/mundipagg/CreditCardTransaction/credit_card_transaction_options.rb', line 15 def InterestRate @InterestRate end |
#MerchantCategoryCode ⇒ Object
Returns the value of attribute MerchantCategoryCode.
11 12 13 |
# File 'lib/mundipagg/CreditCardTransaction/credit_card_transaction_options.rb', line 11 def MerchantCategoryCode @MerchantCategoryCode end |
#PaymentMethodCode ⇒ Object
Returns the value of attribute PaymentMethodCode.
3 4 5 |
# File 'lib/mundipagg/CreditCardTransaction/credit_card_transaction_options.rb', line 3 def PaymentMethodCode @PaymentMethodCode end |
#SoftDescriptorText ⇒ Object
Returns the value of attribute SoftDescriptorText.
13 14 15 |
# File 'lib/mundipagg/CreditCardTransaction/credit_card_transaction_options.rb', line 13 def SoftDescriptorText @SoftDescriptorText end |
Instance Method Details
#to_json ⇒ Object
21 22 23 24 25 |
# File 'lib/mundipagg/CreditCardTransaction/credit_card_transaction_options.rb', line 21 def to_json hash = {} instance_variables.each {|var| hash[var.to_s.delete('@')] = instance_variable_get(var) } hash end |