Source code for worldline.connect.sdk.v1.domain.payment_context

# -*- coding: utf-8 -*-
#
# This class was auto-generated from the API references found at
# https://apireference.connect.worldline-solutions.com/
#
from typing import Optional

from worldline.connect.sdk.domain.data_object import DataObject
from worldline.connect.sdk.v1.domain.amount_of_money import AmountOfMoney


[docs] class PaymentContext(DataObject): """ | Values that can optionally be set to refine an IIN Lookup """ __amount_of_money: Optional[AmountOfMoney] = None __country_code: Optional[str] = None __is_installments: Optional[bool] = None __is_recurring: Optional[bool] = None @property def amount_of_money(self) -> Optional[AmountOfMoney]: """ | The payment amount Type: :class:`worldline.connect.sdk.v1.domain.amount_of_money.AmountOfMoney` """ return self.__amount_of_money @amount_of_money.setter def amount_of_money(self, value: Optional[AmountOfMoney]) -> None: self.__amount_of_money = value @property def country_code(self) -> Optional[str]: """ | The country the payment takes place in Type: str """ return self.__country_code @country_code.setter def country_code(self, value: Optional[str]) -> None: self.__country_code = value @property def is_installments(self) -> Optional[bool]: """ | True if the payment is to be paid in multiple installments (numberOfInstallments > 1 for the payment). When true only payment products that support installments will be allowed in context. Type: bool """ return self.__is_installments @is_installments.setter def is_installments(self, value: Optional[bool]) -> None: self.__is_installments = value @property def is_recurring(self) -> Optional[bool]: """ | True if the payment is recurring Type: bool """ return self.__is_recurring @is_recurring.setter def is_recurring(self, value: Optional[bool]) -> None: self.__is_recurring = value
[docs] def to_dictionary(self) -> dict: dictionary = super(PaymentContext, self).to_dictionary() if self.amount_of_money is not None: dictionary['amountOfMoney'] = self.amount_of_money.to_dictionary() if self.country_code is not None: dictionary['countryCode'] = self.country_code if self.is_installments is not None: dictionary['isInstallments'] = self.is_installments if self.is_recurring is not None: dictionary['isRecurring'] = self.is_recurring return dictionary
[docs] def from_dictionary(self, dictionary: dict) -> 'PaymentContext': super(PaymentContext, self).from_dictionary(dictionary) if 'amountOfMoney' in dictionary: if not isinstance(dictionary['amountOfMoney'], dict): raise TypeError('value \'{}\' is not a dictionary'.format(dictionary['amountOfMoney'])) value = AmountOfMoney() self.amount_of_money = value.from_dictionary(dictionary['amountOfMoney']) if 'countryCode' in dictionary: self.country_code = dictionary['countryCode'] if 'isInstallments' in dictionary: self.is_installments = dictionary['isInstallments'] if 'isRecurring' in dictionary: self.is_recurring = dictionary['isRecurring'] return self