Skip to content

Commit 8880d42

Browse files
authored
Add support to Orders API for issued_to (#61)
1 parent a1852fc commit 8880d42

20 files changed

+547
-14
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.23.0] - 2022-06-03
9+
10+
### Added
11+
12+
- Adds support for the `issued_to` parameter on `orders`, to add support for creating and placing orders on behalf of another party.
13+
814
## [1.22.0] - 2022-05-16
915

1016
### Added

README.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,17 @@ project_id = 'pro_test_1234' # Pass in the project's ID
8282
patch.orders.create_order(project_id=project_id, amount=amount, unit=unit)
8383

8484
## Orders also accept a metadata field (optional)
85-
metadata = {user: "john doe"}
85+
metadata = {"user": "john doe"}
8686
patch.orders.create_order(metadata=metadata, amount=amount, unit=unit)
8787

88+
## Orders also accept a metadata field (optional)
89+
metadata = {"user": "john doe"}
90+
patch.orders.create_order(metadata=metadata, amount=amount, unit=unit)
91+
92+
## Orders also accept an issued_to field (optional)
93+
issued_to = {"name": "Company A", "email": "[email protected]"}
94+
patch.orders.create_order(issued_to=issued_to, amount=amount, unit=unit)
95+
8896
# Retrieve an order
8997
order_id = 'ord_test_1234' # Pass in the order's id
9098
patch.orders.retrieve_order(id=order_id)
@@ -93,6 +101,10 @@ patch.orders.retrieve_order(id=order_id)
93101
order_id = 'ord_test_1234' # Pass in the order's id
94102
patch.orders.place_order(id=order_id)
95103

104+
## Placing an order on behalf of another party
105+
issued_to = {"name": "Company A", "email": "[email protected]"}
106+
patch.orders.place_order(id=order_id, issued_to=issued_to)
107+
96108
# Cancel an order
97109
order_id = 'ord_test_1234' # Pass in the order's id
98110
patch.orders.cancel_order(id=order_id)

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.22.0"
18+
__version__ = "1.23.0"
1919

2020
# import ApiClient
2121
from patch_api.api_client import ApiClient

patch_api/api/estimates_api.py

+10
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ class EstimatesApi(object):
6363
"currency",
6464
"amount",
6565
"unit",
66+
"issued_to",
6667
]
6768

6869
def __init__(self, api_client=None):
@@ -166,6 +167,7 @@ def create_bitcoin_estimate_with_http_info(
166167
all_params.append("currency")
167168
all_params.append("amount")
168169
all_params.append("unit")
170+
all_params.append("issued_to")
169171

170172
for key, val in six.iteritems(local_var_params["kwargs"]):
171173
if key not in all_params:
@@ -340,6 +342,7 @@ def create_ethereum_estimate_with_http_info(
340342
all_params.append("currency")
341343
all_params.append("amount")
342344
all_params.append("unit")
345+
all_params.append("issued_to")
343346

344347
for key, val in six.iteritems(local_var_params["kwargs"]):
345348
if key not in all_params:
@@ -514,6 +517,7 @@ def create_flight_estimate_with_http_info(
514517
all_params.append("currency")
515518
all_params.append("amount")
516519
all_params.append("unit")
520+
all_params.append("issued_to")
517521

518522
for key, val in six.iteritems(local_var_params["kwargs"]):
519523
if key not in all_params:
@@ -688,6 +692,7 @@ def create_hotel_estimate_with_http_info(
688692
all_params.append("currency")
689693
all_params.append("amount")
690694
all_params.append("unit")
695+
all_params.append("issued_to")
691696

692697
for key, val in six.iteritems(local_var_params["kwargs"]):
693698
if key not in all_params:
@@ -862,6 +867,7 @@ def create_mass_estimate_with_http_info(
862867
all_params.append("currency")
863868
all_params.append("amount")
864869
all_params.append("unit")
870+
all_params.append("issued_to")
865871

866872
for key, val in six.iteritems(local_var_params["kwargs"]):
867873
if key not in all_params:
@@ -1036,6 +1042,7 @@ def create_shipping_estimate_with_http_info(
10361042
all_params.append("currency")
10371043
all_params.append("amount")
10381044
all_params.append("unit")
1045+
all_params.append("issued_to")
10391046

10401047
for key, val in six.iteritems(local_var_params["kwargs"]):
10411048
if key not in all_params:
@@ -1210,6 +1217,7 @@ def create_vehicle_estimate_with_http_info(
12101217
all_params.append("currency")
12111218
all_params.append("amount")
12121219
all_params.append("unit")
1220+
all_params.append("issued_to")
12131221

12141222
for key, val in six.iteritems(local_var_params["kwargs"]):
12151223
if key not in all_params:
@@ -1378,6 +1386,7 @@ def retrieve_estimate_with_http_info(self, id, **kwargs): # noqa: E501
13781386
all_params.append("currency")
13791387
all_params.append("amount")
13801388
all_params.append("unit")
1389+
all_params.append("issued_to")
13811390

13821391
for key, val in six.iteritems(local_var_params["kwargs"]):
13831392
if key not in all_params:
@@ -1536,6 +1545,7 @@ def retrieve_estimates_with_http_info(self, **kwargs): # noqa: E501
15361545
all_params.append("currency")
15371546
all_params.append("amount")
15381547
all_params.append("unit")
1548+
all_params.append("issued_to")
15391549

15401550
for key, val in six.iteritems(local_var_params["kwargs"]):
15411551
if key not in all_params:

patch_api/api/orders_api.py

+18-1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ class OrdersApi(object):
6363
"currency",
6464
"amount",
6565
"unit",
66+
"issued_to",
6667
]
6768

6869
def __init__(self, api_client=None):
@@ -160,6 +161,7 @@ def cancel_order_with_http_info(self, id, **kwargs): # noqa: E501
160161
all_params.append("currency")
161162
all_params.append("amount")
162163
all_params.append("unit")
164+
all_params.append("issued_to")
163165

164166
for key, val in six.iteritems(local_var_params["kwargs"]):
165167
if key not in all_params:
@@ -320,6 +322,7 @@ def create_order_with_http_info(self, create_order_request, **kwargs): # noqa:
320322
all_params.append("currency")
321323
all_params.append("amount")
322324
all_params.append("unit")
325+
all_params.append("issued_to")
323326

324327
for key, val in six.iteritems(local_var_params["kwargs"]):
325328
if key not in all_params:
@@ -407,6 +410,7 @@ def place_order(self, id={}, **kwargs): # noqa: E501
407410
408411
:param async_req bool: execute request asynchronously
409412
:param str id: (required)
413+
:param PlaceOrderRequest place_order_request:
410414
:param _preload_content: if False, the urllib3.HTTPResponse object will
411415
be returned without reading/decoding response
412416
data. Default is True.
@@ -432,6 +436,7 @@ def place_order_with_http_info(self, id, **kwargs): # noqa: E501
432436
433437
:param async_req bool: execute request asynchronously
434438
:param str id: (required)
439+
:param PlaceOrderRequest place_order_request:
435440
:param _return_http_data_only: response data without head status code
436441
and headers
437442
:param _preload_content: if False, the urllib3.HTTPResponse object will
@@ -448,7 +453,7 @@ def place_order_with_http_info(self, id, **kwargs): # noqa: E501
448453

449454
local_var_params = locals()
450455

451-
all_params = ["id"] # noqa: E501
456+
all_params = ["id", "place_order_request"] # noqa: E501
452457
all_params.append("async_req")
453458
all_params.append("_return_http_data_only")
454459
all_params.append("_preload_content")
@@ -488,6 +493,7 @@ def place_order_with_http_info(self, id, **kwargs): # noqa: E501
488493
all_params.append("currency")
489494
all_params.append("amount")
490495
all_params.append("unit")
496+
all_params.append("issued_to")
491497

492498
for key, val in six.iteritems(local_var_params["kwargs"]):
493499
if key not in all_params:
@@ -526,11 +532,20 @@ def place_order_with_http_info(self, id, **kwargs): # noqa: E501
526532
local_var_files = {}
527533

528534
body_params = None
535+
if "place_order_request" in local_var_params:
536+
body_params = local_var_params["place_order_request"]
529537
# HTTP header `Accept`
530538
header_params["Accept"] = self.api_client.select_header_accept(
531539
["application/json"]
532540
) # noqa: E501
533541

542+
# HTTP header `Content-Type`
543+
header_params[
544+
"Content-Type"
545+
] = self.api_client.select_header_content_type( # noqa: E501
546+
["application/json"]
547+
) # noqa: E501
548+
534549
# Authentication setting
535550
auth_settings = ["bearer_auth"] # noqa: E501
536551

@@ -646,6 +661,7 @@ def retrieve_order_with_http_info(self, id, **kwargs): # noqa: E501
646661
all_params.append("currency")
647662
all_params.append("amount")
648663
all_params.append("unit")
664+
all_params.append("issued_to")
649665

650666
for key, val in six.iteritems(local_var_params["kwargs"]):
651667
if key not in all_params:
@@ -815,6 +831,7 @@ def retrieve_orders_with_http_info(self, **kwargs): # noqa: E501
815831
all_params.append("currency")
816832
all_params.append("amount")
817833
all_params.append("unit")
834+
all_params.append("issued_to")
818835

819836
for key, val in six.iteritems(local_var_params["kwargs"]):
820837
if key not in all_params:

patch_api/api/projects_api.py

+3
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ class ProjectsApi(object):
6363
"currency",
6464
"amount",
6565
"unit",
66+
"issued_to",
6667
]
6768

6869
def __init__(self, api_client=None):
@@ -162,6 +163,7 @@ def retrieve_project_with_http_info(self, id, **kwargs): # noqa: E501
162163
all_params.append("currency")
163164
all_params.append("amount")
164165
all_params.append("unit")
166+
all_params.append("issued_to")
165167

166168
for key, val in six.iteritems(local_var_params["kwargs"]):
167169
if key not in all_params:
@@ -338,6 +340,7 @@ def retrieve_projects_with_http_info(self, **kwargs): # noqa: E501
338340
all_params.append("currency")
339341
all_params.append("amount")
340342
all_params.append("unit")
343+
all_params.append("issued_to")
341344

342345
for key, val in six.iteritems(local_var_params["kwargs"]):
343346
if key not in all_params:

patch_api/api/technology_types_api.py

+2
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ class TechnologyTypesApi(object):
6363
"currency",
6464
"amount",
6565
"unit",
66+
"issued_to",
6667
]
6768

6869
def __init__(self, api_client=None):
@@ -158,6 +159,7 @@ def retrieve_technology_types_with_http_info(self, **kwargs): # noqa: E501
158159
all_params.append("currency")
159160
all_params.append("amount")
160161
all_params.append("unit")
162+
all_params.append("issued_to")
161163

162164
for key, val in six.iteritems(local_var_params["kwargs"]):
163165
if key not in all_params:

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.22.0"
94+
self.user_agent = "patch-python/1.23.0"
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.22.0".format(
344+
"SDK Package Version: 1.23.0".format(
345345
env=sys.platform, pyversion=sys.version
346346
)
347347
)

patch_api/models/__init__.py

+3
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
from patch_api.models.estimate_response import EstimateResponse
4040
from patch_api.models.highlight import Highlight
4141
from patch_api.models.inventory import Inventory
42+
from patch_api.models.issued_to import IssuedTo
4243
from patch_api.models.meta_index_object import MetaIndexObject
4344
from patch_api.models.order import Order
4445
from patch_api.models.order_inventory import OrderInventory
@@ -47,10 +48,12 @@
4748
from patch_api.models.order_response import OrderResponse
4849
from patch_api.models.parent_technology_type import ParentTechnologyType
4950
from patch_api.models.photo import Photo
51+
from patch_api.models.place_order_request import PlaceOrderRequest
5052
from patch_api.models.project import Project
5153
from patch_api.models.project_list_response import ProjectListResponse
5254
from patch_api.models.project_response import ProjectResponse
5355
from patch_api.models.sdg import Sdg
5456
from patch_api.models.standard import Standard
5557
from patch_api.models.technology_type import TechnologyType
5658
from patch_api.models.technology_type_list_response import TechnologyTypeListResponse
59+
from patch_api.models.v1_orders_issued_to import V1OrdersIssuedTo

patch_api/models/allocation.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def id(self, id):
8585
def production(self):
8686
"""Gets the production of this Allocation. # noqa: E501
8787
88-
A boolean indicating if this project is a production or test mode project. # noqa: E501
88+
A boolean indicating if this project is a production or demo mode project. # noqa: E501
8989
9090
:return: The production of this Allocation. # noqa: E501
9191
:rtype: bool
@@ -96,7 +96,7 @@ def production(self):
9696
def production(self, production):
9797
"""Sets the production of this Allocation.
9898
99-
A boolean indicating if this project is a production or test mode project. # noqa: E501
99+
A boolean indicating if this project is a production or demo mode project. # noqa: E501
100100
101101
:param production: The production of this Allocation. # noqa: E501
102102
:type: bool

patch_api/models/create_order_request.py

+26
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ class CreateOrderRequest(object):
4444
"currency": "str",
4545
"amount": "int",
4646
"unit": "str",
47+
"issued_to": "V1OrdersIssuedTo",
4748
}
4849

4950
attribute_map = {
@@ -57,6 +58,7 @@ class CreateOrderRequest(object):
5758
"currency": "currency",
5859
"amount": "amount",
5960
"unit": "unit",
61+
"issued_to": "issued_to",
6062
}
6163

6264
def __init__(
@@ -71,6 +73,7 @@ def __init__(
7173
currency=None,
7274
amount=None,
7375
unit=None,
76+
issued_to=None,
7477
local_vars_configuration=None,
7578
): # noqa: E501
7679
"""CreateOrderRequest - a model defined in OpenAPI""" # noqa: E501
@@ -88,6 +91,7 @@ def __init__(
8891
self._currency = None
8992
self._amount = None
9093
self._unit = None
94+
self._issued_to = None
9195
self.discriminator = None
9296

9397
self.mass_g = mass_g
@@ -100,6 +104,7 @@ def __init__(
100104
self.currency = currency
101105
self.amount = amount
102106
self.unit = unit
107+
self.issued_to = issued_to
103108

104109
@property
105110
def mass_g(self):
@@ -395,6 +400,27 @@ def unit(self, unit):
395400

396401
self._unit = unit
397402

403+
@property
404+
def issued_to(self):
405+
"""Gets the issued_to of this CreateOrderRequest. # noqa: E501
406+
407+
408+
:return: The issued_to of this CreateOrderRequest. # noqa: E501
409+
:rtype: V1OrdersIssuedTo
410+
"""
411+
return self._issued_to
412+
413+
@issued_to.setter
414+
def issued_to(self, issued_to):
415+
"""Sets the issued_to of this CreateOrderRequest.
416+
417+
418+
:param issued_to: The issued_to of this CreateOrderRequest. # noqa: E501
419+
:type: V1OrdersIssuedTo
420+
"""
421+
422+
self._issued_to = issued_to
423+
398424
def to_dict(self):
399425
"""Returns the model properties as a dict"""
400426
result = {}

0 commit comments

Comments
 (0)