Source code for ingenico.connect.sdk.domain.payment.definitions.non_sepa_direct_debit_payment_product730_specific_input

# -*- 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.bank_account_bban import BankAccountBban


[docs]class NonSepaDirectDebitPaymentProduct730SpecificInput(DataObject): """ | ACH specific input fields """ __bank_account_bban = None @property def bank_account_bban(self): """ | Object containing account holder name and bank account information Type: :class:`ingenico.connect.sdk.domain.definitions.bank_account_bban.BankAccountBban` """ return self.__bank_account_bban @bank_account_bban.setter def bank_account_bban(self, value): self.__bank_account_bban = value
[docs] def to_dictionary(self): dictionary = super(NonSepaDirectDebitPaymentProduct730SpecificInput, self).to_dictionary() if self.bank_account_bban is not None: dictionary['bankAccountBban'] = self.bank_account_bban.to_dictionary() return dictionary
[docs] def from_dictionary(self, dictionary): super(NonSepaDirectDebitPaymentProduct730SpecificInput, self).from_dictionary(dictionary) if 'bankAccountBban' in dictionary: if not isinstance(dictionary['bankAccountBban'], dict): raise TypeError('value \'{}\' is not a dictionary'.format(dictionary['bankAccountBban'])) value = BankAccountBban() self.bank_account_bban = value.from_dictionary(dictionary['bankAccountBban']) return self