@@ -34,47 +34,47 @@ class ImageQA(object):
34
34
openapi_types = {
35
35
'dpi_threshold' : 'int' ,
36
36
'angle_threshold' : 'int' ,
37
- 'disable_focus_check ' : 'bool' ,
38
- 'disable_glares_check ' : 'bool' ,
39
- 'disable_colorness_check ' : 'bool' ,
40
- 'disable_moire_check ' : 'bool'
37
+ 'focus_check ' : 'bool' ,
38
+ 'glares_check ' : 'bool' ,
39
+ 'colorness_check ' : 'bool' ,
40
+ 'moire_check ' : 'bool'
41
41
}
42
42
43
43
attribute_map = {
44
44
'dpi_threshold' : 'dpiThreshold' ,
45
45
'angle_threshold' : 'angleThreshold' ,
46
- 'disable_focus_check ' : 'disableFocusCheck ' ,
47
- 'disable_glares_check ' : 'disableGlaresCheck ' ,
48
- 'disable_colorness_check ' : 'disableColornessCheck ' ,
49
- 'disable_moire_check ' : 'disableMoireCheck '
46
+ 'focus_check ' : 'focusCheck ' ,
47
+ 'glares_check ' : 'glaresCheck ' ,
48
+ 'colorness_check ' : 'colornessCheck ' ,
49
+ 'moire_check ' : 'moireCheck '
50
50
}
51
51
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
52
+ def __init__ (self , dpi_threshold = None , angle_threshold = None , focus_check = None , glares_check = None , colorness_check = None , moire_check = None , local_vars_configuration = None ): # noqa: E501
53
53
"""ImageQA - a model defined in OpenAPI""" # noqa: E501
54
54
if local_vars_configuration is None :
55
55
local_vars_configuration = Configuration ()
56
56
self .local_vars_configuration = local_vars_configuration
57
57
58
58
self ._dpi_threshold = None
59
59
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
60
+ self ._focus_check = None
61
+ self ._glares_check = None
62
+ self ._colorness_check = None
63
+ self ._moire_check = None
64
64
self .discriminator = None
65
65
66
66
if dpi_threshold is not None :
67
67
self .dpi_threshold = dpi_threshold
68
68
if angle_threshold is not None :
69
69
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
70
+ if focus_check is not None :
71
+ self .focus_check = focus_check
72
+ if glares_check is not None :
73
+ self .glares_check = glares_check
74
+ if colorness_check is not None :
75
+ self .colorness_check = colorness_check
76
+ if moire_check is not None :
77
+ self .moire_check = moire_check
78
78
79
79
@property
80
80
def dpi_threshold (self ):
@@ -123,96 +123,96 @@ def angle_threshold(self, angle_threshold):
123
123
self ._angle_threshold = angle_threshold
124
124
125
125
@property
126
- def disable_focus_check (self ):
127
- """Gets the disable_focus_check of this ImageQA. # noqa: E501
126
+ def focus_check (self ):
127
+ """Gets the focus_check of this ImageQA. # noqa: E501
128
128
129
129
This option disabled focus check during performing image quality validation # noqa: E501
130
130
131
- :return: The disable_focus_check of this ImageQA. # noqa: E501
131
+ :return: The focus_check of this ImageQA. # noqa: E501
132
132
:rtype: bool
133
133
"""
134
- return self ._disable_focus_check
134
+ return self ._focus_check
135
135
136
- @disable_focus_check .setter
137
- def disable_focus_check (self , disable_focus_check ):
138
- """Sets the disable_focus_check of this ImageQA.
136
+ @focus_check .setter
137
+ def focus_check (self , focus_check ):
138
+ """Sets the focus_check of this ImageQA.
139
139
140
140
This option disabled focus check during performing image quality validation # noqa: E501
141
141
142
- :param disable_focus_check : The disable_focus_check of this ImageQA. # noqa: E501
143
- :type disable_focus_check : bool
142
+ :param focus_check : The focus_check of this ImageQA. # noqa: E501
143
+ :type focus_check : bool
144
144
"""
145
145
146
- self ._disable_focus_check = disable_focus_check
146
+ self ._focus_check = focus_check
147
147
148
148
@property
149
- def disable_glares_check (self ):
150
- """Gets the disable_glares_check of this ImageQA. # noqa: E501
149
+ def glares_check (self ):
150
+ """Gets the glares_check of this ImageQA. # noqa: E501
151
151
152
152
This option disabled glares check during performing image quality validation # noqa: E501
153
153
154
- :return: The disable_glares_check of this ImageQA. # noqa: E501
154
+ :return: The glares_check of this ImageQA. # noqa: E501
155
155
:rtype: bool
156
156
"""
157
- return self ._disable_glares_check
157
+ return self ._glares_check
158
158
159
- @disable_glares_check .setter
160
- def disable_glares_check (self , disable_glares_check ):
161
- """Sets the disable_glares_check of this ImageQA.
159
+ @glares_check .setter
160
+ def glares_check (self , glares_check ):
161
+ """Sets the glares_check of this ImageQA.
162
162
163
163
This option disabled glares check during performing image quality validation # noqa: E501
164
164
165
- :param disable_glares_check : The disable_glares_check of this ImageQA. # noqa: E501
166
- :type disable_glares_check : bool
165
+ :param glares_check : The glares_check of this ImageQA. # noqa: E501
166
+ :type glares_check : bool
167
167
"""
168
168
169
- self ._disable_glares_check = disable_glares_check
169
+ self ._glares_check = glares_check
170
170
171
171
@property
172
- def disable_colorness_check (self ):
173
- """Gets the disable_colorness_check of this ImageQA. # noqa: E501
172
+ def colorness_check (self ):
173
+ """Gets the colorness_check of this ImageQA. # noqa: E501
174
174
175
175
This option disabled colorness check during performing image quality validation # noqa: E501
176
176
177
- :return: The disable_colorness_check of this ImageQA. # noqa: E501
177
+ :return: The colorness_check of this ImageQA. # noqa: E501
178
178
:rtype: bool
179
179
"""
180
- return self ._disable_colorness_check
180
+ return self ._colorness_check
181
181
182
- @disable_colorness_check .setter
183
- def disable_colorness_check (self , disable_colorness_check ):
184
- """Sets the disable_colorness_check of this ImageQA.
182
+ @colorness_check .setter
183
+ def colorness_check (self , colorness_check ):
184
+ """Sets the colorness_check of this ImageQA.
185
185
186
186
This option disabled colorness check during performing image quality validation # noqa: E501
187
187
188
- :param disable_colorness_check : The disable_colorness_check of this ImageQA. # noqa: E501
189
- :type disable_colorness_check : bool
188
+ :param colorness_check : The colorness_check of this ImageQA. # noqa: E501
189
+ :type colorness_check : bool
190
190
"""
191
191
192
- self ._disable_colorness_check = disable_colorness_check
192
+ self ._colorness_check = colorness_check
193
193
194
194
@property
195
- def disable_moire_check (self ):
196
- """Gets the disable_moire_check of this ImageQA. # noqa: E501
195
+ def moire_check (self ):
196
+ """Gets the moire_check of this ImageQA. # noqa: E501
197
197
198
198
This option disabled moire patterns check during performing image quality validation # noqa: E501
199
199
200
- :return: The disable_moire_check of this ImageQA. # noqa: E501
200
+ :return: The moire_check of this ImageQA. # noqa: E501
201
201
:rtype: bool
202
202
"""
203
- return self ._disable_moire_check
203
+ return self ._moire_check
204
204
205
- @disable_moire_check .setter
206
- def disable_moire_check (self , disable_moire_check ):
207
- """Sets the disable_moire_check of this ImageQA.
205
+ @moire_check .setter
206
+ def moire_check (self , moire_check ):
207
+ """Sets the moire_check of this ImageQA.
208
208
209
209
This option disabled moire patterns check during performing image quality validation # noqa: E501
210
210
211
- :param disable_moire_check : The disable_moire_check of this ImageQA. # noqa: E501
212
- :type disable_moire_check : bool
211
+ :param moire_check : The moire_check of this ImageQA. # noqa: E501
212
+ :type moire_check : bool
213
213
"""
214
214
215
- self ._disable_moire_check = disable_moire_check
215
+ self ._moire_check = moire_check
216
216
217
217
def to_dict (self ):
218
218
"""Returns the model properties as a dict"""
0 commit comments