@@ -36,18 +36,20 @@ class LivenessParams(object):
36
36
'check_mli' : 'bool' ,
37
37
'check_holo' : 'bool' ,
38
38
'check_ed' : 'bool' ,
39
- 'check_black_and_white_copy' : 'bool'
39
+ 'check_black_and_white_copy' : 'bool' ,
40
+ 'check_dynaprint' : 'bool'
40
41
}
41
42
42
43
attribute_map = {
43
44
'check_ovi' : 'checkOVI' ,
44
45
'check_mli' : 'checkMLI' ,
45
46
'check_holo' : 'checkHolo' ,
46
47
'check_ed' : 'checkED' ,
47
- 'check_black_and_white_copy' : 'checkBlackAndWhiteCopy'
48
+ 'check_black_and_white_copy' : 'checkBlackAndWhiteCopy' ,
49
+ 'check_dynaprint' : 'checkDynaprint'
48
50
}
49
51
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
51
53
"""LivenessParams - a model defined in OpenAPI""" # noqa: E501
52
54
if local_vars_configuration is None :
53
55
local_vars_configuration = Configuration ()
@@ -58,6 +60,7 @@ def __init__(self, check_ovi=None, check_mli=None, check_holo=None, check_ed=Non
58
60
self ._check_holo = None
59
61
self ._check_ed = None
60
62
self ._check_black_and_white_copy = None
63
+ self ._check_dynaprint = None
61
64
self .discriminator = None
62
65
63
66
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
70
73
self .check_ed = check_ed
71
74
if check_black_and_white_copy is not None :
72
75
self .check_black_and_white_copy = check_black_and_white_copy
76
+ if check_dynaprint is not None :
77
+ self .check_dynaprint = check_dynaprint
73
78
74
79
@property
75
80
def check_ovi (self ):
@@ -186,6 +191,29 @@ def check_black_and_white_copy(self, check_black_and_white_copy):
186
191
187
192
self ._check_black_and_white_copy = check_black_and_white_copy
188
193
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
+
189
217
def to_dict (self ):
190
218
"""Returns the model properties as a dict"""
191
219
result = {}
0 commit comments