@@ -33,7 +33,7 @@ class Status(object):
3333 and the value is json key in definition.
3434 """
3535 openapi_types = {
36- 'complete ' : 'CheckResult' ,
36+ 'overall_status ' : 'CheckResult' ,
3737 'optical' : 'CheckResult' ,
3838 'portrait' : 'CheckResult' ,
3939 'rfid' : 'CheckResult' ,
@@ -43,7 +43,7 @@ class Status(object):
4343 }
4444
4545 attribute_map = {
46- 'complete ' : 'complete ' ,
46+ 'overall_status ' : 'overallStatus ' ,
4747 'optical' : 'optical' ,
4848 'portrait' : 'portrait' ,
4949 'rfid' : 'rfid' ,
@@ -52,13 +52,13 @@ class Status(object):
5252 'details_optical' : 'detailsOptical'
5353 }
5454
55- def __init__ (self , complete = None , optical = None , portrait = None , rfid = None , stop_list = None , details_rfid = None , details_optical = None , local_vars_configuration = None ): # noqa: E501
55+ def __init__ (self , overall_status = None , optical = None , portrait = None , rfid = None , stop_list = None , details_rfid = None , details_optical = None , local_vars_configuration = None ): # noqa: E501
5656 """Status - a model defined in OpenAPI""" # noqa: E501
5757 if local_vars_configuration is None :
5858 local_vars_configuration = Configuration ()
5959 self .local_vars_configuration = local_vars_configuration
6060
61- self ._complete = None
61+ self ._overall_status = None
6262 self ._optical = None
6363 self ._portrait = None
6464 self ._rfid = None
@@ -67,7 +67,7 @@ def __init__(self, complete=None, optical=None, portrait=None, rfid=None, stop_l
6767 self ._details_optical = None
6868 self .discriminator = None
6969
70- self .complete = complete
70+ self .overall_status = overall_status
7171 self .optical = optical
7272 if portrait is not None :
7373 self .portrait = portrait
@@ -80,27 +80,27 @@ def __init__(self, complete=None, optical=None, portrait=None, rfid=None, stop_l
8080 self .details_optical = details_optical
8181
8282 @property
83- def complete (self ):
84- """Gets the complete of this Status. # noqa: E501
83+ def overall_status (self ):
84+ """Gets the overall_status of this Status. # noqa: E501
8585
8686
87- :return: The complete of this Status. # noqa: E501
87+ :return: The overall_status of this Status. # noqa: E501
8888 :rtype: CheckResult
8989 """
90- return self ._complete
90+ return self ._overall_status
9191
92- @complete .setter
93- def complete (self , complete ):
94- """Sets the complete of this Status.
92+ @overall_status .setter
93+ def overall_status (self , overall_status ):
94+ """Sets the overall_status of this Status.
9595
9696
97- :param complete : The complete of this Status. # noqa: E501
98- :type complete : CheckResult
97+ :param overall_status : The overall_status of this Status. # noqa: E501
98+ :type overall_status : CheckResult
9999 """
100- if self .local_vars_configuration .client_side_validation and complete is None : # noqa: E501
101- raise ValueError ("Invalid value for `complete `, must not be `None`" ) # noqa: E501
100+ if self .local_vars_configuration .client_side_validation and overall_status is None : # noqa: E501
101+ raise ValueError ("Invalid value for `overall_status `, must not be `None`" ) # noqa: E501
102102
103- self ._complete = complete
103+ self ._overall_status = overall_status
104104
105105 @property
106106 def optical (self ):
0 commit comments