Skip to content

Commit

Permalink
Merge pull request #143 from regulaforensics/f49c8ae3
Browse files Browse the repository at this point in the history
update-clients
  • Loading branch information
KirylKovaliov authored Oct 3, 2024
2 parents 004837c + 6e5f9cb commit 91444c4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 31 deletions.
2 changes: 0 additions & 2 deletions regula/documentreader/webclient/gen/models/ident_result.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,6 @@ def element_diagnose(self, element_diagnose):
def percent_value(self):
"""Gets the percent_value of this IdentResult. # noqa: E501
Probability percent for IMAGE_PATTERN check or element's visibility for IR_VISIBILITY # noqa: E501
:return: The percent_value of this IdentResult. # noqa: E501
:rtype: int
Expand All @@ -177,7 +176,6 @@ def percent_value(self):
def percent_value(self, percent_value):
"""Sets the percent_value of this IdentResult.
Probability percent for IMAGE_PATTERN check or element's visibility for IR_VISIBILITY # noqa: E501
:param percent_value: The percent_value of this IdentResult. # noqa: E501
:type percent_value: int
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ class IdentResultAllOf(object):
'area': 'RectangleCoordinates',
'image': 'ImageData',
'etalon_image': 'ImageData',
'percent_value': 'int',
'area_list': 'AreaContainer'
}

Expand All @@ -47,11 +46,10 @@ class IdentResultAllOf(object):
'area': 'Area',
'image': 'Image',
'etalon_image': 'EtalonImage',
'percent_value': 'PercentValue',
'area_list': 'AreaList'
}

def __init__(self, element_type=None, light_index=None, area=None, image=None, etalon_image=None, percent_value=None, area_list=None, local_vars_configuration=None): # noqa: E501
def __init__(self, element_type=None, light_index=None, area=None, image=None, etalon_image=None, area_list=None, local_vars_configuration=None): # noqa: E501
"""IdentResultAllOf - a model defined in OpenAPI""" # noqa: E501
if local_vars_configuration is None:
local_vars_configuration = Configuration()
Expand All @@ -62,7 +60,6 @@ def __init__(self, element_type=None, light_index=None, area=None, image=None, e
self._area = None
self._image = None
self._etalon_image = None
self._percent_value = None
self._area_list = None
self.discriminator = None

Expand All @@ -76,8 +73,6 @@ def __init__(self, element_type=None, light_index=None, area=None, image=None, e
self.image = image
if etalon_image is not None:
self.etalon_image = etalon_image
if percent_value is not None:
self.percent_value = percent_value
if area_list is not None:
self.area_list = area_list

Expand Down Expand Up @@ -186,29 +181,6 @@ def etalon_image(self, etalon_image):

self._etalon_image = etalon_image

@property
def percent_value(self):
"""Gets the percent_value of this IdentResultAllOf. # noqa: E501
Probability percent for IMAGE_PATTERN check or element's visibility for IR_VISIBILITY # noqa: E501
:return: The percent_value of this IdentResultAllOf. # noqa: E501
:rtype: int
"""
return self._percent_value

@percent_value.setter
def percent_value(self, percent_value):
"""Sets the percent_value of this IdentResultAllOf.
Probability percent for IMAGE_PATTERN check or element's visibility for IR_VISIBILITY # noqa: E501
:param percent_value: The percent_value of this IdentResultAllOf. # noqa: E501
:type percent_value: int
"""

self._percent_value = percent_value

@property
def area_list(self):
"""Gets the area_list of this IdentResultAllOf. # noqa: E501
Expand Down

0 comments on commit 91444c4

Please sign in to comment.