Class: Ingenico::Direct::SDK::Domain::PaymentProduct840CustomerAccount
- Inherits:
-
Ingenico::Direct::SDK::DataObject
- Object
- Ingenico::Direct::SDK::DataObject
- Ingenico::Direct::SDK::Domain::PaymentProduct840CustomerAccount
- Defined in:
- lib/ingenico/direct/sdk/domain/payment_product840_customer_account.rb
Instance Attribute Summary collapse
-
#account_id ⇒ String
The current value of account_id.
-
#company_name ⇒ String
The current value of company_name.
-
#country_code ⇒ String
The current value of country_code.
-
#customer_account_status ⇒ String
The current value of customer_account_status.
-
#customer_address_status ⇒ String
The current value of customer_address_status.
-
#first_name ⇒ String
The current value of first_name.
-
#payer_id ⇒ String
The current value of payer_id.
-
#surname ⇒ String
The current value of surname.
Instance Method Summary collapse
Methods inherited from Ingenico::Direct::SDK::DataObject
Instance Attribute Details
#account_id ⇒ String
Returns the current value of account_id.
18 19 20 |
# File 'lib/ingenico/direct/sdk/domain/payment_product840_customer_account.rb', line 18 def account_id @account_id end |
#company_name ⇒ String
Returns the current value of company_name.
18 19 20 |
# File 'lib/ingenico/direct/sdk/domain/payment_product840_customer_account.rb', line 18 def company_name @company_name end |
#country_code ⇒ String
Returns the current value of country_code.
18 19 20 |
# File 'lib/ingenico/direct/sdk/domain/payment_product840_customer_account.rb', line 18 def country_code @country_code end |
#customer_account_status ⇒ String
Returns the current value of customer_account_status.
18 19 20 |
# File 'lib/ingenico/direct/sdk/domain/payment_product840_customer_account.rb', line 18 def customer_account_status @customer_account_status end |
#customer_address_status ⇒ String
Returns the current value of customer_address_status.
18 19 20 |
# File 'lib/ingenico/direct/sdk/domain/payment_product840_customer_account.rb', line 18 def customer_address_status @customer_address_status end |
#first_name ⇒ String
Returns the current value of first_name.
18 19 20 |
# File 'lib/ingenico/direct/sdk/domain/payment_product840_customer_account.rb', line 18 def first_name @first_name end |
#payer_id ⇒ String
Returns the current value of payer_id.
18 19 20 |
# File 'lib/ingenico/direct/sdk/domain/payment_product840_customer_account.rb', line 18 def payer_id @payer_id end |
#surname ⇒ String
Returns the current value of surname.
18 19 20 |
# File 'lib/ingenico/direct/sdk/domain/payment_product840_customer_account.rb', line 18 def surname @surname end |
Instance Method Details
#from_hash(hash) ⇒ Object
42 43 44 45 46 47 48 49 50 51 52 |
# File 'lib/ingenico/direct/sdk/domain/payment_product840_customer_account.rb', line 42 def from_hash(hash) super @account_id = hash['accountId'] if hash.key? 'accountId' @company_name = hash['companyName'] if hash.key? 'companyName' @country_code = hash['countryCode'] if hash.key? 'countryCode' @customer_account_status = hash['customerAccountStatus'] if hash.key? 'customerAccountStatus' @customer_address_status = hash['customerAddressStatus'] if hash.key? 'customerAddressStatus' @first_name = hash['firstName'] if hash.key? 'firstName' @payer_id = hash['payerId'] if hash.key? 'payerId' @surname = hash['surname'] if hash.key? 'surname' end |
#to_h ⇒ Hash
29 30 31 32 33 34 35 36 37 38 39 40 |
# File 'lib/ingenico/direct/sdk/domain/payment_product840_customer_account.rb', line 29 def to_h hash = super hash['accountId'] = @account_id unless @account_id.nil? hash['companyName'] = @company_name unless @company_name.nil? hash['countryCode'] = @country_code unless @country_code.nil? hash['customerAccountStatus'] = @customer_account_status unless @customer_account_status.nil? hash['customerAddressStatus'] = @customer_address_status unless @customer_address_status.nil? hash['firstName'] = @first_name unless @first_name.nil? hash['payerId'] = @payer_id unless @payer_id.nil? hash['surname'] = @surname unless @surname.nil? hash end |