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

# -*- 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 LengthValidator(DataObject): __max_length: Optional[int] = None __min_length: Optional[int] = None @property def max_length(self) -> Optional[int]: """ | The maximum allowed length Type: int """ return self.__max_length @max_length.setter def max_length(self, value: Optional[int]) -> None: self.__max_length = value @property def min_length(self) -> Optional[int]: """ | The minimum allowed length Type: int """ return self.__min_length @min_length.setter def min_length(self, value: Optional[int]) -> None: self.__min_length = value
[docs] def to_dictionary(self) -> dict: dictionary = super(LengthValidator, self).to_dictionary() if self.max_length is not None: dictionary['maxLength'] = self.max_length if self.min_length is not None: dictionary['minLength'] = self.min_length return dictionary
[docs] def from_dictionary(self, dictionary: dict) -> 'LengthValidator': super(LengthValidator, self).from_dictionary(dictionary) if 'maxLength' in dictionary: self.max_length = dictionary['maxLength'] if 'minLength' in dictionary: self.min_length = dictionary['minLength'] return self