@@ -33,28 +33,48 @@ class ImageQA(object):
3333 """
3434 openapi_types = {
3535 'dpi_threshold' : 'int' ,
36- 'angle_threshold' : 'int'
36+ 'angle_threshold' : 'int' ,
37+ 'disable_focus_check' : 'bool' ,
38+ 'disable_glares_check' : 'bool' ,
39+ 'disable_colorness_check' : 'bool' ,
40+ 'disable_moire_check' : 'bool'
3741 }
3842
3943 attribute_map = {
4044 'dpi_threshold' : 'dpiThreshold' ,
41- 'angle_threshold' : 'angleThreshold'
45+ 'angle_threshold' : 'angleThreshold' ,
46+ 'disable_focus_check' : 'disableFocusCheck' ,
47+ 'disable_glares_check' : 'disableGlaresCheck' ,
48+ 'disable_colorness_check' : 'disableColornessCheck' ,
49+ 'disable_moire_check' : 'disableMoireCheck'
4250 }
4351
44- def __init__ (self , dpi_threshold = None , angle_threshold = None , local_vars_configuration = None ): # noqa: E501
52+ def __init__ (self , dpi_threshold = None , angle_threshold = None , disable_focus_check = None , disable_glares_check = None , disable_colorness_check = None , disable_moire_check = None , local_vars_configuration = None ): # noqa: E501
4553 """ImageQA - a model defined in OpenAPI""" # noqa: E501
4654 if local_vars_configuration is None :
4755 local_vars_configuration = Configuration ()
4856 self .local_vars_configuration = local_vars_configuration
4957
5058 self ._dpi_threshold = None
5159 self ._angle_threshold = None
60+ self ._disable_focus_check = None
61+ self ._disable_glares_check = None
62+ self ._disable_colorness_check = None
63+ self ._disable_moire_check = None
5264 self .discriminator = None
5365
5466 if dpi_threshold is not None :
5567 self .dpi_threshold = dpi_threshold
5668 if angle_threshold is not None :
5769 self .angle_threshold = angle_threshold
70+ if disable_focus_check is not None :
71+ self .disable_focus_check = disable_focus_check
72+ if disable_glares_check is not None :
73+ self .disable_glares_check = disable_glares_check
74+ if disable_colorness_check is not None :
75+ self .disable_colorness_check = disable_colorness_check
76+ if disable_moire_check is not None :
77+ self .disable_moire_check = disable_moire_check
5878
5979 @property
6080 def dpi_threshold (self ):
@@ -102,6 +122,98 @@ def angle_threshold(self, angle_threshold):
102122
103123 self ._angle_threshold = angle_threshold
104124
125+ @property
126+ def disable_focus_check (self ):
127+ """Gets the disable_focus_check of this ImageQA. # noqa: E501
128+
129+ This option disabled focus check during performing image quality validation # noqa: E501
130+
131+ :return: The disable_focus_check of this ImageQA. # noqa: E501
132+ :rtype: bool
133+ """
134+ return self ._disable_focus_check
135+
136+ @disable_focus_check .setter
137+ def disable_focus_check (self , disable_focus_check ):
138+ """Sets the disable_focus_check of this ImageQA.
139+
140+ This option disabled focus check during performing image quality validation # noqa: E501
141+
142+ :param disable_focus_check: The disable_focus_check of this ImageQA. # noqa: E501
143+ :type disable_focus_check: bool
144+ """
145+
146+ self ._disable_focus_check = disable_focus_check
147+
148+ @property
149+ def disable_glares_check (self ):
150+ """Gets the disable_glares_check of this ImageQA. # noqa: E501
151+
152+ This option disabled glares check during performing image quality validation # noqa: E501
153+
154+ :return: The disable_glares_check of this ImageQA. # noqa: E501
155+ :rtype: bool
156+ """
157+ return self ._disable_glares_check
158+
159+ @disable_glares_check .setter
160+ def disable_glares_check (self , disable_glares_check ):
161+ """Sets the disable_glares_check of this ImageQA.
162+
163+ This option disabled glares check during performing image quality validation # noqa: E501
164+
165+ :param disable_glares_check: The disable_glares_check of this ImageQA. # noqa: E501
166+ :type disable_glares_check: bool
167+ """
168+
169+ self ._disable_glares_check = disable_glares_check
170+
171+ @property
172+ def disable_colorness_check (self ):
173+ """Gets the disable_colorness_check of this ImageQA. # noqa: E501
174+
175+ This option disabled colorness check during performing image quality validation # noqa: E501
176+
177+ :return: The disable_colorness_check of this ImageQA. # noqa: E501
178+ :rtype: bool
179+ """
180+ return self ._disable_colorness_check
181+
182+ @disable_colorness_check .setter
183+ def disable_colorness_check (self , disable_colorness_check ):
184+ """Sets the disable_colorness_check of this ImageQA.
185+
186+ This option disabled colorness check during performing image quality validation # noqa: E501
187+
188+ :param disable_colorness_check: The disable_colorness_check of this ImageQA. # noqa: E501
189+ :type disable_colorness_check: bool
190+ """
191+
192+ self ._disable_colorness_check = disable_colorness_check
193+
194+ @property
195+ def disable_moire_check (self ):
196+ """Gets the disable_moire_check of this ImageQA. # noqa: E501
197+
198+ This option disabled moire patterns check during performing image quality validation # noqa: E501
199+
200+ :return: The disable_moire_check of this ImageQA. # noqa: E501
201+ :rtype: bool
202+ """
203+ return self ._disable_moire_check
204+
205+ @disable_moire_check .setter
206+ def disable_moire_check (self , disable_moire_check ):
207+ """Sets the disable_moire_check of this ImageQA.
208+
209+ This option disabled moire patterns check during performing image quality validation # noqa: E501
210+
211+ :param disable_moire_check: The disable_moire_check of this ImageQA. # noqa: E501
212+ :type disable_moire_check: bool
213+ """
214+
215+ self ._disable_moire_check = disable_moire_check
216+
105217 def to_dict (self ):
106218 """Returns the model properties as a dict"""
107219 result = {}
0 commit comments