Skip to content

Commit e17119f

Browse files
authoredApr 28, 2021
Merge pull request #68 from snavinch/master
+ April 2021 SDK Release
2 parents 6f1db44 + d2c4639 commit e17119f

File tree

87 files changed

+710
-518
lines changed

Some content is hidden

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

87 files changed

+710
-518
lines changed
 

‎CyberSource/__init__.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -107,14 +107,14 @@
107107
from .models.patch_instrument_identifier_request import PatchInstrumentIdentifierRequest
108108
from .models.patch_payment_instrument_request import PatchPaymentInstrumentRequest
109109
from .models.payer_auth_setup_request import PayerAuthSetupRequest
110-
from .models.payment_instrument_list_for_customer import PaymentInstrumentListForCustomer
111-
from .models.payment_instrument_list_for_customer__embedded import PaymentInstrumentListForCustomerEmbedded
112-
from .models.payment_instrument_list_for_customer__links import PaymentInstrumentListForCustomerLinks
113-
from .models.payment_instrument_list_for_customer__links_first import PaymentInstrumentListForCustomerLinksFirst
114-
from .models.payment_instrument_list_for_customer__links_last import PaymentInstrumentListForCustomerLinksLast
115-
from .models.payment_instrument_list_for_customer__links_next import PaymentInstrumentListForCustomerLinksNext
116-
from .models.payment_instrument_list_for_customer__links_prev import PaymentInstrumentListForCustomerLinksPrev
117-
from .models.payment_instrument_list_for_customer__links_self import PaymentInstrumentListForCustomerLinksSelf
110+
from .models.payment_instrument_list import PaymentInstrumentList
111+
from .models.payment_instrument_list__embedded import PaymentInstrumentListEmbedded
112+
from .models.payment_instrument_list__links import PaymentInstrumentListLinks
113+
from .models.payment_instrument_list__links_first import PaymentInstrumentListLinksFirst
114+
from .models.payment_instrument_list__links_last import PaymentInstrumentListLinksLast
115+
from .models.payment_instrument_list__links_next import PaymentInstrumentListLinksNext
116+
from .models.payment_instrument_list__links_prev import PaymentInstrumentListLinksPrev
117+
from .models.payment_instrument_list__links_self import PaymentInstrumentListLinksSelf
118118
from .models.post_customer_payment_instrument_request import PostCustomerPaymentInstrumentRequest
119119
from .models.post_customer_request import PostCustomerRequest
120120
from .models.post_customer_shipping_address_request import PostCustomerShippingAddressRequest

‎CyberSource/apis/customer_payment_instrument_api.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ def get_customer_payment_instruments_list(self, customer_token_id, **kwargs):
313313
:param str profile_id: The id of a profile containing user specific TMS configuration.
314314
:param int offset: Starting record in zero-based dataset that should be returned as the first object in the array. Default is 0.
315315
:param int limit: The maximum number that can be returned in the array starting from the offset record in zero-based dataset. Default is 20, maximum is 100.
316-
:return: PaymentInstrumentListForCustomer
316+
:return: PaymentInstrumentList
317317
If the method is called asynchronously,
318318
returns the request thread.
319319
"""
@@ -341,7 +341,7 @@ def get_customer_payment_instruments_list_with_http_info(self, customer_token_id
341341
:param str profile_id: The id of a profile containing user specific TMS configuration.
342342
:param int offset: Starting record in zero-based dataset that should be returned as the first object in the array. Default is 0.
343343
:param int limit: The maximum number that can be returned in the array starting from the offset record in zero-based dataset. Default is 20, maximum is 100.
344-
:return: PaymentInstrumentListForCustomer
344+
:return: PaymentInstrumentList
345345
If the method is called asynchronously,
346346
returns the request thread.
347347
"""
@@ -418,7 +418,7 @@ def get_customer_payment_instruments_list_with_http_info(self, customer_token_id
418418
body=body_params,
419419
post_params=form_params,
420420
files=local_var_files,
421-
response_type='PaymentInstrumentListForCustomer',
421+
response_type='PaymentInstrumentList',
422422
auth_settings=auth_settings,
423423
callback=params.get('callback'),
424424
_return_http_data_only=params.get('_return_http_data_only'),

0 commit comments

Comments
 (0)
Please sign in to comment.