Skip to content

Commit f8c4b7b

Browse files
committed
Commit: 658d07da
1 parent 8fccbba commit f8c4b7b

File tree

3 files changed

+38
-6
lines changed

3 files changed

+38
-6
lines changed

regula/documentreader/webclient/gen/models/face_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ def proxy_type(self, proxy_type):
282282
def child_age_threshold(self):
283283
"""Gets the child_age_threshold of this FaceApi. # noqa: E501
284284
285-
Minimum age of a child, at which portrait comparison result will be effective. Default: 13. # noqa: E501
285+
The age threshold for the portrait comparison. Default: 13. # noqa: E501
286286
287287
:return: The child_age_threshold of this FaceApi. # noqa: E501
288288
:rtype: int
@@ -293,7 +293,7 @@ def child_age_threshold(self):
293293
def child_age_threshold(self, child_age_threshold):
294294
"""Sets the child_age_threshold of this FaceApi.
295295
296-
Minimum age of a child, at which portrait comparison result will be effective. Default: 13. # noqa: E501
296+
The age threshold for the portrait comparison. Default: 13. # noqa: E501
297297
298298
:param child_age_threshold: The child_age_threshold of this FaceApi. # noqa: E501
299299
:type child_age_threshold: int

regula/documentreader/webclient/gen/models/liveness_params.py

Lines changed: 31 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,18 +36,20 @@ class LivenessParams(object):
3636
'check_mli': 'bool',
3737
'check_holo': 'bool',
3838
'check_ed': 'bool',
39-
'check_black_and_white_copy': 'bool'
39+
'check_black_and_white_copy': 'bool',
40+
'check_dynaprint': 'bool'
4041
}
4142

4243
attribute_map = {
4344
'check_ovi': 'checkOVI',
4445
'check_mli': 'checkMLI',
4546
'check_holo': 'checkHolo',
4647
'check_ed': 'checkED',
47-
'check_black_and_white_copy': 'checkBlackAndWhiteCopy'
48+
'check_black_and_white_copy': 'checkBlackAndWhiteCopy',
49+
'check_dynaprint': 'checkDynaprint'
4850
}
4951

50-
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
52+
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
5153
"""LivenessParams - a model defined in OpenAPI""" # noqa: E501
5254
if local_vars_configuration is None:
5355
local_vars_configuration = Configuration()
@@ -58,6 +60,7 @@ def __init__(self, check_ovi=None, check_mli=None, check_holo=None, check_ed=Non
5860
self._check_holo = None
5961
self._check_ed = None
6062
self._check_black_and_white_copy = None
63+
self._check_dynaprint = None
6164
self.discriminator = None
6265

6366
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
7073
self.check_ed = check_ed
7174
if check_black_and_white_copy is not None:
7275
self.check_black_and_white_copy = check_black_and_white_copy
76+
if check_dynaprint is not None:
77+
self.check_dynaprint = check_dynaprint
7378

7479
@property
7580
def check_ovi(self):
@@ -186,6 +191,29 @@ def check_black_and_white_copy(self, check_black_and_white_copy):
186191

187192
self._check_black_and_white_copy = check_black_and_white_copy
188193

194+
@property
195+
def check_dynaprint(self):
196+
"""Gets the check_dynaprint of this LivenessParams. # noqa: E501
197+
198+
This parameter is used to enable Dynaprint check # noqa: E501
199+
200+
:return: The check_dynaprint of this LivenessParams. # noqa: E501
201+
:rtype: bool
202+
"""
203+
return self._check_dynaprint
204+
205+
@check_dynaprint.setter
206+
def check_dynaprint(self, check_dynaprint):
207+
"""Sets the check_dynaprint of this LivenessParams.
208+
209+
This parameter is used to enable Dynaprint check # noqa: E501
210+
211+
:param check_dynaprint: The check_dynaprint of this LivenessParams. # noqa: E501
212+
:type check_dynaprint: bool
213+
"""
214+
215+
self._check_dynaprint = check_dynaprint
216+
189217
def to_dict(self):
190218
"""Returns the model properties as a dict"""
191219
result = {}

0 commit comments

Comments
 (0)