@@ -37,7 +37,6 @@ class IdentResultAllOf(object):
3737 'area' : 'RectangleCoordinates' ,
3838 'image' : 'ImageData' ,
3939 'etalon_image' : 'ImageData' ,
40- 'percent_value' : 'int' ,
4140 'area_list' : 'AreaContainer'
4241 }
4342
@@ -47,11 +46,10 @@ class IdentResultAllOf(object):
4746 'area' : 'Area' ,
4847 'image' : 'Image' ,
4948 'etalon_image' : 'EtalonImage' ,
50- 'percent_value' : 'PercentValue' ,
5149 'area_list' : 'AreaList'
5250 }
5351
54- 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
52+ 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
5553 """IdentResultAllOf - a model defined in OpenAPI""" # noqa: E501
5654 if local_vars_configuration is None :
5755 local_vars_configuration = Configuration ()
@@ -62,7 +60,6 @@ def __init__(self, element_type=None, light_index=None, area=None, image=None, e
6260 self ._area = None
6361 self ._image = None
6462 self ._etalon_image = None
65- self ._percent_value = None
6663 self ._area_list = None
6764 self .discriminator = None
6865
@@ -76,8 +73,6 @@ def __init__(self, element_type=None, light_index=None, area=None, image=None, e
7673 self .image = image
7774 if etalon_image is not None :
7875 self .etalon_image = etalon_image
79- if percent_value is not None :
80- self .percent_value = percent_value
8176 if area_list is not None :
8277 self .area_list = area_list
8378
@@ -186,29 +181,6 @@ def etalon_image(self, etalon_image):
186181
187182 self ._etalon_image = etalon_image
188183
189- @property
190- def percent_value (self ):
191- """Gets the percent_value of this IdentResultAllOf. # noqa: E501
192-
193- Probability percent for IMAGE_PATTERN check or element's visibility for IR_VISIBILITY # noqa: E501
194-
195- :return: The percent_value of this IdentResultAllOf. # noqa: E501
196- :rtype: int
197- """
198- return self ._percent_value
199-
200- @percent_value .setter
201- def percent_value (self , percent_value ):
202- """Sets the percent_value of this IdentResultAllOf.
203-
204- Probability percent for IMAGE_PATTERN check or element's visibility for IR_VISIBILITY # noqa: E501
205-
206- :param percent_value: The percent_value of this IdentResultAllOf. # noqa: E501
207- :type percent_value: int
208- """
209-
210- self ._percent_value = percent_value
211-
212184 @property
213185 def area_list (self ):
214186 """Gets the area_list of this IdentResultAllOf. # noqa: E501
0 commit comments