Class: CheckoutSdk::Payments::CorporateSender
- Defined in:
- lib/checkout_sdk/payments/sender/corporate_sender.rb
Instance Attribute Summary collapse
- #address ⇒ CheckoutSdk::Common::Address
- #company_name ⇒ String
- #identification ⇒ CheckoutSdk::Common::AccountHolderIdentification
- #reference_type ⇒ String
- #source_of_funds ⇒ String
Attributes inherited from Sender
Instance Method Summary collapse
-
#initialize ⇒ CorporateSender
constructor
A new instance of CorporateSender.
Constructor Details
#initialize ⇒ CorporateSender
Returns a new instance of CorporateSender.
22 23 24 |
# File 'lib/checkout_sdk/payments/sender/corporate_sender.rb', line 22 def initialize super CheckoutSdk::Payments::SenderType::CORPORATE end |
Instance Attribute Details
#address ⇒ CheckoutSdk::Common::Address
15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/checkout_sdk/payments/sender/corporate_sender.rb', line 15 class CorporateSender < Sender attr_accessor :company_name, :address, :reference_type, :source_of_funds, :identification def initialize super CheckoutSdk::Payments::SenderType::CORPORATE end end |
#company_name ⇒ String
15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/checkout_sdk/payments/sender/corporate_sender.rb', line 15 class CorporateSender < Sender attr_accessor :company_name, :address, :reference_type, :source_of_funds, :identification def initialize super CheckoutSdk::Payments::SenderType::CORPORATE end end |
#identification ⇒ CheckoutSdk::Common::AccountHolderIdentification
15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/checkout_sdk/payments/sender/corporate_sender.rb', line 15 class CorporateSender < Sender attr_accessor :company_name, :address, :reference_type, :source_of_funds, :identification def initialize super CheckoutSdk::Payments::SenderType::CORPORATE end end |
#reference_type ⇒ String
15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/checkout_sdk/payments/sender/corporate_sender.rb', line 15 class CorporateSender < Sender attr_accessor :company_name, :address, :reference_type, :source_of_funds, :identification def initialize super CheckoutSdk::Payments::SenderType::CORPORATE end end |
#source_of_funds ⇒ String
Returns SourceOfFunds.
15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/checkout_sdk/payments/sender/corporate_sender.rb', line 15 class CorporateSender < Sender attr_accessor :company_name, :address, :reference_type, :source_of_funds, :identification def initialize super CheckoutSdk::Payments::SenderType::CORPORATE end end |