1919from patch_api .configuration import Configuration
2020
2121
22- class IssuedTo (object ):
22+ class OrderIssuedTo (object ):
2323 """NOTE: This class is auto generated by OpenAPI Generator.
2424 Ref: https://openapi-generator.tech
2525
@@ -40,7 +40,7 @@ class IssuedTo(object):
4040 def __init__ (
4141 self , name = None , email = None , local_vars_configuration = None
4242 ): # noqa: E501
43- """IssuedTo - a model defined in OpenAPI""" # noqa: E501
43+ """OrderIssuedTo - a model defined in OpenAPI""" # noqa: E501
4444 if local_vars_configuration is None :
4545 local_vars_configuration = Configuration ()
4646 self .local_vars_configuration = local_vars_configuration
@@ -54,45 +54,45 @@ def __init__(
5454
5555 @property
5656 def name (self ):
57- """Gets the name of this IssuedTo . # noqa: E501
57+ """Gets the name of this OrderIssuedTo . # noqa: E501
5858
59- Name provided for the issuee # noqa: E501
59+ The name of the issuee # noqa: E501
6060
61- :return: The name of this IssuedTo . # noqa: E501
61+ :return: The name of this OrderIssuedTo . # noqa: E501
6262 :rtype: str
6363 """
6464 return self ._name
6565
6666 @name .setter
6767 def name (self , name ):
68- """Sets the name of this IssuedTo .
68+ """Sets the name of this OrderIssuedTo .
6969
70- Name provided for the issuee # noqa: E501
70+ The name of the issuee # noqa: E501
7171
72- :param name: The name of this IssuedTo . # noqa: E501
72+ :param name: The name of this OrderIssuedTo . # noqa: E501
7373 :type: str
7474 """
7575
7676 self ._name = name
7777
7878 @property
7979 def email (self ):
80- """Gets the email of this IssuedTo . # noqa: E501
80+ """Gets the email of this OrderIssuedTo . # noqa: E501
8181
82- Email address provided for the issuee # noqa: E501
82+ The email address of the issuee # noqa: E501
8383
84- :return: The email of this IssuedTo . # noqa: E501
84+ :return: The email of this OrderIssuedTo . # noqa: E501
8585 :rtype: str
8686 """
8787 return self ._email
8888
8989 @email .setter
9090 def email (self , email ):
91- """Sets the email of this IssuedTo .
91+ """Sets the email of this OrderIssuedTo .
9292
93- Email address provided for the issuee # noqa: E501
93+ The email address of the issuee # noqa: E501
9494
95- :param email: The email of this IssuedTo . # noqa: E501
95+ :param email: The email of this OrderIssuedTo . # noqa: E501
9696 :type: str
9797 """
9898
@@ -134,14 +134,14 @@ def __repr__(self):
134134
135135 def __eq__ (self , other ):
136136 """Returns true if both objects are equal"""
137- if not isinstance (other , IssuedTo ):
137+ if not isinstance (other , OrderIssuedTo ):
138138 return False
139139
140140 return self .to_dict () == other .to_dict ()
141141
142142 def __ne__ (self , other ):
143143 """Returns true if both objects are not equal"""
144- if not isinstance (other , IssuedTo ):
144+ if not isinstance (other , OrderIssuedTo ):
145145 return True
146146
147147 return self .to_dict () != other .to_dict ()
0 commit comments