Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions regula/documentreader/webclient/gen/models/face_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
34 changes: 31 additions & 3 deletions regula/documentreader/webclient/gen/models/liveness_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,20 @@ 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 = {
'check_ovi': 'checkOVI',
'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()
Expand All @@ -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:
Expand All @@ -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):
Expand Down Expand Up @@ -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 = {}
Expand Down
Loading