Source code for ingenico.connect.sdk.domain.definitions.customer_base

# -*- coding: utf-8 -*-
#
# This class was auto-generated from the API references found at
# https://epayments-api.developer-ingenico.com/
#
from ingenico.connect.sdk.data_object import DataObject
from ingenico.connect.sdk.domain.definitions.company_information import CompanyInformation


[docs] class CustomerBase(DataObject): """ | Basic information of a customer """ __company_information = None __merchant_customer_id = None __vat_number = None @property def company_information(self): """ | Object containing company information Type: :class:`ingenico.connect.sdk.domain.definitions.company_information.CompanyInformation` """ return self.__company_information @company_information.setter def company_information(self, value): self.__company_information = value @property def merchant_customer_id(self): """ | Your identifier for the customer. It can be used as a search criteria in the GlobalCollect Payment Console and is also included in the GlobalCollect report files. It is used in the fraud-screening process for payments on the Ogone Payment Platform. Type: str """ return self.__merchant_customer_id @merchant_customer_id.setter def merchant_customer_id(self, value): self.__merchant_customer_id = value @property def vat_number(self): """ | Local VAT number of the company Type: str Deprecated; Use companyInformation.vatNumber instead """ return self.__vat_number @vat_number.setter def vat_number(self, value): self.__vat_number = value
[docs] def to_dictionary(self): dictionary = super(CustomerBase, self).to_dictionary() if self.company_information is not None: dictionary['companyInformation'] = self.company_information.to_dictionary() if self.merchant_customer_id is not None: dictionary['merchantCustomerId'] = self.merchant_customer_id if self.vat_number is not None: dictionary['vatNumber'] = self.vat_number return dictionary
[docs] def from_dictionary(self, dictionary): super(CustomerBase, self).from_dictionary(dictionary) if 'companyInformation' in dictionary: if not isinstance(dictionary['companyInformation'], dict): raise TypeError('value \'{}\' is not a dictionary'.format(dictionary['companyInformation'])) value = CompanyInformation() self.company_information = value.from_dictionary(dictionary['companyInformation']) if 'merchantCustomerId' in dictionary: self.merchant_customer_id = dictionary['merchantCustomerId'] if 'vatNumber' in dictionary: self.vat_number = dictionary['vatNumber'] return self