Source code for worldline.connect.sdk.v1.domain.iin_detail
# -*- 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
[docs]
class IINDetail(DataObject):
"""
| Output of the retrieval of the IIN details request
"""
__is_allowed_in_context: Optional[bool] = None
__payment_product_id: Optional[int] = None
@property
def is_allowed_in_context(self) -> Optional[bool]:
"""
| Populated only if you submitted a payment context.
* true - The payment product is allowed in the submitted context.
* false - The payment product is not allowed in the submitted context. Note that in this case, none of the brands of the card will be allowed in the submitted context.
Type: bool
"""
return self.__is_allowed_in_context
@is_allowed_in_context.setter
def is_allowed_in_context(self, value: Optional[bool]) -> None:
self.__is_allowed_in_context = value
@property
def payment_product_id(self) -> Optional[int]:
"""
| Payment product identifier
| Please see payment products <https://apireference.connect.worldline-solutions.com/s2sapi/v1/en_US/python/paymentproducts.html> for a full overview of possible values.
Type: int
"""
return self.__payment_product_id
@payment_product_id.setter
def payment_product_id(self, value: Optional[int]) -> None:
self.__payment_product_id = value
[docs]
def to_dictionary(self) -> dict:
dictionary = super(IINDetail, self).to_dictionary()
if self.is_allowed_in_context is not None:
dictionary['isAllowedInContext'] = self.is_allowed_in_context
if self.payment_product_id is not None:
dictionary['paymentProductId'] = self.payment_product_id
return dictionary
[docs]
def from_dictionary(self, dictionary: dict) -> 'IINDetail':
super(IINDetail, self).from_dictionary(dictionary)
if 'isAllowedInContext' in dictionary:
self.is_allowed_in_context = dictionary['isAllowedInContext']
if 'paymentProductId' in dictionary:
self.payment_product_id = dictionary['paymentProductId']
return self