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

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

from worldline.connect.sdk.domain.data_object import DataObject
from worldline.connect.sdk.v1.domain.label_template_element import LabelTemplateElement


[docs] class AccountOnFileDisplayHints(DataObject): __label_template: Optional[List[LabelTemplateElement]] = None __logo: Optional[str] = None @property def label_template(self) -> Optional[List[LabelTemplateElement]]: """ | Array of attribute keys and their mask Type: list[:class:`worldline.connect.sdk.v1.domain.label_template_element.LabelTemplateElement`] """ return self.__label_template @label_template.setter def label_template(self, value: Optional[List[LabelTemplateElement]]) -> None: self.__label_template = value @property def logo(self) -> Optional[str]: """ | Partial URL that you can reference for the image of this payment product. You can use our server-side resize functionality by appending '?size={{width}}x{{height}}' to the full URL, where width and height are specified in pixels. The resized image will always keep its correct aspect ratio. Type: str """ return self.__logo @logo.setter def logo(self, value: Optional[str]) -> None: self.__logo = value
[docs] def to_dictionary(self) -> dict: dictionary = super(AccountOnFileDisplayHints, self).to_dictionary() if self.label_template is not None: dictionary['labelTemplate'] = [] for element in self.label_template: if element is not None: dictionary['labelTemplate'].append(element.to_dictionary()) if self.logo is not None: dictionary['logo'] = self.logo return dictionary
[docs] def from_dictionary(self, dictionary: dict) -> 'AccountOnFileDisplayHints': super(AccountOnFileDisplayHints, self).from_dictionary(dictionary) if 'labelTemplate' in dictionary: if not isinstance(dictionary['labelTemplate'], list): raise TypeError('value \'{}\' is not a list'.format(dictionary['labelTemplate'])) self.label_template = [] for element in dictionary['labelTemplate']: value = LabelTemplateElement() self.label_template.append(value.from_dictionary(element)) if 'logo' in dictionary: self.logo = dictionary['logo'] return self