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