Source code for ingenico.connect.sdk.domain.product.definitions.abstract_indicator

# -*- 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


[docs]class AbstractIndicator(DataObject): __name = None __value = None @property def name(self): """ Type: str """ return self.__name @name.setter def name(self, value): self.__name = value @property def value(self): """ Type: str """ return self.__value @value.setter def value(self, value): self.__value = value
[docs] def to_dictionary(self): dictionary = super(AbstractIndicator, self).to_dictionary() if self.name is not None: dictionary['name'] = self.name if self.value is not None: dictionary['value'] = self.value return dictionary
[docs] def from_dictionary(self, dictionary): super(AbstractIndicator, self).from_dictionary(dictionary) if 'name' in dictionary: self.name = dictionary['name'] if 'value' in dictionary: self.value = dictionary['value'] return self