Skip to content

Commit 1f6802f

Browse files
authored
Migrate issued_to (#68)
1 parent ffc43b9 commit 1f6802f

10 files changed

+36
-176
lines changed

patch_api/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
from __future__ import absolute_import
1717

18-
__version__ = "1.24.0"
18+
__version__ = "1.24.1"
1919

2020
# import ApiClient
2121
from patch_api.api_client import ApiClient

patch_api/api_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def __init__(
9191
self.default_headers[header_name] = header_value
9292
self.cookie = cookie
9393
# Set default User-Agent.
94-
self.user_agent = "patch-python/1.24.0"
94+
self.user_agent = "patch-python/1.24.1"
9595

9696
def __del__(self):
9797
if self._pool:

patch_api/configuration.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ def to_debug_report(self):
341341
"OS: {env}\n"
342342
"Python Version: {pyversion}\n"
343343
"Version of the API: v1\n"
344-
"SDK Package Version: 1.24.0".format(
344+
"SDK Package Version: 1.24.1".format(
345345
env=sys.platform, pyversion=sys.version
346346
)
347347
)

patch_api/models/__init__.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@
5151
from patch_api.models.estimate_response import EstimateResponse
5252
from patch_api.models.highlight import Highlight
5353
from patch_api.models.inventory import Inventory
54-
from patch_api.models.issued_to import IssuedTo
5554
from patch_api.models.meta_index_object import MetaIndexObject
5655
from patch_api.models.order import Order
5756
from patch_api.models.order_inventory import OrderInventory
5857
from patch_api.models.order_inventory_project import OrderInventoryProject
58+
from patch_api.models.order_issued_to import OrderIssuedTo
5959
from patch_api.models.order_list_response import OrderListResponse
6060
from patch_api.models.order_response import OrderResponse
6161
from patch_api.models.parent_technology_type import ParentTechnologyType
@@ -68,4 +68,3 @@
6868
from patch_api.models.standard import Standard
6969
from patch_api.models.technology_type import TechnologyType
7070
from patch_api.models.technology_type_list_response import TechnologyTypeListResponse
71-
from patch_api.models.v1_orders_issued_to import V1OrdersIssuedTo

patch_api/models/create_order_request.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class CreateOrderRequest(object):
4444
"currency": "str",
4545
"amount": "int",
4646
"unit": "str",
47-
"issued_to": "V1OrdersIssuedTo",
47+
"issued_to": "OrderIssuedTo",
4848
}
4949

5050
attribute_map = {
@@ -104,7 +104,8 @@ def __init__(
104104
self.currency = currency
105105
self.amount = amount
106106
self.unit = unit
107-
self.issued_to = issued_to
107+
if issued_to is not None:
108+
self.issued_to = issued_to
108109

109110
@property
110111
def mass_g(self):
@@ -406,7 +407,7 @@ def issued_to(self):
406407
407408
408409
:return: The issued_to of this CreateOrderRequest. # noqa: E501
409-
:rtype: V1OrdersIssuedTo
410+
:rtype: OrderIssuedTo
410411
"""
411412
return self._issued_to
412413

@@ -416,7 +417,7 @@ def issued_to(self, issued_to):
416417
417418
418419
:param issued_to: The issued_to of this CreateOrderRequest. # noqa: E501
419-
:type: V1OrdersIssuedTo
420+
:type: OrderIssuedTo
420421
"""
421422

422423
self._issued_to = issued_to

patch_api/models/order.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class Order(object):
5151
"registry_url": "str",
5252
"metadata": "object",
5353
"inventory": "list[OrderInventory]",
54-
"issued_to": "IssuedTo",
54+
"issued_to": "OrderIssuedTo",
5555
}
5656

5757
attribute_map = {
@@ -665,19 +665,21 @@ def inventory(self, inventory):
665665
def issued_to(self):
666666
"""Gets the issued_to of this Order. # noqa: E501
667667
668+
An object containing the name & email of the party the inventory will be issued to. # noqa: E501
668669
669670
:return: The issued_to of this Order. # noqa: E501
670-
:rtype: IssuedTo
671+
:rtype: OrderIssuedTo
671672
"""
672673
return self._issued_to
673674

674675
@issued_to.setter
675676
def issued_to(self, issued_to):
676677
"""Sets the issued_to of this Order.
677678
679+
An object containing the name & email of the party the inventory will be issued to. # noqa: E501
678680
679681
:param issued_to: The issued_to of this Order. # noqa: E501
680-
:type: IssuedTo
682+
:type: OrderIssuedTo
681683
"""
682684

683685
self._issued_to = issued_to

patch_api/models/issued_to.py patch_api/models/order_issued_to.py

+16-16
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from 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()

patch_api/models/place_order_request.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class PlaceOrderRequest(object):
3333
attribute_map (dict): The key is attribute name
3434
and the value is json key in definition.
3535
"""
36-
openapi_types = {"issued_to": "V1OrdersIssuedTo"}
36+
openapi_types = {"issued_to": "OrderIssuedTo"}
3737

3838
attribute_map = {"issued_to": "issued_to"}
3939

@@ -46,15 +46,16 @@ def __init__(self, issued_to=None, local_vars_configuration=None): # noqa: E501
4646
self._issued_to = None
4747
self.discriminator = None
4848

49-
self.issued_to = issued_to
49+
if issued_to is not None:
50+
self.issued_to = issued_to
5051

5152
@property
5253
def issued_to(self):
5354
"""Gets the issued_to of this PlaceOrderRequest. # noqa: E501
5455
5556
5657
:return: The issued_to of this PlaceOrderRequest. # noqa: E501
57-
:rtype: V1OrdersIssuedTo
58+
:rtype: OrderIssuedTo
5859
"""
5960
return self._issued_to
6061

@@ -64,7 +65,7 @@ def issued_to(self, issued_to):
6465
6566
6667
:param issued_to: The issued_to of this PlaceOrderRequest. # noqa: E501
67-
:type: V1OrdersIssuedTo
68+
:type: OrderIssuedTo
6869
"""
6970

7071
self._issued_to = issued_to

patch_api/models/v1_orders_issued_to.py

-143
This file was deleted.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from setuptools import setup, find_packages # noqa: H301
1313

1414
NAME = "patch-api"
15-
VERSION = "1.24.0"
15+
VERSION = "1.24.1"
1616
# To install the library, run the following
1717
#
1818
# python setup.py install

0 commit comments

Comments
 (0)