19
19
from patch_api .configuration import Configuration
20
20
21
21
22
- class IssuedTo (object ):
22
+ class OrderIssuedTo (object ):
23
23
"""NOTE: This class is auto generated by OpenAPI Generator.
24
24
Ref: https://openapi-generator.tech
25
25
@@ -40,7 +40,7 @@ class IssuedTo(object):
40
40
def __init__ (
41
41
self , name = None , email = None , local_vars_configuration = None
42
42
): # noqa: E501
43
- """IssuedTo - a model defined in OpenAPI""" # noqa: E501
43
+ """OrderIssuedTo - a model defined in OpenAPI""" # noqa: E501
44
44
if local_vars_configuration is None :
45
45
local_vars_configuration = Configuration ()
46
46
self .local_vars_configuration = local_vars_configuration
@@ -54,45 +54,45 @@ def __init__(
54
54
55
55
@property
56
56
def name (self ):
57
- """Gets the name of this IssuedTo . # noqa: E501
57
+ """Gets the name of this OrderIssuedTo . # noqa: E501
58
58
59
- Name provided for the issuee # noqa: E501
59
+ The name of the issuee # noqa: E501
60
60
61
- :return: The name of this IssuedTo . # noqa: E501
61
+ :return: The name of this OrderIssuedTo . # noqa: E501
62
62
:rtype: str
63
63
"""
64
64
return self ._name
65
65
66
66
@name .setter
67
67
def name (self , name ):
68
- """Sets the name of this IssuedTo .
68
+ """Sets the name of this OrderIssuedTo .
69
69
70
- Name provided for the issuee # noqa: E501
70
+ The name of the issuee # noqa: E501
71
71
72
- :param name: The name of this IssuedTo . # noqa: E501
72
+ :param name: The name of this OrderIssuedTo . # noqa: E501
73
73
:type: str
74
74
"""
75
75
76
76
self ._name = name
77
77
78
78
@property
79
79
def email (self ):
80
- """Gets the email of this IssuedTo . # noqa: E501
80
+ """Gets the email of this OrderIssuedTo . # noqa: E501
81
81
82
- Email address provided for the issuee # noqa: E501
82
+ The email address of the issuee # noqa: E501
83
83
84
- :return: The email of this IssuedTo . # noqa: E501
84
+ :return: The email of this OrderIssuedTo . # noqa: E501
85
85
:rtype: str
86
86
"""
87
87
return self ._email
88
88
89
89
@email .setter
90
90
def email (self , email ):
91
- """Sets the email of this IssuedTo .
91
+ """Sets the email of this OrderIssuedTo .
92
92
93
- Email address provided for the issuee # noqa: E501
93
+ The email address of the issuee # noqa: E501
94
94
95
- :param email: The email of this IssuedTo . # noqa: E501
95
+ :param email: The email of this OrderIssuedTo . # noqa: E501
96
96
:type: str
97
97
"""
98
98
@@ -134,14 +134,14 @@ def __repr__(self):
134
134
135
135
def __eq__ (self , other ):
136
136
"""Returns true if both objects are equal"""
137
- if not isinstance (other , IssuedTo ):
137
+ if not isinstance (other , OrderIssuedTo ):
138
138
return False
139
139
140
140
return self .to_dict () == other .to_dict ()
141
141
142
142
def __ne__ (self , other ):
143
143
"""Returns true if both objects are not equal"""
144
- if not isinstance (other , IssuedTo ):
144
+ if not isinstance (other , OrderIssuedTo ):
145
145
return True
146
146
147
147
return self .to_dict () != other .to_dict ()
0 commit comments