diff --git a/regula/documentreader/webclient/gen/models/face_api.py b/regula/documentreader/webclient/gen/models/face_api.py index 4543033..12d8a7c 100644 --- a/regula/documentreader/webclient/gen/models/face_api.py +++ b/regula/documentreader/webclient/gen/models/face_api.py @@ -282,7 +282,7 @@ def proxy_type(self, proxy_type): def child_age_threshold(self): """Gets the child_age_threshold of this FaceApi. # noqa: E501 - Minimum age of a child, at which portrait comparison result will be effective. Default: 13. # noqa: E501 + The age threshold for the portrait comparison. Default: 13. # noqa: E501 :return: The child_age_threshold of this FaceApi. # noqa: E501 :rtype: int @@ -293,7 +293,7 @@ def child_age_threshold(self): def child_age_threshold(self, child_age_threshold): """Sets the child_age_threshold of this FaceApi. - Minimum age of a child, at which portrait comparison result will be effective. Default: 13. # noqa: E501 + The age threshold for the portrait comparison. Default: 13. # noqa: E501 :param child_age_threshold: The child_age_threshold of this FaceApi. # noqa: E501 :type child_age_threshold: int diff --git a/regula/documentreader/webclient/gen/models/liveness_params.py b/regula/documentreader/webclient/gen/models/liveness_params.py index 02b30a0..8e30eb2 100644 --- a/regula/documentreader/webclient/gen/models/liveness_params.py +++ b/regula/documentreader/webclient/gen/models/liveness_params.py @@ -36,7 +36,8 @@ class LivenessParams(object): 'check_mli': 'bool', 'check_holo': 'bool', 'check_ed': 'bool', - 'check_black_and_white_copy': 'bool' + 'check_black_and_white_copy': 'bool', + 'check_dynaprint': 'bool' } attribute_map = { @@ -44,10 +45,11 @@ class LivenessParams(object): 'check_mli': 'checkMLI', 'check_holo': 'checkHolo', 'check_ed': 'checkED', - 'check_black_and_white_copy': 'checkBlackAndWhiteCopy' + 'check_black_and_white_copy': 'checkBlackAndWhiteCopy', + 'check_dynaprint': 'checkDynaprint' } - def __init__(self, check_ovi=None, check_mli=None, check_holo=None, check_ed=None, check_black_and_white_copy=None, local_vars_configuration=None): # noqa: E501 + def __init__(self, check_ovi=None, check_mli=None, check_holo=None, check_ed=None, check_black_and_white_copy=None, check_dynaprint=None, local_vars_configuration=None): # noqa: E501 """LivenessParams - a model defined in OpenAPI""" # noqa: E501 if local_vars_configuration is None: local_vars_configuration = Configuration() @@ -58,6 +60,7 @@ def __init__(self, check_ovi=None, check_mli=None, check_holo=None, check_ed=Non self._check_holo = None self._check_ed = None self._check_black_and_white_copy = None + self._check_dynaprint = None self.discriminator = None if check_ovi is not None: @@ -70,6 +73,8 @@ def __init__(self, check_ovi=None, check_mli=None, check_holo=None, check_ed=Non self.check_ed = check_ed if check_black_and_white_copy is not None: self.check_black_and_white_copy = check_black_and_white_copy + if check_dynaprint is not None: + self.check_dynaprint = check_dynaprint @property def check_ovi(self): @@ -186,6 +191,29 @@ def check_black_and_white_copy(self, check_black_and_white_copy): self._check_black_and_white_copy = check_black_and_white_copy + @property + def check_dynaprint(self): + """Gets the check_dynaprint of this LivenessParams. # noqa: E501 + + This parameter is used to enable Dynaprint check # noqa: E501 + + :return: The check_dynaprint of this LivenessParams. # noqa: E501 + :rtype: bool + """ + return self._check_dynaprint + + @check_dynaprint.setter + def check_dynaprint(self, check_dynaprint): + """Sets the check_dynaprint of this LivenessParams. + + This parameter is used to enable Dynaprint check # noqa: E501 + + :param check_dynaprint: The check_dynaprint of this LivenessParams. # noqa: E501 + :type check_dynaprint: bool + """ + + self._check_dynaprint = check_dynaprint + def to_dict(self): """Returns the model properties as a dict""" result = {}