Skip to content

Commit f555c40

Browse files
authored
Merge pull request #79 from CyberSource/jan-2022
Jan 2022 Changes
2 parents 1c60172 + 4432876 commit f555c40

File tree

60 files changed

+2021
-58
lines changed

Some content is hidden

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

60 files changed

+2021
-58
lines changed

CyberSource/__init__.py

+5
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,7 @@
269269
from .models.ptsv2payments_health_care_information import Ptsv2paymentsHealthCareInformation
270270
from .models.ptsv2payments_health_care_information_amount_details import Ptsv2paymentsHealthCareInformationAmountDetails
271271
from .models.ptsv2payments_installment_information import Ptsv2paymentsInstallmentInformation
272+
from .models.ptsv2payments_invoice_details import Ptsv2paymentsInvoiceDetails
272273
from .models.ptsv2payments_issuer_information import Ptsv2paymentsIssuerInformation
273274
from .models.ptsv2payments_merchant_defined_information import Ptsv2paymentsMerchantDefinedInformation
274275
from .models.ptsv2payments_merchant_information import Ptsv2paymentsMerchantInformation
@@ -293,6 +294,7 @@
293294
from .models.ptsv2payments_payment_information_bank_account import Ptsv2paymentsPaymentInformationBankAccount
294295
from .models.ptsv2payments_payment_information_card import Ptsv2paymentsPaymentInformationCard
295296
from .models.ptsv2payments_payment_information_customer import Ptsv2paymentsPaymentInformationCustomer
297+
from .models.ptsv2payments_payment_information_e_wallet import Ptsv2paymentsPaymentInformationEWallet
296298
from .models.ptsv2payments_payment_information_fluid_data import Ptsv2paymentsPaymentInformationFluidData
297299
from .models.ptsv2payments_payment_information_instrument_identifier import Ptsv2paymentsPaymentInformationInstrumentIdentifier
298300
from .models.ptsv2payments_payment_information_legacy_token import Ptsv2paymentsPaymentInformationLegacyToken
@@ -314,6 +316,7 @@
314316
from .models.ptsv2payments_processing_information_loan_options import Ptsv2paymentsProcessingInformationLoanOptions
315317
from .models.ptsv2payments_processing_information_purchase_options import Ptsv2paymentsProcessingInformationPurchaseOptions
316318
from .models.ptsv2payments_processing_information_recurring_options import Ptsv2paymentsProcessingInformationRecurringOptions
319+
from .models.ptsv2payments_processor_information import Ptsv2paymentsProcessorInformation
317320
from .models.ptsv2payments_promotion_information import Ptsv2paymentsPromotionInformation
318321
from .models.ptsv2payments_recipient_information import Ptsv2paymentsRecipientInformation
319322
from .models.ptsv2payments_recurring_payment_information import Ptsv2paymentsRecurringPaymentInformation
@@ -372,6 +375,7 @@
372375
from .models.ptsv2paymentsidrefunds_order_information import Ptsv2paymentsidrefundsOrderInformation
373376
from .models.ptsv2paymentsidrefunds_order_information_line_items import Ptsv2paymentsidrefundsOrderInformationLineItems
374377
from .models.ptsv2paymentsidrefunds_payment_information import Ptsv2paymentsidrefundsPaymentInformation
378+
from .models.ptsv2paymentsidrefunds_payment_information_bank import Ptsv2paymentsidrefundsPaymentInformationBank
375379
from .models.ptsv2paymentsidrefunds_payment_information_card import Ptsv2paymentsidrefundsPaymentInformationCard
376380
from .models.ptsv2paymentsidrefunds_point_of_sale_information import Ptsv2paymentsidrefundsPointOfSaleInformation
377381
from .models.ptsv2paymentsidrefunds_processing_information import Ptsv2paymentsidrefundsProcessingInformation
@@ -443,6 +447,7 @@
443447
from .models.reporting_v3_retrieval_summaries_get200_response import ReportingV3RetrievalSummariesGet200Response
444448
from .models.reportingv3_report_downloads_get400_response import Reportingv3ReportDownloadsGet400Response
445449
from .models.reportingv3_report_downloads_get400_response_details import Reportingv3ReportDownloadsGet400ResponseDetails
450+
from .models.reportingv3reports_report_filters import Reportingv3reportsReportFilters
446451
from .models.reportingv3reports_report_preferences import Reportingv3reportsReportPreferences
447452
from .models.risk_v1_address_verifications_post201_response import RiskV1AddressVerificationsPost201Response
448453
from .models.risk_v1_address_verifications_post201_response_address_verification_information import RiskV1AddressVerificationsPost201ResponseAddressVerificationInformation

CyberSource/models/__init__.py

+5
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,7 @@
269269
from .ptsv2payments_health_care_information import Ptsv2paymentsHealthCareInformation
270270
from .ptsv2payments_health_care_information_amount_details import Ptsv2paymentsHealthCareInformationAmountDetails
271271
from .ptsv2payments_installment_information import Ptsv2paymentsInstallmentInformation
272+
from .ptsv2payments_invoice_details import Ptsv2paymentsInvoiceDetails
272273
from .ptsv2payments_issuer_information import Ptsv2paymentsIssuerInformation
273274
from .ptsv2payments_merchant_defined_information import Ptsv2paymentsMerchantDefinedInformation
274275
from .ptsv2payments_merchant_information import Ptsv2paymentsMerchantInformation
@@ -293,6 +294,7 @@
293294
from .ptsv2payments_payment_information_bank_account import Ptsv2paymentsPaymentInformationBankAccount
294295
from .ptsv2payments_payment_information_card import Ptsv2paymentsPaymentInformationCard
295296
from .ptsv2payments_payment_information_customer import Ptsv2paymentsPaymentInformationCustomer
297+
from .ptsv2payments_payment_information_e_wallet import Ptsv2paymentsPaymentInformationEWallet
296298
from .ptsv2payments_payment_information_fluid_data import Ptsv2paymentsPaymentInformationFluidData
297299
from .ptsv2payments_payment_information_instrument_identifier import Ptsv2paymentsPaymentInformationInstrumentIdentifier
298300
from .ptsv2payments_payment_information_legacy_token import Ptsv2paymentsPaymentInformationLegacyToken
@@ -314,6 +316,7 @@
314316
from .ptsv2payments_processing_information_loan_options import Ptsv2paymentsProcessingInformationLoanOptions
315317
from .ptsv2payments_processing_information_purchase_options import Ptsv2paymentsProcessingInformationPurchaseOptions
316318
from .ptsv2payments_processing_information_recurring_options import Ptsv2paymentsProcessingInformationRecurringOptions
319+
from .ptsv2payments_processor_information import Ptsv2paymentsProcessorInformation
317320
from .ptsv2payments_promotion_information import Ptsv2paymentsPromotionInformation
318321
from .ptsv2payments_recipient_information import Ptsv2paymentsRecipientInformation
319322
from .ptsv2payments_recurring_payment_information import Ptsv2paymentsRecurringPaymentInformation
@@ -372,6 +375,7 @@
372375
from .ptsv2paymentsidrefunds_order_information import Ptsv2paymentsidrefundsOrderInformation
373376
from .ptsv2paymentsidrefunds_order_information_line_items import Ptsv2paymentsidrefundsOrderInformationLineItems
374377
from .ptsv2paymentsidrefunds_payment_information import Ptsv2paymentsidrefundsPaymentInformation
378+
from .ptsv2paymentsidrefunds_payment_information_bank import Ptsv2paymentsidrefundsPaymentInformationBank
375379
from .ptsv2paymentsidrefunds_payment_information_card import Ptsv2paymentsidrefundsPaymentInformationCard
376380
from .ptsv2paymentsidrefunds_point_of_sale_information import Ptsv2paymentsidrefundsPointOfSaleInformation
377381
from .ptsv2paymentsidrefunds_processing_information import Ptsv2paymentsidrefundsProcessingInformation
@@ -443,6 +447,7 @@
443447
from .reporting_v3_retrieval_summaries_get200_response import ReportingV3RetrievalSummariesGet200Response
444448
from .reportingv3_report_downloads_get400_response import Reportingv3ReportDownloadsGet400Response
445449
from .reportingv3_report_downloads_get400_response_details import Reportingv3ReportDownloadsGet400ResponseDetails
450+
from .reportingv3reports_report_filters import Reportingv3reportsReportFilters
446451
from .reportingv3reports_report_preferences import Reportingv3reportsReportPreferences
447452
from .risk_v1_address_verifications_post201_response import RiskV1AddressVerificationsPost201Response
448453
from .risk_v1_address_verifications_post201_response_address_verification_information import RiskV1AddressVerificationsPost201ResponseAddressVerificationInformation

CyberSource/models/create_adhoc_report_request.py

+3-5
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class CreateAdhocReportRequest(object):
3939
'timezone': 'str',
4040
'report_start_time': 'datetime',
4141
'report_end_time': 'datetime',
42-
'report_filters': 'dict(str, list[str])',
42+
'report_filters': 'Reportingv3reportsReportFilters',
4343
'report_preferences': 'Reportingv3reportsReportPreferences',
4444
'group_name': 'str'
4545
}
@@ -290,21 +290,19 @@ def report_end_time(self, report_end_time):
290290
def report_filters(self):
291291
"""
292292
Gets the report_filters of this CreateAdhocReportRequest.
293-
List of filters to apply
294293
295294
:return: The report_filters of this CreateAdhocReportRequest.
296-
:rtype: dict(str, list[str])
295+
:rtype: Reportingv3reportsReportFilters
297296
"""
298297
return self._report_filters
299298

300299
@report_filters.setter
301300
def report_filters(self, report_filters):
302301
"""
303302
Sets the report_filters of this CreateAdhocReportRequest.
304-
List of filters to apply
305303
306304
:param report_filters: The report_filters of this CreateAdhocReportRequest.
307-
:type: dict(str, list[str])
305+
:type: Reportingv3reportsReportFilters
308306
"""
309307

310308
self._report_filters = report_filters

CyberSource/models/create_payment_request.py

+53-1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ class CreatePaymentRequest(object):
4949
'health_care_information': 'Ptsv2paymentsHealthCareInformation',
5050
'promotion_information': 'Ptsv2paymentsPromotionInformation',
5151
'token_information': 'Ptsv2paymentsTokenInformation',
52+
'invoice_details': 'Ptsv2paymentsInvoiceDetails',
53+
'processor_information': 'Ptsv2paymentsProcessorInformation',
5254
'risk_information': 'Ptsv2paymentsRiskInformation',
5355
'acquirer_information': 'Ptsv2paymentsAcquirerInformation',
5456
'recurring_payment_information': 'Ptsv2paymentsRecurringPaymentInformation'
@@ -73,12 +75,14 @@ class CreatePaymentRequest(object):
7375
'health_care_information': 'healthCareInformation',
7476
'promotion_information': 'promotionInformation',
7577
'token_information': 'tokenInformation',
78+
'invoice_details': 'invoiceDetails',
79+
'processor_information': 'processorInformation',
7680
'risk_information': 'riskInformation',
7781
'acquirer_information': 'acquirerInformation',
7882
'recurring_payment_information': 'recurringPaymentInformation'
7983
}
8084

81-
def __init__(self, client_reference_information=None, processing_information=None, issuer_information=None, payment_information=None, order_information=None, buyer_information=None, recipient_information=None, device_information=None, merchant_information=None, aggregator_information=None, consumer_authentication_information=None, point_of_sale_information=None, merchant_defined_information=None, installment_information=None, travel_information=None, health_care_information=None, promotion_information=None, token_information=None, risk_information=None, acquirer_information=None, recurring_payment_information=None):
85+
def __init__(self, client_reference_information=None, processing_information=None, issuer_information=None, payment_information=None, order_information=None, buyer_information=None, recipient_information=None, device_information=None, merchant_information=None, aggregator_information=None, consumer_authentication_information=None, point_of_sale_information=None, merchant_defined_information=None, installment_information=None, travel_information=None, health_care_information=None, promotion_information=None, token_information=None, invoice_details=None, processor_information=None, risk_information=None, acquirer_information=None, recurring_payment_information=None):
8286
"""
8387
CreatePaymentRequest - a model defined in Swagger
8488
"""
@@ -101,6 +105,8 @@ def __init__(self, client_reference_information=None, processing_information=Non
101105
self._health_care_information = None
102106
self._promotion_information = None
103107
self._token_information = None
108+
self._invoice_details = None
109+
self._processor_information = None
104110
self._risk_information = None
105111
self._acquirer_information = None
106112
self._recurring_payment_information = None
@@ -141,6 +147,10 @@ def __init__(self, client_reference_information=None, processing_information=Non
141147
self.promotion_information = promotion_information
142148
if token_information is not None:
143149
self.token_information = token_information
150+
if invoice_details is not None:
151+
self.invoice_details = invoice_details
152+
if processor_information is not None:
153+
self.processor_information = processor_information
144154
if risk_information is not None:
145155
self.risk_information = risk_information
146156
if acquirer_information is not None:
@@ -528,6 +538,48 @@ def token_information(self, token_information):
528538

529539
self._token_information = token_information
530540

541+
@property
542+
def invoice_details(self):
543+
"""
544+
Gets the invoice_details of this CreatePaymentRequest.
545+
546+
:return: The invoice_details of this CreatePaymentRequest.
547+
:rtype: Ptsv2paymentsInvoiceDetails
548+
"""
549+
return self._invoice_details
550+
551+
@invoice_details.setter
552+
def invoice_details(self, invoice_details):
553+
"""
554+
Sets the invoice_details of this CreatePaymentRequest.
555+
556+
:param invoice_details: The invoice_details of this CreatePaymentRequest.
557+
:type: Ptsv2paymentsInvoiceDetails
558+
"""
559+
560+
self._invoice_details = invoice_details
561+
562+
@property
563+
def processor_information(self):
564+
"""
565+
Gets the processor_information of this CreatePaymentRequest.
566+
567+
:return: The processor_information of this CreatePaymentRequest.
568+
:rtype: Ptsv2paymentsProcessorInformation
569+
"""
570+
return self._processor_information
571+
572+
@processor_information.setter
573+
def processor_information(self, processor_information):
574+
"""
575+
Sets the processor_information of this CreatePaymentRequest.
576+
577+
:param processor_information: The processor_information of this CreatePaymentRequest.
578+
:type: Ptsv2paymentsProcessorInformation
579+
"""
580+
581+
self._processor_information = processor_information
582+
531583
@property
532584
def risk_information(self):
533585
"""

CyberSource/models/pts_v2_payments_captures_post201_response_order_information_amount_details.py

+31-3
Original file line numberDiff line numberDiff line change
@@ -32,26 +32,31 @@ class PtsV2PaymentsCapturesPost201ResponseOrderInformationAmountDetails(object):
3232
"""
3333
swagger_types = {
3434
'total_amount': 'str',
35-
'currency': 'str'
35+
'currency': 'str',
36+
'processor_transaction_fee': 'str'
3637
}
3738

3839
attribute_map = {
3940
'total_amount': 'totalAmount',
40-
'currency': 'currency'
41+
'currency': 'currency',
42+
'processor_transaction_fee': 'processorTransactionFee'
4143
}
4244

43-
def __init__(self, total_amount=None, currency=None):
45+
def __init__(self, total_amount=None, currency=None, processor_transaction_fee=None):
4446
"""
4547
PtsV2PaymentsCapturesPost201ResponseOrderInformationAmountDetails - a model defined in Swagger
4648
"""
4749

4850
self._total_amount = None
4951
self._currency = None
52+
self._processor_transaction_fee = None
5053

5154
if total_amount is not None:
5255
self.total_amount = total_amount
5356
if currency is not None:
5457
self.currency = currency
58+
if processor_transaction_fee is not None:
59+
self.processor_transaction_fee = processor_transaction_fee
5560

5661
@property
5762
def total_amount(self):
@@ -99,6 +104,29 @@ def currency(self, currency):
99104

100105
self._currency = currency
101106

107+
@property
108+
def processor_transaction_fee(self):
109+
"""
110+
Gets the processor_transaction_fee of this PtsV2PaymentsCapturesPost201ResponseOrderInformationAmountDetails.
111+
The fee decided by the PSP/Processor per transaction.
112+
113+
:return: The processor_transaction_fee of this PtsV2PaymentsCapturesPost201ResponseOrderInformationAmountDetails.
114+
:rtype: str
115+
"""
116+
return self._processor_transaction_fee
117+
118+
@processor_transaction_fee.setter
119+
def processor_transaction_fee(self, processor_transaction_fee):
120+
"""
121+
Sets the processor_transaction_fee of this PtsV2PaymentsCapturesPost201ResponseOrderInformationAmountDetails.
122+
The fee decided by the PSP/Processor per transaction.
123+
124+
:param processor_transaction_fee: The processor_transaction_fee of this PtsV2PaymentsCapturesPost201ResponseOrderInformationAmountDetails.
125+
:type: str
126+
"""
127+
128+
self._processor_transaction_fee = processor_transaction_fee
129+
102130
def to_dict(self):
103131
"""
104132
Returns the model properties as a dict

0 commit comments

Comments
 (0)