Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
141 changes: 79 additions & 62 deletions CyberSource/__init__.py

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions CyberSource/api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
from .subscriptions_api import SubscriptionsApi
from .subscriptions_follow_ons_api import SubscriptionsFollowOnsApi
from .token_api import TokenApi
from .tokenize_api import TokenizeApi
from .tokenized_card_api import TokenizedCardApi
from .transaction_batches_api import TransactionBatchesApi
from .transaction_details_api import TransactionDetailsApi
Expand Down
6 changes: 3 additions & 3 deletions CyberSource/api/bank_account_validation_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def bank_account_validation_request(self, account_validations_request, **kwargs)
:param callback function: The callback function
for asynchronous request. (optional)
:param AccountValidationsRequest account_validations_request: (required)
:return: InlineResponse20013
:return: InlineResponse20014
If the method is called asynchronously,
returns the request thread.

Expand Down Expand Up @@ -92,7 +92,7 @@ def bank_account_validation_request_with_http_info(self, account_validations_req
:param callback function: The callback function
for asynchronous request. (optional)
:param AccountValidationsRequest account_validations_request: (required)
:return: InlineResponse20013
:return: InlineResponse20014
If the method is called asynchronously,
returns the request thread.
"""
Expand Down Expand Up @@ -157,7 +157,7 @@ def bank_account_validation_request_with_http_info(self, account_validations_req
body=body_params,
post_params=form_params,
files=local_var_files,
response_type='InlineResponse20013',
response_type='InlineResponse20014',
auth_settings=auth_settings,
callback=params.get('callback'),
_return_http_data_only=params.get('_return_http_data_only'),
Expand Down
18 changes: 9 additions & 9 deletions CyberSource/api/batches_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def get_batch_report(self, batch_id, **kwargs):
:param callback function: The callback function
for asynchronous request. (optional)
:param str batch_id: Unique identification number assigned to the submitted request. (required)
:return: InlineResponse20012
:return: InlineResponse20013
If the method is called asynchronously,
returns the request thread.
"""
Expand Down Expand Up @@ -89,7 +89,7 @@ def get_batch_report_with_http_info(self, batch_id, **kwargs):
:param callback function: The callback function
for asynchronous request. (optional)
:param str batch_id: Unique identification number assigned to the submitted request. (required)
:return: InlineResponse20012
:return: InlineResponse20013
If the method is called asynchronously,
returns the request thread.
"""
Expand Down Expand Up @@ -158,7 +158,7 @@ def get_batch_report_with_http_info(self, batch_id, **kwargs):
body=body_params,
post_params=form_params,
files=local_var_files,
response_type='InlineResponse20012',
response_type='InlineResponse20013',
auth_settings=auth_settings,
callback=params.get('callback'),
_return_http_data_only=params.get('_return_http_data_only'),
Expand All @@ -181,7 +181,7 @@ def get_batch_status(self, batch_id, **kwargs):
:param callback function: The callback function
for asynchronous request. (optional)
:param str batch_id: Unique identification number assigned to the submitted request. (required)
:return: InlineResponse20011
:return: InlineResponse20012
If the method is called asynchronously,
returns the request thread.
"""
Expand Down Expand Up @@ -210,7 +210,7 @@ def get_batch_status_with_http_info(self, batch_id, **kwargs):
:param callback function: The callback function
for asynchronous request. (optional)
:param str batch_id: Unique identification number assigned to the submitted request. (required)
:return: InlineResponse20011
:return: InlineResponse20012
If the method is called asynchronously,
returns the request thread.
"""
Expand Down Expand Up @@ -279,7 +279,7 @@ def get_batch_status_with_http_info(self, batch_id, **kwargs):
body=body_params,
post_params=form_params,
files=local_var_files,
response_type='InlineResponse20011',
response_type='InlineResponse20012',
auth_settings=auth_settings,
callback=params.get('callback'),
_return_http_data_only=params.get('_return_http_data_only'),
Expand All @@ -305,7 +305,7 @@ def get_batches_list(self, **kwargs):
:param int limit: The maximum number that can be returned in the array starting from the offset record in zero-based dataset.
:param str from_date: ISO-8601 format: yyyyMMddTHHmmssZ
:param str to_date: ISO-8601 format: yyyyMMddTHHmmssZ
:return: InlineResponse20010
:return: InlineResponse20011
If the method is called asynchronously,
returns the request thread.
"""
Expand Down Expand Up @@ -337,7 +337,7 @@ def get_batches_list_with_http_info(self, **kwargs):
:param int limit: The maximum number that can be returned in the array starting from the offset record in zero-based dataset.
:param str from_date: ISO-8601 format: yyyyMMddTHHmmssZ
:param str to_date: ISO-8601 format: yyyyMMddTHHmmssZ
:return: InlineResponse20010
:return: InlineResponse20011
If the method is called asynchronously,
returns the request thread.
"""
Expand Down Expand Up @@ -407,7 +407,7 @@ def get_batches_list_with_http_info(self, **kwargs):
body=body_params,
post_params=form_params,
files=local_var_files,
response_type='InlineResponse20010',
response_type='InlineResponse20011',
auth_settings=auth_settings,
callback=params.get('callback'),
_return_http_data_only=params.get('_return_http_data_only'),
Expand Down
6 changes: 3 additions & 3 deletions CyberSource/api/create_new_webhooks_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def find_products_to_subscribe(self, organization_id, **kwargs):
:param callback function: The callback function
for asynchronous request. (optional)
:param str organization_id: The Organization Identifier. (required)
:return: list[InlineResponse2004]
:return: list[InlineResponse2005]
If the method is called asynchronously,
returns the request thread.
"""
Expand Down Expand Up @@ -89,7 +89,7 @@ def find_products_to_subscribe_with_http_info(self, organization_id, **kwargs):
:param callback function: The callback function
for asynchronous request. (optional)
:param str organization_id: The Organization Identifier. (required)
:return: list[InlineResponse2004]
:return: list[InlineResponse2005]
If the method is called asynchronously,
returns the request thread.
"""
Expand Down Expand Up @@ -158,7 +158,7 @@ def find_products_to_subscribe_with_http_info(self, organization_id, **kwargs):
body=body_params,
post_params=form_params,
files=local_var_files,
response_type='list[InlineResponse2004]',
response_type='list[InlineResponse2005]',
auth_settings=auth_settings,
callback=params.get('callback'),
_return_http_data_only=params.get('_return_http_data_only'),
Expand Down
4 changes: 2 additions & 2 deletions CyberSource/api/customer_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ def patch_customer_with_http_info(self, customer_id, patch_customer_request, **k
body_params = sdkTracker.insert_developer_id_tracker(body_params, 'patch_customer_request', self.api_client.mconfig.run_environment, self.api_client.mconfig.defaultDeveloperId)
body_params = process_body(body_params)

inbound_mle_status = "false"
inbound_mle_status = "optional"
if MLEUtility.check_is_mle_for_api(self.api_client.mconfig, inbound_mle_status, "patch_customer,patch_customer_with_http_info"):
body_params = MLEUtility.encrypt_request_payload(self.api_client.mconfig, body_params)

Expand Down Expand Up @@ -528,7 +528,7 @@ def post_customer_with_http_info(self, post_customer_request, **kwargs):
body_params = sdkTracker.insert_developer_id_tracker(body_params, 'post_customer_request', self.api_client.mconfig.run_environment, self.api_client.mconfig.defaultDeveloperId)
body_params = process_body(body_params)

inbound_mle_status = "false"
inbound_mle_status = "optional"
if MLEUtility.check_is_mle_for_api(self.api_client.mconfig, inbound_mle_status, "post_customer,post_customer_with_http_info"):
body_params = MLEUtility.encrypt_request_payload(self.api_client.mconfig, body_params)

Expand Down
4 changes: 2 additions & 2 deletions CyberSource/api/customer_payment_instrument_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ def patch_customers_payment_instrument_with_http_info(self, customer_id, payment
body_params = sdkTracker.insert_developer_id_tracker(body_params, 'patch_customer_payment_instrument_request', self.api_client.mconfig.run_environment, self.api_client.mconfig.defaultDeveloperId)
body_params = process_body(body_params)

inbound_mle_status = "false"
inbound_mle_status = "optional"
if MLEUtility.check_is_mle_for_api(self.api_client.mconfig, inbound_mle_status, "patch_customers_payment_instrument,patch_customers_payment_instrument_with_http_info"):
body_params = MLEUtility.encrypt_request_payload(self.api_client.mconfig, body_params)

Expand Down Expand Up @@ -697,7 +697,7 @@ def post_customer_payment_instrument_with_http_info(self, customer_id, post_cust
body_params = sdkTracker.insert_developer_id_tracker(body_params, 'post_customer_payment_instrument_request', self.api_client.mconfig.run_environment, self.api_client.mconfig.defaultDeveloperId)
body_params = process_body(body_params)

inbound_mle_status = "false"
inbound_mle_status = "optional"
if MLEUtility.check_is_mle_for_api(self.api_client.mconfig, inbound_mle_status, "post_customer_payment_instrument,post_customer_payment_instrument_with_http_info"):
body_params = MLEUtility.encrypt_request_payload(self.api_client.mconfig, body_params)

Expand Down
4 changes: 2 additions & 2 deletions CyberSource/api/customer_shipping_address_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ def patch_customers_shipping_address_with_http_info(self, customer_id, shipping_
body_params = sdkTracker.insert_developer_id_tracker(body_params, 'patch_customer_shipping_address_request', self.api_client.mconfig.run_environment, self.api_client.mconfig.defaultDeveloperId)
body_params = process_body(body_params)

inbound_mle_status = "false"
inbound_mle_status = "optional"
if MLEUtility.check_is_mle_for_api(self.api_client.mconfig, inbound_mle_status, "patch_customers_shipping_address,patch_customers_shipping_address_with_http_info"):
body_params = MLEUtility.encrypt_request_payload(self.api_client.mconfig, body_params)

Expand Down Expand Up @@ -697,7 +697,7 @@ def post_customer_shipping_address_with_http_info(self, customer_id, post_custom
body_params = sdkTracker.insert_developer_id_tracker(body_params, 'post_customer_shipping_address_request', self.api_client.mconfig.run_environment, self.api_client.mconfig.defaultDeveloperId)
body_params = process_body(body_params)

inbound_mle_status = "false"
inbound_mle_status = "optional"
if MLEUtility.check_is_mle_for_api(self.api_client.mconfig, inbound_mle_status, "post_customer_shipping_address,post_customer_shipping_address_with_http_info"):
body_params = MLEUtility.encrypt_request_payload(self.api_client.mconfig, body_params)

Expand Down
6 changes: 3 additions & 3 deletions CyberSource/api/decision_manager_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def action_decision_manager_case(self, id, case_management_actions_request, **kw
for asynchronous request. (optional)
:param str id: An unique identification number generated by Cybersource to identify the submitted request. (required)
:param CaseManagementActionsRequest case_management_actions_request: (required)
:return: InlineResponse2001
:return: InlineResponse2002
If the method is called asynchronously,
returns the request thread.
"""
Expand Down Expand Up @@ -91,7 +91,7 @@ def action_decision_manager_case_with_http_info(self, id, case_management_action
for asynchronous request. (optional)
:param str id: An unique identification number generated by Cybersource to identify the submitted request. (required)
:param CaseManagementActionsRequest case_management_actions_request: (required)
:return: InlineResponse2001
:return: InlineResponse2002
If the method is called asynchronously,
returns the request thread.
"""
Expand Down Expand Up @@ -163,7 +163,7 @@ def action_decision_manager_case_with_http_info(self, id, case_management_action
body=body_params,
post_params=form_params,
files=local_var_files,
response_type='InlineResponse2001',
response_type='InlineResponse2002',
auth_settings=auth_settings,
callback=params.get('callback'),
_return_http_data_only=params.get('_return_http_data_only'),
Expand Down
6 changes: 3 additions & 3 deletions CyberSource/api/device_de_association_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def post_de_associate_v3_terminal(self, device_de_associate_v3_request, **kwargs
:param callback function: The callback function
for asynchronous request. (optional)
:param list[DeviceDeAssociateV3Request] device_de_associate_v3_request: deviceId that has to be de-associated to the destination organizationId. (required)
:return: list[InlineResponse2008]
:return: list[InlineResponse2009]
If the method is called asynchronously,
returns the request thread.
"""
Expand Down Expand Up @@ -206,7 +206,7 @@ def post_de_associate_v3_terminal_with_http_info(self, device_de_associate_v3_re
:param callback function: The callback function
for asynchronous request. (optional)
:param list[DeviceDeAssociateV3Request] device_de_associate_v3_request: deviceId that has to be de-associated to the destination organizationId. (required)
:return: list[InlineResponse2008]
:return: list[InlineResponse2009]
If the method is called asynchronously,
returns the request thread.
"""
Expand Down Expand Up @@ -271,7 +271,7 @@ def post_de_associate_v3_terminal_with_http_info(self, device_de_associate_v3_re
body=body_params,
post_params=form_params,
files=local_var_files,
response_type='list[InlineResponse2008]',
response_type='list[InlineResponse2009]',
auth_settings=auth_settings,
callback=params.get('callback'),
_return_http_data_only=params.get('_return_http_data_only'),
Expand Down
12 changes: 6 additions & 6 deletions CyberSource/api/device_search_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def post_search_query(self, post_device_search_request, **kwargs):
:param callback function: The callback function
for asynchronous request. (optional)
:param PostDeviceSearchRequest post_device_search_request: (required)
:return: InlineResponse2007
:return: InlineResponse2008
If the method is called asynchronously,
returns the request thread.
"""
Expand Down Expand Up @@ -89,7 +89,7 @@ def post_search_query_with_http_info(self, post_device_search_request, **kwargs)
:param callback function: The callback function
for asynchronous request. (optional)
:param PostDeviceSearchRequest post_device_search_request: (required)
:return: InlineResponse2007
:return: InlineResponse2008
If the method is called asynchronously,
returns the request thread.
"""
Expand Down Expand Up @@ -154,7 +154,7 @@ def post_search_query_with_http_info(self, post_device_search_request, **kwargs)
body=body_params,
post_params=form_params,
files=local_var_files,
response_type='InlineResponse2007',
response_type='InlineResponse2008',
auth_settings=auth_settings,
callback=params.get('callback'),
_return_http_data_only=params.get('_return_http_data_only'),
Expand All @@ -177,7 +177,7 @@ def post_search_query_v3(self, post_device_search_request_v3, **kwargs):
:param callback function: The callback function
for asynchronous request. (optional)
:param PostDeviceSearchRequestV3 post_device_search_request_v3: (required)
:return: InlineResponse2009
:return: InlineResponse20010
If the method is called asynchronously,
returns the request thread.
"""
Expand Down Expand Up @@ -206,7 +206,7 @@ def post_search_query_v3_with_http_info(self, post_device_search_request_v3, **k
:param callback function: The callback function
for asynchronous request. (optional)
:param PostDeviceSearchRequestV3 post_device_search_request_v3: (required)
:return: InlineResponse2009
:return: InlineResponse20010
If the method is called asynchronously,
returns the request thread.
"""
Expand Down Expand Up @@ -271,7 +271,7 @@ def post_search_query_v3_with_http_info(self, post_device_search_request_v3, **k
body=body_params,
post_params=form_params,
files=local_var_files,
response_type='InlineResponse2009',
response_type='InlineResponse20010',
auth_settings=auth_settings,
callback=params.get('callback'),
_return_http_data_only=params.get('_return_http_data_only'),
Expand Down
Loading