Class: CheckoutSdk::Instruments::UpdateInstrumentCard
- Inherits:
-
UpdateInstrument
- Object
- UpdateInstrument
- CheckoutSdk::Instruments::UpdateInstrumentCard
- Defined in:
- lib/checkout_sdk/instruments/update/update_instrument_card.rb
Instance Attribute Summary collapse
- #account_holder ⇒ CheckoutSdk::Common::AccountHolder
- #customer ⇒ CheckoutSdk::Common::UpdateCustomerRequest
- #expiry_month ⇒ Integer
- #expiry_year ⇒ Integer
- #name ⇒ String
Attributes inherited from UpdateInstrument
Instance Method Summary collapse
-
#initialize ⇒ UpdateInstrumentCard
constructor
A new instance of UpdateInstrumentCard.
Constructor Details
#initialize ⇒ UpdateInstrumentCard
Returns a new instance of UpdateInstrumentCard.
22 23 24 |
# File 'lib/checkout_sdk/instruments/update/update_instrument_card.rb', line 22 def initialize super CheckoutSdk::Common::InstrumentType::CARD end |
Instance Attribute Details
#account_holder ⇒ CheckoutSdk::Common::AccountHolder
15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/checkout_sdk/instruments/update/update_instrument_card.rb', line 15 class UpdateInstrumentCard < UpdateInstrument attr_accessor :expiry_month, :expiry_year, :name, :account_holder, :customer def initialize super CheckoutSdk::Common::InstrumentType::CARD end end |
#customer ⇒ CheckoutSdk::Common::UpdateCustomerRequest
15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/checkout_sdk/instruments/update/update_instrument_card.rb', line 15 class UpdateInstrumentCard < UpdateInstrument attr_accessor :expiry_month, :expiry_year, :name, :account_holder, :customer def initialize super CheckoutSdk::Common::InstrumentType::CARD end end |
#expiry_month ⇒ Integer
15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/checkout_sdk/instruments/update/update_instrument_card.rb', line 15 class UpdateInstrumentCard < UpdateInstrument attr_accessor :expiry_month, :expiry_year, :name, :account_holder, :customer def initialize super CheckoutSdk::Common::InstrumentType::CARD end end |
#expiry_year ⇒ Integer
15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/checkout_sdk/instruments/update/update_instrument_card.rb', line 15 class UpdateInstrumentCard < UpdateInstrument attr_accessor :expiry_month, :expiry_year, :name, :account_holder, :customer def initialize super CheckoutSdk::Common::InstrumentType::CARD end end |
#name ⇒ String
15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/checkout_sdk/instruments/update/update_instrument_card.rb', line 15 class UpdateInstrumentCard < UpdateInstrument attr_accessor :expiry_month, :expiry_year, :name, :account_holder, :customer def initialize super CheckoutSdk::Common::InstrumentType::CARD end end |