@@ -36,18 +36,20 @@ class LivenessParams(object):
3636 'check_mli' : 'bool' ,
3737 'check_holo' : 'bool' ,
3838 'check_ed' : 'bool' ,
39- 'check_black_and_white_copy' : 'bool'
39+ 'check_black_and_white_copy' : 'bool' ,
40+ 'check_dynaprint' : 'bool'
4041 }
4142
4243 attribute_map = {
4344 'check_ovi' : 'checkOVI' ,
4445 'check_mli' : 'checkMLI' ,
4546 'check_holo' : 'checkHolo' ,
4647 'check_ed' : 'checkED' ,
47- 'check_black_and_white_copy' : 'checkBlackAndWhiteCopy'
48+ 'check_black_and_white_copy' : 'checkBlackAndWhiteCopy' ,
49+ 'check_dynaprint' : 'checkDynaprint'
4850 }
4951
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
5153 """LivenessParams - a model defined in OpenAPI""" # noqa: E501
5254 if local_vars_configuration is None :
5355 local_vars_configuration = Configuration ()
@@ -58,6 +60,7 @@ def __init__(self, check_ovi=None, check_mli=None, check_holo=None, check_ed=Non
5860 self ._check_holo = None
5961 self ._check_ed = None
6062 self ._check_black_and_white_copy = None
63+ self ._check_dynaprint = None
6164 self .discriminator = None
6265
6366 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
7073 self .check_ed = check_ed
7174 if check_black_and_white_copy is not None :
7275 self .check_black_and_white_copy = check_black_and_white_copy
76+ if check_dynaprint is not None :
77+ self .check_dynaprint = check_dynaprint
7378
7479 @property
7580 def check_ovi (self ):
@@ -186,6 +191,29 @@ def check_black_and_white_copy(self, check_black_and_white_copy):
186191
187192 self ._check_black_and_white_copy = check_black_and_white_copy
188193
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+
189217 def to_dict (self ):
190218 """Returns the model properties as a dict"""
191219 result = {}
0 commit comments