class Ingenico::Direct::SDK::Domain::Customer
@attr [Ingenico::Direct::SDK::Domain::CustomerAccount] account @attr [String] account_type
@attr [Ingenico::Direct::SDK::Domain::Address] billing_address
@attr [Ingenico::Direct::SDK::Domain::CompanyInformation] company_information
@attr [Ingenico::Direct::SDK::Domain::ContactDetails] contact_details
@attr [Ingenico::Direct::SDK::Domain::CustomerDevice] device @attr [String] fiscal_number
@attr [String] locale @attr [String] merchant_customer_id
@attr [Ingenico::Direct::SDK::Domain::PersonalInformation] personal_information
Attributes
account[RW]
account_type[RW]
billing_address[RW]
company_information[RW]
contact_details[RW]
device[RW]
fiscal_number[RW]
locale[RW]
merchant_customer_id[RW]
personal_information[RW]
Public Instance Methods
from_hash(hash)
click to toggle source
Calls superclass method
Ingenico::Direct::SDK::DataObject#from_hash
# File lib/ingenico/direct/sdk/domain/customer.rb, line 54 def from_hash(hash) super if hash.key? 'account' raise TypeError, "value '%s' is not a Hash" % [hash['account']] unless hash['account'].is_a? Hash @account = Ingenico::Direct::SDK::Domain::CustomerAccount.new_from_hash(hash['account']) end @account_type = hash['accountType'] if hash.key? 'accountType' if hash.key? 'billingAddress' raise TypeError, "value '%s' is not a Hash" % [hash['billingAddress']] unless hash['billingAddress'].is_a? Hash @billing_address = Ingenico::Direct::SDK::Domain::Address.new_from_hash(hash['billingAddress']) end if hash.key? 'companyInformation' raise TypeError, "value '%s' is not a Hash" % [hash['companyInformation']] unless hash['companyInformation'].is_a? Hash @company_information = Ingenico::Direct::SDK::Domain::CompanyInformation.new_from_hash(hash['companyInformation']) end if hash.key? 'contactDetails' raise TypeError, "value '%s' is not a Hash" % [hash['contactDetails']] unless hash['contactDetails'].is_a? Hash @contact_details = Ingenico::Direct::SDK::Domain::ContactDetails.new_from_hash(hash['contactDetails']) end if hash.key? 'device' raise TypeError, "value '%s' is not a Hash" % [hash['device']] unless hash['device'].is_a? Hash @device = Ingenico::Direct::SDK::Domain::CustomerDevice.new_from_hash(hash['device']) end @fiscal_number = hash['fiscalNumber'] if hash.key? 'fiscalNumber' @locale = hash['locale'] if hash.key? 'locale' @merchant_customer_id = hash['merchantCustomerId'] if hash.key? 'merchantCustomerId' if hash.key? 'personalInformation' raise TypeError, "value '%s' is not a Hash" % [hash['personalInformation']] unless hash['personalInformation'].is_a? Hash @personal_information = Ingenico::Direct::SDK::Domain::PersonalInformation.new_from_hash(hash['personalInformation']) end end
to_h()
click to toggle source
@return (Hash)
Calls superclass method
Ingenico::Direct::SDK::DataObject#to_h
# File lib/ingenico/direct/sdk/domain/customer.rb, line 39 def to_h hash = super hash['account'] = @account.to_h if @account hash['accountType'] = @account_type unless @account_type.nil? hash['billingAddress'] = @billing_address.to_h if @billing_address hash['companyInformation'] = @company_information.to_h if @company_information hash['contactDetails'] = @contact_details.to_h if @contact_details hash['device'] = @device.to_h if @device hash['fiscalNumber'] = @fiscal_number unless @fiscal_number.nil? hash['locale'] = @locale unless @locale.nil? hash['merchantCustomerId'] = @merchant_customer_id unless @merchant_customer_id.nil? hash['personalInformation'] = @personal_information.to_h if @personal_information hash end