Skip to content

Commit 141cf21

Browse files
authored
Merge pull request #145 from CyberSource/release/april25
Release April 25
2 parents 826d0a4 + 63b837f commit 141cf21

File tree

434 files changed

+177716
-8054
lines changed

Some content is hidden

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

434 files changed

+177716
-8054
lines changed

CyberSource/__init__.py

Lines changed: 92 additions & 28 deletions
Large diffs are not rendered by default.

CyberSource/api/__init__.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
from .flex_api_api import FlexAPIApi
1919
from .instrument_identifier_api import InstrumentIdentifierApi
2020
from .interchange_clearing_level_details_api import InterchangeClearingLevelDetailsApi
21+
from .invoice_settings_api import InvoiceSettingsApi
22+
from .invoices_api import InvoicesApi
2123
from .manage_webhooks_api import ManageWebhooksApi
2224
from .merchant_boarding_api import MerchantBoardingApi
2325
from .microform_integration_api import MicroformIntegrationApi
@@ -26,6 +28,7 @@
2628
from .payer_authentication_api import PayerAuthenticationApi
2729
from .payment_batch_summaries_api import PaymentBatchSummariesApi
2830
from .payment_instrument_api import PaymentInstrumentApi
31+
from .payment_links_api import PaymentLinksApi
2932
from .payouts_api import PayoutsApi
3033
from .plans_api import PlansApi
3134
from .purchase_and_refund_details_api import PurchaseAndRefundDetailsApi
@@ -39,7 +42,9 @@
3942
from .search_transactions_api import SearchTransactionsApi
4043
from .secure_file_share_api import SecureFileShareApi
4144
from .subscriptions_api import SubscriptionsApi
45+
from .subscriptions_follow_ons_api import SubscriptionsFollowOnsApi
4246
from .token_api import TokenApi
47+
from .tokenized_card_api import TokenizedCardApi
4348
from .transaction_batches_api import TransactionBatchesApi
4449
from .transaction_details_api import TransactionDetailsApi
4550
from .transient_token_data_api import TransientTokenDataApi
@@ -50,8 +55,6 @@
5055
from .billing_agreements_api import BillingAgreementsApi
5156
from .capture_api import CaptureApi
5257
from .credit_api import CreditApi
53-
from .invoice_settings_api import InvoiceSettingsApi
54-
from .invoices_api import InvoicesApi
5558
from .orders_api import OrdersApi
5659
from .payments_api import PaymentsApi
5760
from .refund_api import RefundApi

CyberSource/api/batches_api.py

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def get_batch_report(self, batch_id, **kwargs):
6262
:param callback function: The callback function
6363
for asynchronous request. (optional)
6464
:param str batch_id: Unique identification number assigned to the submitted request. (required)
65-
:return: InlineResponse2004
65+
:return: InlineResponse2007
6666
If the method is called asynchronously,
6767
returns the request thread.
6868
"""
@@ -92,7 +92,7 @@ def get_batch_report_with_http_info(self, batch_id, **kwargs):
9292
:param callback function: The callback function
9393
for asynchronous request. (optional)
9494
:param str batch_id: Unique identification number assigned to the submitted request. (required)
95-
:return: InlineResponse2004
95+
:return: InlineResponse2007
9696
If the method is called asynchronously,
9797
returns the request thread.
9898
"""
@@ -160,7 +160,7 @@ def get_batch_report_with_http_info(self, batch_id, **kwargs):
160160
body=body_params,
161161
post_params=form_params,
162162
files=local_var_files,
163-
response_type='InlineResponse2004',
163+
response_type='InlineResponse2007',
164164
auth_settings=auth_settings,
165165
callback=params.get('callback'),
166166
_return_http_data_only=params.get('_return_http_data_only'),
@@ -183,7 +183,7 @@ def get_batch_status(self, batch_id, **kwargs):
183183
:param callback function: The callback function
184184
for asynchronous request. (optional)
185185
:param str batch_id: Unique identification number assigned to the submitted request. (required)
186-
:return: InlineResponse2003
186+
:return: InlineResponse2006
187187
If the method is called asynchronously,
188188
returns the request thread.
189189
"""
@@ -213,7 +213,7 @@ def get_batch_status_with_http_info(self, batch_id, **kwargs):
213213
:param callback function: The callback function
214214
for asynchronous request. (optional)
215215
:param str batch_id: Unique identification number assigned to the submitted request. (required)
216-
:return: InlineResponse2003
216+
:return: InlineResponse2006
217217
If the method is called asynchronously,
218218
returns the request thread.
219219
"""
@@ -281,7 +281,7 @@ def get_batch_status_with_http_info(self, batch_id, **kwargs):
281281
body=body_params,
282282
post_params=form_params,
283283
files=local_var_files,
284-
response_type='InlineResponse2003',
284+
response_type='InlineResponse2006',
285285
auth_settings=auth_settings,
286286
callback=params.get('callback'),
287287
_return_http_data_only=params.get('_return_http_data_only'),
@@ -307,7 +307,7 @@ def get_batches_list(self, **kwargs):
307307
:param int limit: The maximum number that can be returned in the array starting from the offset record in zero-based dataset.
308308
:param str from_date: ISO-8601 format: yyyyMMddTHHmmssZ
309309
:param str to_date: ISO-8601 format: yyyyMMddTHHmmssZ
310-
:return: InlineResponse2002
310+
:return: InlineResponse2005
311311
If the method is called asynchronously,
312312
returns the request thread.
313313
"""
@@ -340,7 +340,7 @@ def get_batches_list_with_http_info(self, **kwargs):
340340
:param int limit: The maximum number that can be returned in the array starting from the offset record in zero-based dataset.
341341
:param str from_date: ISO-8601 format: yyyyMMddTHHmmssZ
342342
:param str to_date: ISO-8601 format: yyyyMMddTHHmmssZ
343-
:return: InlineResponse2002
343+
:return: InlineResponse2005
344344
If the method is called asynchronously,
345345
returns the request thread.
346346
"""
@@ -408,7 +408,7 @@ def get_batches_list_with_http_info(self, **kwargs):
408408
body=body_params,
409409
post_params=form_params,
410410
files=local_var_files,
411-
response_type='InlineResponse2002',
411+
response_type='InlineResponse2005',
412412
auth_settings=auth_settings,
413413
callback=params.get('callback'),
414414
_return_http_data_only=params.get('_return_http_data_only'),
@@ -419,7 +419,7 @@ def get_batches_list_with_http_info(self, **kwargs):
419419
def post_batch(self, body, **kwargs):
420420
"""
421421
Create a Batch
422-
**Create a Batch**<br>This resource accepts TMS tokens ids of a Customer, Payment Instrument or Instrument Identifier. <br> The card numbers for the supplied tokens ids are then sent to the relevant card associations to check for updates.<br>The following type of batches can be submitted: - **oneOff** batch containing tokens id for Visa or MasterCard card numbers. - **amexRegistration** batch containing tokens id for Amex card numbers. A batch id will be returned on a successful response which can be used to get the batch status and the batch report.
422+
**Create a Batch**<br>This resource accepts TMS tokens ids of a Customer, Payment Instrument or Instrument Identifier. <br> The card numbers for the supplied tokens ids are then sent to the relevant card associations to check for updates.<br>The following type of batches can be submitted: - **oneOff** batch containing tokens id for Visa or MasterCard card numbers. - **amexRegistration** batch containing tokens id for Amex card numbers. A batch id will be returned on a successful response which can be used to get the batch status and the batch report. The availability of API features for a merchant may depend on the portfolio configuration and may need to be enabled at the portfolio level before they can be added to merchant accounts.
423423
This method makes a synchronous HTTP request by default. To make an
424424
asynchronous HTTP request, please define a `callback` function
425425
to be invoked when receiving the response.
@@ -449,7 +449,7 @@ def post_batch(self, body, **kwargs):
449449
def post_batch_with_http_info(self, body, **kwargs):
450450
"""
451451
Create a Batch
452-
**Create a Batch**<br>This resource accepts TMS tokens ids of a Customer, Payment Instrument or Instrument Identifier. <br> The card numbers for the supplied tokens ids are then sent to the relevant card associations to check for updates.<br>The following type of batches can be submitted: - **oneOff** batch containing tokens id for Visa or MasterCard card numbers. - **amexRegistration** batch containing tokens id for Amex card numbers. A batch id will be returned on a successful response which can be used to get the batch status and the batch report.
452+
**Create a Batch**<br>This resource accepts TMS tokens ids of a Customer, Payment Instrument or Instrument Identifier. <br> The card numbers for the supplied tokens ids are then sent to the relevant card associations to check for updates.<br>The following type of batches can be submitted: - **oneOff** batch containing tokens id for Visa or MasterCard card numbers. - **amexRegistration** batch containing tokens id for Amex card numbers. A batch id will be returned on a successful response which can be used to get the batch status and the batch report. The availability of API features for a merchant may depend on the portfolio configuration and may need to be enabled at the portfolio level before they can be added to merchant accounts.
453453
This method makes a synchronous HTTP request by default. To make an
454454
asynchronous HTTP request, please define a `callback` function
455455
to be invoked when receiving the response.

0 commit comments

Comments
 (0)