Skip to content

Commit a4263d9

Browse files
api spec changes
1 parent 3001817 commit a4263d9

693 files changed

Lines changed: 76147 additions & 1461 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CyberSource/__init__.py

Lines changed: 213 additions & 13 deletions
Large diffs are not rendered by default.

CyberSource/api/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
from .chargeback_details_api import ChargebackDetailsApi
88
from .chargeback_summaries_api import ChargebackSummariesApi
99
from .conversion_details_api import ConversionDetailsApi
10+
from .create_new_webhooks_api import CreateNewWebhooksApi
1011
from .customer_api import CustomerApi
1112
from .customer_payment_instrument_api import CustomerPaymentInstrumentApi
1213
from .customer_shipping_address_api import CustomerShippingAddressApi
@@ -16,6 +17,8 @@
1617
from .emv_tag_details_api import EMVTagDetailsApi
1718
from .instrument_identifier_api import InstrumentIdentifierApi
1819
from .interchange_clearing_level_details_api import InterchangeClearingLevelDetailsApi
20+
from .manage_webhooks_api import ManageWebhooksApi
21+
from .merchant_boarding_api import MerchantBoardingApi
1922
from .microform_integration_api import MicroformIntegrationApi
2023
from .net_fundings_api import NetFundingsApi
2124
from .notification_of_changes_api import NotificationOfChangesApi

CyberSource/api/batches_api.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def get_batch_report(self, batch_id, **kwargs):
6060
:param callback function: The callback function
6161
for asynchronous request. (optional)
6262
:param str batch_id: Unique identification number assigned to the submitted request. (required)
63-
:return: InlineResponse2004
63+
:return: InlineResponse2007
6464
If the method is called asynchronously,
6565
returns the request thread.
6666
"""
@@ -90,7 +90,7 @@ def get_batch_report_with_http_info(self, batch_id, **kwargs):
9090
:param callback function: The callback function
9191
for asynchronous request. (optional)
9292
:param str batch_id: Unique identification number assigned to the submitted request. (required)
93-
:return: InlineResponse2004
93+
:return: InlineResponse2007
9494
If the method is called asynchronously,
9595
returns the request thread.
9696
"""
@@ -158,7 +158,7 @@ def get_batch_report_with_http_info(self, batch_id, **kwargs):
158158
body=body_params,
159159
post_params=form_params,
160160
files=local_var_files,
161-
response_type='InlineResponse2004',
161+
response_type='InlineResponse2007',
162162
auth_settings=auth_settings,
163163
callback=params.get('callback'),
164164
_return_http_data_only=params.get('_return_http_data_only'),
@@ -181,7 +181,7 @@ def get_batch_status(self, batch_id, **kwargs):
181181
:param callback function: The callback function
182182
for asynchronous request. (optional)
183183
:param str batch_id: Unique identification number assigned to the submitted request. (required)
184-
:return: InlineResponse2003
184+
:return: InlineResponse2006
185185
If the method is called asynchronously,
186186
returns the request thread.
187187
"""
@@ -211,7 +211,7 @@ def get_batch_status_with_http_info(self, batch_id, **kwargs):
211211
:param callback function: The callback function
212212
for asynchronous request. (optional)
213213
:param str batch_id: Unique identification number assigned to the submitted request. (required)
214-
:return: InlineResponse2003
214+
:return: InlineResponse2006
215215
If the method is called asynchronously,
216216
returns the request thread.
217217
"""
@@ -279,7 +279,7 @@ def get_batch_status_with_http_info(self, batch_id, **kwargs):
279279
body=body_params,
280280
post_params=form_params,
281281
files=local_var_files,
282-
response_type='InlineResponse2003',
282+
response_type='InlineResponse2006',
283283
auth_settings=auth_settings,
284284
callback=params.get('callback'),
285285
_return_http_data_only=params.get('_return_http_data_only'),
@@ -305,7 +305,7 @@ def get_batches_list(self, **kwargs):
305305
:param int limit: The maximum number that can be returned in the array starting from the offset record in zero-based dataset.
306306
:param str from_date: ISO-8601 format: yyyyMMddTHHmmssZ
307307
:param str to_date: ISO-8601 format: yyyyMMddTHHmmssZ
308-
:return: InlineResponse2002
308+
:return: InlineResponse2005
309309
If the method is called asynchronously,
310310
returns the request thread.
311311
"""
@@ -338,7 +338,7 @@ def get_batches_list_with_http_info(self, **kwargs):
338338
:param int limit: The maximum number that can be returned in the array starting from the offset record in zero-based dataset.
339339
:param str from_date: ISO-8601 format: yyyyMMddTHHmmssZ
340340
:param str to_date: ISO-8601 format: yyyyMMddTHHmmssZ
341-
:return: InlineResponse2002
341+
:return: InlineResponse2005
342342
If the method is called asynchronously,
343343
returns the request thread.
344344
"""
@@ -410,7 +410,7 @@ def get_batches_list_with_http_info(self, **kwargs):
410410
body=body_params,
411411
post_params=form_params,
412412
files=local_var_files,
413-
response_type='InlineResponse2002',
413+
response_type='InlineResponse2005',
414414
auth_settings=auth_settings,
415415
callback=params.get('callback'),
416416
_return_http_data_only=params.get('_return_http_data_only'),

0 commit comments

Comments
 (0)