cybersource_rest_client 0.0.21 → 0.0.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/AuthenticationSDK/authentication/http/GetSignatureParameter.rb +63 -63
- data/lib/AuthenticationSDK/authentication/http/HttpSignatureHeader.rb +52 -52
- data/lib/AuthenticationSDK/authentication/jwt/JwtToken.rb +61 -61
- data/lib/AuthenticationSDK/authentication/payloadDigest/digest.rb +9 -9
- data/lib/AuthenticationSDK/core/Authorization.rb +24 -24
- data/lib/AuthenticationSDK/core/ITokenGeneration.rb +3 -3
- data/lib/AuthenticationSDK/core/Logger.rb +25 -25
- data/lib/AuthenticationSDK/core/MerchantConfig.rb +190 -186
- data/lib/AuthenticationSDK/resource/TRRReports.json +11 -11
- data/lib/AuthenticationSDK/resource/cybs.yml +30 -30
- data/lib/AuthenticationSDK/resource/request.json +53 -53
- data/lib/AuthenticationSDK/resource/request_capture.json +10 -10
- data/lib/AuthenticationSDK/spec/Authorization_spec.rb +273 -273
- data/lib/AuthenticationSDK/spec/MerchantConfigData.rb +58 -58
- data/lib/AuthenticationSDK/spec/MerchantConfig_spec.rb +115 -115
- data/lib/AuthenticationSDK/spec/PostRequestData.json +53 -53
- data/lib/AuthenticationSDK/spec/PutRequestData.json +11 -11
- data/lib/AuthenticationSDK/spec/ResponseCodeMessage_spec.rb +59 -59
- data/lib/AuthenticationSDK/spec/spec_helper.rb +12 -12
- data/lib/AuthenticationSDK/util/ApiException.rb +18 -18
- data/lib/AuthenticationSDK/util/Cache.rb +35 -35
- data/lib/AuthenticationSDK/util/Constants.rb +153 -145
- data/lib/AuthenticationSDK/util/PropertiesUtil.rb +18 -18
- data/lib/AuthenticationSDK/util/Utility.rb +31 -31
- data/lib/cybersource_rest_client.rb +254 -163
- data/lib/cybersource_rest_client/api/asymmetric_key_management_api.rb +219 -0
- data/lib/cybersource_rest_client/api/customer_api.rb +360 -0
- data/lib/cybersource_rest_client/api/customer_payment_instrument_api.rb +518 -0
- data/lib/cybersource_rest_client/api/customer_shipping_address_api.rb +518 -0
- data/lib/cybersource_rest_client/api/decision_manager_api.rb +15 -15
- data/lib/cybersource_rest_client/api/download_dtd_api.rb +88 -88
- data/lib/cybersource_rest_client/api/download_xsd_api.rb +88 -88
- data/lib/cybersource_rest_client/api/instrument_identifier_api.rb +247 -169
- data/lib/cybersource_rest_client/api/invoice_settings_api.rb +148 -0
- data/lib/cybersource_rest_client/api/invoices_api.rb +431 -0
- data/lib/cybersource_rest_client/api/key_generation_api.rb +10 -3
- data/lib/cybersource_rest_client/api/notification_of_changes_api.rb +1 -1
- data/lib/cybersource_rest_client/api/payer_authentication_api.rb +219 -219
- data/lib/cybersource_rest_client/api/payment_batch_summaries_api.rb +129 -129
- data/lib/cybersource_rest_client/api/payment_instrument_api.rb +133 -136
- data/lib/cybersource_rest_client/api/payments_api.rb +2 -2
- data/lib/cybersource_rest_client/api/purchase_and_refund_details_api.rb +1 -1
- data/lib/cybersource_rest_client/api/refund_api.rb +4 -4
- data/lib/cybersource_rest_client/api/report_downloads_api.rb +2 -5
- data/lib/cybersource_rest_client/api/report_subscriptions_api.rb +45 -0
- data/lib/cybersource_rest_client/api/reversal_api.rb +4 -4
- data/lib/cybersource_rest_client/api/secure_file_share_api.rb +7 -0
- data/lib/cybersource_rest_client/api/symmetric_key_management_api.rb +219 -0
- data/lib/cybersource_rest_client/api/taxes_api.rb +160 -0
- data/lib/cybersource_rest_client/api/user_management_api.rb +4 -4
- data/lib/cybersource_rest_client/api/user_management_search_api.rb +89 -0
- data/lib/cybersource_rest_client/api/verification_api.rb +154 -154
- data/lib/cybersource_rest_client/api/void_api.rb +8 -8
- data/lib/cybersource_rest_client/api_client.rb +484 -471
- data/lib/cybersource_rest_client/api_error.rb +38 -38
- data/lib/cybersource_rest_client/configuration.rb +202 -202
- data/lib/cybersource_rest_client/models/add_negative_list_request.rb +228 -228
- data/lib/cybersource_rest_client/models/auth_reversal_request.rb +219 -219
- data/lib/cybersource_rest_client/models/capture_payment_request.rb +294 -294
- data/lib/cybersource_rest_client/models/check_payer_auth_enrollment_request.rb +302 -293
- data/lib/cybersource_rest_client/models/create_adhoc_report_request.rb +346 -382
- data/lib/cybersource_rest_client/models/{create_decision_manager_case_request.rb → create_bundled_decision_manager_case_request.rb} +302 -266
- data/lib/cybersource_rest_client/models/create_credit_request.rb +294 -294
- data/lib/cybersource_rest_client/models/{json_web_key.rb → create_invoice_request.rb} +201 -225
- data/lib/cybersource_rest_client/models/create_p12_keys_request.rb +194 -0
- data/lib/cybersource_rest_client/models/create_payment_request.rb +366 -321
- data/lib/cybersource_rest_client/models/create_report_subscription_request.rb +446 -482
- data/lib/cybersource_rest_client/models/create_search_request.rb +244 -244
- data/lib/cybersource_rest_client/models/create_shared_secret_keys_request.rb +194 -0
- data/lib/cybersource_rest_client/models/delete_bulk_p12_keys_request.rb +194 -0
- data/lib/cybersource_rest_client/models/delete_bulk_symmetric_keys_request.rb +194 -0
- data/lib/cybersource_rest_client/models/flex_v1_keys_post200_response.rb +202 -202
- data/lib/cybersource_rest_client/models/flex_v1_keys_post200_response_der.rb +205 -205
- data/lib/cybersource_rest_client/models/flex_v1_keys_post200_response_jwk.rb +225 -225
- data/lib/cybersource_rest_client/models/flex_v1_tokens_post200_response.rb +255 -255
- data/lib/cybersource_rest_client/models/flexv1tokens_card_info.rb +224 -224
- data/lib/cybersource_rest_client/models/fraud_marking_action_request.rb +183 -183
- data/lib/cybersource_rest_client/models/generate_public_key_request.rb +199 -199
- data/lib/cybersource_rest_client/models/increment_auth_request.rb +219 -219
- data/lib/cybersource_rest_client/models/inline_response_400.rb +185 -202
- data/lib/cybersource_rest_client/models/inline_response_400_1.rb +247 -247
- data/lib/cybersource_rest_client/models/inline_response_400_1_fields.rb +205 -205
- data/lib/cybersource_rest_client/models/inline_response_400_2.rb +214 -0
- data/lib/cybersource_rest_client/models/{detail.rb → inline_response_400_details.rb} +194 -194
- data/lib/cybersource_rest_client/models/{error_field_bean.rb → inline_response_400_errors.rb} +205 -205
- data/lib/cybersource_rest_client/models/inline_response_default.rb +192 -192
- data/lib/cybersource_rest_client/models/inline_response_default__links.rb +205 -205
- data/lib/cybersource_rest_client/models/inline_response_default__links_next.rb +204 -204
- data/lib/cybersource_rest_client/models/inline_response_default_response_status.rb +225 -225
- data/lib/cybersource_rest_client/models/inline_response_default_response_status_details.rb +194 -194
- data/lib/cybersource_rest_client/models/invoice_settings_request.rb +183 -0
- data/lib/cybersource_rest_client/models/invoicing_v2_invoice_settings_get200_response.rb +193 -0
- data/lib/cybersource_rest_client/models/invoicing_v2_invoice_settings_get200_response_invoice_settings_information.rb +289 -0
- data/lib/cybersource_rest_client/models/invoicing_v2_invoice_settings_get200_response_invoice_settings_information_header_style.rb +224 -0
- data/lib/cybersource_rest_client/models/invoicing_v2_invoices_all_get200_response.rb +213 -0
- data/lib/cybersource_rest_client/models/{links.rb → invoicing_v2_invoices_all_get200_response__links.rb} +201 -205
- data/lib/cybersource_rest_client/models/invoicing_v2_invoices_all_get200_response__links_1.rb +210 -0
- data/lib/cybersource_rest_client/models/{tmsv1instrumentidentifiers_details.rb → invoicing_v2_invoices_all_get200_response_customer_information.rb} +190 -194
- data/lib/cybersource_rest_client/models/{error_response.rb → invoicing_v2_invoices_all_get200_response_invoice_information.rb} +184 -192
- data/lib/cybersource_rest_client/models/invoicing_v2_invoices_all_get200_response_invoices.rb +237 -0
- data/lib/cybersource_rest_client/models/{risk_v1_authentications_post201_response_order_information.rb → invoicing_v2_invoices_all_get200_response_order_information.rb} +183 -183
- data/lib/cybersource_rest_client/models/invoicing_v2_invoices_all_get200_response_order_information_amount_details.rb +207 -0
- data/lib/cybersource_rest_client/models/invoicing_v2_invoices_all_get400_response.rb +225 -0
- data/lib/cybersource_rest_client/models/invoicing_v2_invoices_all_get404_response.rb +225 -0
- data/lib/cybersource_rest_client/models/invoicing_v2_invoices_all_get502_response.rb +214 -0
- data/lib/cybersource_rest_client/models/invoicing_v2_invoices_get200_response.rb +257 -0
- data/lib/cybersource_rest_client/models/invoicing_v2_invoices_get200_response_invoice_history.rb +203 -0
- data/lib/cybersource_rest_client/models/{riskv1authenticationexemptions_merchant_information.rb → invoicing_v2_invoices_get200_response_transaction_details.rb} +201 -258
- data/lib/cybersource_rest_client/models/{risk_v1_authentication_exemptions_post201_response.rb → invoicing_v2_invoices_post201_response.rb} +246 -255
- data/lib/cybersource_rest_client/models/invoicing_v2_invoices_post201_response_invoice_information.rb +241 -0
- data/lib/cybersource_rest_client/models/{riskv1authenticationexemptions_order_information.rb → invoicing_v2_invoices_post201_response_order_information.rb} +195 -212
- data/lib/cybersource_rest_client/models/invoicing_v2_invoices_post201_response_order_information_amount_details.rb +287 -0
- data/lib/cybersource_rest_client/models/invoicing_v2_invoices_post202_response.rb +225 -0
- data/lib/cybersource_rest_client/models/invoicingv2invoice_settings_invoice_settings_information.rb +289 -0
- data/lib/cybersource_rest_client/models/invoicingv2invoices_customer_information.rb +207 -0
- data/lib/cybersource_rest_client/models/invoicingv2invoices_invoice_information.rb +241 -0
- data/lib/cybersource_rest_client/models/{error_links.rb → invoicingv2invoices_order_information.rb} +195 -205
- data/lib/cybersource_rest_client/models/invoicingv2invoices_order_information_amount_details.rb +271 -0
- data/lib/cybersource_rest_client/models/invoicingv2invoices_order_information_amount_details_freight.rb +201 -0
- data/lib/cybersource_rest_client/models/invoicingv2invoices_order_information_amount_details_tax_details.rb +217 -0
- data/lib/cybersource_rest_client/models/{riskv1authenticationexemptions_order_information_line_items.rb → invoicingv2invoices_order_information_line_items.rb} +257 -283
- data/lib/cybersource_rest_client/models/invoicingv2invoicesid_invoice_information.rb +221 -0
- data/lib/cybersource_rest_client/models/kms_v2_keys_asym_deletes_post200_response.rb +204 -0
- data/lib/cybersource_rest_client/models/kms_v2_keys_asym_deletes_post200_response_key_information.rb +234 -0
- data/lib/cybersource_rest_client/models/{create_instrument_identifier_request.rb → kms_v2_keys_asym_get200_response.rb} +193 -211
- data/lib/cybersource_rest_client/models/kms_v2_keys_asym_get200_response_key_information.rb +254 -0
- data/lib/cybersource_rest_client/models/kms_v2_keys_asym_post201_response.rb +225 -0
- data/lib/cybersource_rest_client/models/{key_result.rb → kms_v2_keys_asym_post201_response_certificate_information.rb} +214 -202
- data/lib/cybersource_rest_client/models/kms_v2_keys_asym_post201_response_key_information.rb +264 -0
- data/lib/cybersource_rest_client/models/kms_v2_keys_sym_deletes_post200_response.rb +214 -0
- data/lib/cybersource_rest_client/models/kms_v2_keys_sym_deletes_post200_response_key_information.rb +224 -0
- data/lib/cybersource_rest_client/models/{risk_v1_authentication_exemptions_post201_response_consumer_authentication_information.rb → kms_v2_keys_sym_get200_response.rb} +203 -183
- data/lib/cybersource_rest_client/models/{error_bean.rb → kms_v2_keys_sym_get200_response_key_information.rb} +234 -247
- data/lib/cybersource_rest_client/models/kms_v2_keys_sym_post201_response.rb +214 -0
- data/lib/cybersource_rest_client/models/kms_v2_keys_sym_post201_response_error_information.rb +195 -0
- data/lib/cybersource_rest_client/models/kms_v2_keys_sym_post201_response_key_information.rb +254 -0
- data/lib/cybersource_rest_client/models/kmsv2keysasym_key_information.rb +215 -0
- data/lib/cybersource_rest_client/models/kmsv2keyssym_client_reference_information.rb +209 -0
- data/lib/cybersource_rest_client/models/kmsv2keyssym_key_information.rb +200 -0
- data/lib/cybersource_rest_client/models/kmsv2keyssymdeletes_key_information.rb +215 -0
- data/lib/cybersource_rest_client/models/mit_reversal_request.rb +219 -219
- data/lib/cybersource_rest_client/models/mit_void_request.rb +192 -183
- data/lib/cybersource_rest_client/models/oct_create_payment_request.rb +237 -237
- data/lib/cybersource_rest_client/models/patch_customer_payment_instrument_request.rb +310 -0
- data/lib/cybersource_rest_client/models/patch_customer_request.rb +274 -0
- data/lib/cybersource_rest_client/models/{embedded_instrument_identifier_request.rb → patch_customer_shipping_address_request.rb} +227 -226
- data/lib/cybersource_rest_client/models/{tms_v1_instrument_identifiers_payment_instruments_embedded_instrument_identifier.rb → patch_instrument_identifier_request.rb} +286 -291
- data/lib/cybersource_rest_client/models/{tms_v1_instrument_identifiers_payment_instruments_get200_response_payment_instruments.rb → patch_payment_instrument_request.rb} +310 -285
- data/lib/cybersource_rest_client/models/payer_auth_setup_request.rb +210 -210
- data/lib/cybersource_rest_client/models/{payment_instruments_for_instrument_identifier.rb → payment_instrument_list_for_customer.rb} +232 -242
- data/lib/cybersource_rest_client/models/{tms_v1_instrument_identifiers_payment_instruments_get200_response__embedded.rb → payment_instrument_list_for_customer__embedded.rb} +186 -186
- data/lib/cybersource_rest_client/models/{tms_v1_instrument_identifiers_payment_instruments_get200_response__links.rb → payment_instrument_list_for_customer__links.rb} +219 -219
- data/lib/cybersource_rest_client/models/payment_instrument_list_for_customer__links_first.rb +184 -0
- data/lib/cybersource_rest_client/models/{model_409_link.rb → payment_instrument_list_for_customer__links_last.rb} +184 -183
- data/lib/cybersource_rest_client/models/payment_instrument_list_for_customer__links_next.rb +184 -0
- data/lib/cybersource_rest_client/models/payment_instrument_list_for_customer__links_prev.rb +184 -0
- data/lib/cybersource_rest_client/models/payment_instrument_list_for_customer__links_self.rb +184 -0
- data/lib/cybersource_rest_client/models/post_customer_payment_instrument_request.rb +310 -0
- data/lib/cybersource_rest_client/models/post_customer_request.rb +274 -0
- data/lib/cybersource_rest_client/models/{tmsv1paymentinstruments_instrument_identifier.rb → post_customer_shipping_address_request.rb} +227 -226
- data/lib/cybersource_rest_client/models/{instrument_identifier_response.rb → post_instrument_identifier_enrollment_request.rb} +286 -267
- data/lib/cybersource_rest_client/models/{embedded_instrument_identifier_response.rb → post_instrument_identifier_request.rb} +286 -291
- data/lib/cybersource_rest_client/models/{payment_instrument.rb → post_payment_instrument_request.rb} +310 -285
- data/lib/cybersource_rest_client/models/predefined_subscription_request_bean.rb +356 -392
- data/lib/cybersource_rest_client/models/pts_v1_transaction_batches_get200_response.rb +204 -204
- data/lib/cybersource_rest_client/models/pts_v1_transaction_batches_get200_response__links.rb +183 -183
- data/lib/cybersource_rest_client/models/pts_v1_transaction_batches_get200_response__links_self.rb +192 -192
- data/lib/cybersource_rest_client/models/pts_v1_transaction_batches_get200_response_transaction_batches.rb +259 -277
- data/lib/cybersource_rest_client/models/pts_v1_transaction_batches_get400_response.rb +193 -193
- data/lib/cybersource_rest_client/models/pts_v1_transaction_batches_get400_response_error_information.rb +203 -203
- data/lib/cybersource_rest_client/models/pts_v1_transaction_batches_get400_response_error_information_details.rb +194 -194
- data/lib/cybersource_rest_client/models/pts_v1_transaction_batches_get500_response.rb +193 -193
- data/lib/cybersource_rest_client/models/pts_v1_transaction_batches_get500_response_error_information.rb +194 -194
- data/lib/cybersource_rest_client/models/pts_v1_transaction_batches_id_get200_response.rb +268 -286
- data/lib/cybersource_rest_client/models/pts_v1_transaction_batches_id_get200_response__links.rb +185 -185
- data/lib/cybersource_rest_client/models/pts_v1_transaction_batches_id_get200_response__links_transactions.rb +193 -193
- data/lib/cybersource_rest_client/models/pts_v2_credits_post201_response.rb +298 -316
- data/lib/cybersource_rest_client/models/pts_v2_credits_post201_response_credit_amount_details.rb +206 -224
- data/lib/cybersource_rest_client/models/pts_v2_credits_post201_response_payment_information.rb +219 -183
- data/lib/cybersource_rest_client/models/pts_v2_credits_post201_response_processing_information.rb +193 -193
- data/lib/cybersource_rest_client/models/pts_v2_credits_post201_response_processing_information_bank_transfer_options.rb +190 -199
- data/lib/cybersource_rest_client/models/pts_v2_incremental_authorization_patch201_response.rb +280 -298
- data/lib/cybersource_rest_client/models/pts_v2_incremental_authorization_patch201_response__links.rb +183 -183
- data/lib/cybersource_rest_client/models/pts_v2_incremental_authorization_patch201_response_client_reference_information.rb +190 -199
- data/lib/cybersource_rest_client/models/pts_v2_incremental_authorization_patch201_response_error_information.rb +205 -205
- data/lib/cybersource_rest_client/models/pts_v2_incremental_authorization_patch201_response_order_information.rb +183 -183
- data/lib/cybersource_rest_client/models/pts_v2_incremental_authorization_patch201_response_payment_information.rb +183 -183
- data/lib/cybersource_rest_client/models/pts_v2_incremental_authorization_patch201_response_payment_information_account_features.rb +190 -199
- data/lib/cybersource_rest_client/models/pts_v2_incremental_authorization_patch201_response_processor_information.rb +257 -293
- data/lib/cybersource_rest_client/models/pts_v2_incremental_authorization_patch400_response.rb +225 -225
- data/lib/cybersource_rest_client/models/pts_v2_payments_captures_post201_response.rb +280 -298
- data/lib/cybersource_rest_client/models/pts_v2_payments_captures_post201_response__links.rb +201 -201
- data/lib/cybersource_rest_client/models/pts_v2_payments_captures_post201_response_order_information.rb +192 -192
- data/lib/cybersource_rest_client/models/pts_v2_payments_captures_post201_response_order_information_amount_details.rb +206 -224
- data/lib/cybersource_rest_client/models/pts_v2_payments_captures_post201_response_order_information_invoice_details.rb +184 -184
- data/lib/cybersource_rest_client/models/pts_v2_payments_captures_post201_response_point_of_sale_information.rb +190 -199
- data/lib/cybersource_rest_client/models/pts_v2_payments_captures_post201_response_processing_information.rb +184 -184
- data/lib/cybersource_rest_client/models/pts_v2_payments_captures_post201_response_processor_information.rb +190 -199
- data/lib/cybersource_rest_client/models/pts_v2_payments_captures_post400_response.rb +225 -225
- data/lib/cybersource_rest_client/models/pts_v2_payments_post201_response.rb +343 -334
- data/lib/cybersource_rest_client/models/pts_v2_payments_post201_response__links.rb +237 -201
- data/lib/cybersource_rest_client/models/pts_v2_payments_post201_response__links_self.rb +194 -194
- data/lib/cybersource_rest_client/models/pts_v2_payments_post201_response_client_reference_information.rb +216 -234
- data/lib/cybersource_rest_client/models/{risk_v1_authentications_post201_response_consumer_authentication_information.rb → pts_v2_payments_post201_response_consumer_authentication_information.rb} +699 -823
- data/lib/cybersource_rest_client/models/{risk_v1_authentications_post201_response_consumer_authentication_information_ivr.rb → pts_v2_payments_post201_response_consumer_authentication_information_ivr.rb} +274 -319
- data/lib/cybersource_rest_client/models/pts_v2_payments_post201_response_error_information.rb +205 -205
- data/lib/cybersource_rest_client/models/pts_v2_payments_post201_response_error_information_details.rb +194 -194
- data/lib/cybersource_rest_client/models/pts_v2_payments_post201_response_installment_information.rb +596 -794
- data/lib/cybersource_rest_client/models/pts_v2_payments_post201_response_issuer_information.rb +238 -274
- data/lib/cybersource_rest_client/models/pts_v2_payments_post201_response_order_information.rb +192 -192
- data/lib/cybersource_rest_client/models/pts_v2_payments_post201_response_order_information_amount_details.rb +222 -249
- data/lib/cybersource_rest_client/models/pts_v2_payments_post201_response_order_information_invoice_details.rb +209 -209
- data/lib/cybersource_rest_client/models/pts_v2_payments_post201_response_payment_information.rb +326 -210
- data/lib/cybersource_rest_client/models/pts_v2_payments_post201_response_payment_information_account_features.rb +458 -599
- data/lib/cybersource_rest_client/models/pts_v2_payments_post201_response_payment_information_account_features_balances.rb +238 -0
- data/lib/cybersource_rest_client/models/pts_v2_payments_post201_response_payment_information_bank.rb +199 -208
- data/lib/cybersource_rest_client/models/pts_v2_payments_post201_response_payment_information_bank_account.rb +190 -199
- data/lib/cybersource_rest_client/models/pts_v2_payments_post201_response_payment_information_card.rb +184 -184
- data/lib/cybersource_rest_client/models/{riskv1authenticationexemptions_acquirer_information.rb → pts_v2_payments_post201_response_payment_information_instrument_identifier.rb} +200 -199
- data/lib/cybersource_rest_client/models/pts_v2_payments_post201_response_payment_information_tokenized_card.rb +280 -334
- data/lib/cybersource_rest_client/models/pts_v2_payments_post201_response_point_of_sale_information.rb +215 -233
- data/lib/cybersource_rest_client/models/pts_v2_payments_post201_response_point_of_sale_information_emv.rb +222 -249
- data/lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processing_information.rb +193 -193
- data/lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processing_information_bank_transfer_options.rb +206 -224
- data/lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb +532 -676
- data/lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information_ach_verification.rb +206 -224
- data/lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information_avs.rb +206 -224
- data/lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information_card_verification.rb +206 -224
- data/lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information_consumer_authentication_response.rb +206 -224
- data/lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information_customer.rb +190 -199
- data/lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information_electronic_verification_results.rb +366 -474
- data/lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information_merchant_advice.rb +206 -224
- data/lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information_routing.rb +222 -249
- data/lib/cybersource_rest_client/models/{risk_v1_decisions_post201_response_risk_information.rb → pts_v2_payments_post201_response_risk_information.rb} +275 -284
- data/lib/cybersource_rest_client/models/{risk_v1_decisions_post201_response_risk_information_info_codes.rb → pts_v2_payments_post201_response_risk_information_info_codes.rb} +270 -270
- data/lib/cybersource_rest_client/models/{risk_v1_decisions_post201_response_risk_information_ip_address.rb → pts_v2_payments_post201_response_risk_information_ip_address.rb} +287 -350
- data/lib/cybersource_rest_client/models/{risk_v1_decisions_post201_response_risk_information_profile.rb → pts_v2_payments_post201_response_risk_information_profile.rb} +222 -249
- data/lib/cybersource_rest_client/models/{risk_v1_decisions_post201_response_risk_information_providers.rb → pts_v2_payments_post201_response_risk_information_providers.rb} +185 -185
- data/lib/cybersource_rest_client/models/{risk_v1_decisions_post201_response_risk_information_providers_provider_name.rb → pts_v2_payments_post201_response_risk_information_providers_provider_name.rb} +197 -197
- data/lib/cybersource_rest_client/models/{risk_v1_decisions_post201_response_risk_information_rules.rb → pts_v2_payments_post201_response_risk_information_rules.rb} +206 -224
- data/lib/cybersource_rest_client/models/{risk_v1_decisions_post201_response_risk_information_score.rb → pts_v2_payments_post201_response_risk_information_score.rb} +217 -235
- data/lib/cybersource_rest_client/models/{risk_v1_decisions_post201_response_risk_information_travel.rb → pts_v2_payments_post201_response_risk_information_travel.rb} +210 -210
- data/lib/cybersource_rest_client/models/{risk_v1_decisions_post201_response_risk_information_travel_actual_final_destination.rb → pts_v2_payments_post201_response_risk_information_travel_actual_final_destination.rb} +238 -274
- data/lib/cybersource_rest_client/models/{risk_v1_decisions_post201_response_risk_information_travel_first_departure.rb → pts_v2_payments_post201_response_risk_information_travel_first_departure.rb} +238 -274
- data/lib/cybersource_rest_client/models/{risk_v1_decisions_post201_response_risk_information_travel_first_destination.rb → pts_v2_payments_post201_response_risk_information_travel_first_destination.rb} +238 -274
- data/lib/cybersource_rest_client/models/{risk_v1_decisions_post201_response_risk_information_travel_last_destination.rb → pts_v2_payments_post201_response_risk_information_travel_last_destination.rb} +238 -274
- data/lib/cybersource_rest_client/models/{risk_v1_decisions_post201_response_risk_information_velocity.rb → pts_v2_payments_post201_response_risk_information_velocity.rb} +197 -197
- data/lib/cybersource_rest_client/models/{risk_v1_decisions_post201_response_risk_information_velocity_morphing.rb → pts_v2_payments_post201_response_risk_information_velocity_morphing.rb} +216 -234
- data/lib/cybersource_rest_client/models/pts_v2_payments_post201_response_token_information.rb +220 -0
- data/lib/cybersource_rest_client/models/pts_v2_payments_post201_response_token_information_customer.rb +190 -0
- data/lib/cybersource_rest_client/models/{personal_identification.rb → pts_v2_payments_post201_response_token_information_instrument_identifier.rb} +200 -203
- data/lib/cybersource_rest_client/models/pts_v2_payments_post201_response_token_information_payment_instrument.rb +190 -0
- data/lib/cybersource_rest_client/models/pts_v2_payments_post201_response_token_information_shipping_address.rb +190 -0
- data/lib/cybersource_rest_client/models/pts_v2_payments_post400_response.rb +225 -225
- data/lib/cybersource_rest_client/models/pts_v2_payments_post502_response.rb +214 -214
- data/lib/cybersource_rest_client/models/pts_v2_payments_refund_post201_response.rb +280 -298
- data/lib/cybersource_rest_client/models/pts_v2_payments_refund_post201_response__links.rb +192 -192
- data/lib/cybersource_rest_client/models/pts_v2_payments_refund_post201_response_order_information.rb +183 -183
- data/lib/cybersource_rest_client/models/pts_v2_payments_refund_post201_response_processor_information.rb +247 -283
- data/lib/cybersource_rest_client/models/pts_v2_payments_refund_post201_response_refund_amount_details.rb +206 -224
- data/lib/cybersource_rest_client/models/pts_v2_payments_refund_post400_response.rb +225 -225
- data/lib/cybersource_rest_client/models/pts_v2_payments_reversals_post201_response.rb +289 -307
- data/lib/cybersource_rest_client/models/pts_v2_payments_reversals_post201_response_authorization_information.rb +222 -249
- data/lib/cybersource_rest_client/models/pts_v2_payments_reversals_post201_response_issuer_information.rb +190 -199
- data/lib/cybersource_rest_client/models/pts_v2_payments_reversals_post201_response_processor_information.rb +270 -324
- data/lib/cybersource_rest_client/models/pts_v2_payments_reversals_post201_response_reversal_amount_details.rb +222 -249
- data/lib/cybersource_rest_client/models/pts_v2_payments_reversals_post400_response.rb +225 -225
- data/lib/cybersource_rest_client/models/pts_v2_payments_voids_post201_response.rb +246 -246
- data/lib/cybersource_rest_client/models/pts_v2_payments_voids_post201_response_processor_information.rb +190 -0
- data/lib/cybersource_rest_client/models/pts_v2_payments_voids_post201_response_void_amount_details.rb +210 -219
- data/lib/cybersource_rest_client/models/pts_v2_payments_voids_post400_response.rb +225 -225
- data/lib/cybersource_rest_client/models/pts_v2_payouts_post201_response.rb +289 -307
- data/lib/cybersource_rest_client/models/pts_v2_payouts_post201_response_error_information.rb +205 -205
- data/lib/cybersource_rest_client/models/pts_v2_payouts_post201_response_merchant_information.rb +183 -183
- data/lib/cybersource_rest_client/models/pts_v2_payouts_post201_response_merchant_information_merchant_descriptor.rb +210 -219
- data/lib/cybersource_rest_client/models/pts_v2_payouts_post201_response_order_information.rb +183 -183
- data/lib/cybersource_rest_client/models/pts_v2_payouts_post201_response_order_information_amount_details.rb +238 -274
- data/lib/cybersource_rest_client/models/pts_v2_payouts_post201_response_processor_information.rb +254 -299
- data/lib/cybersource_rest_client/models/pts_v2_payouts_post201_response_recipient_information.rb +183 -183
- data/lib/cybersource_rest_client/models/pts_v2_payouts_post201_response_recipient_information_card.rb +206 -224
- data/lib/cybersource_rest_client/models/pts_v2_payouts_post400_response.rb +225 -225
- data/lib/cybersource_rest_client/models/ptsv2credits_installment_information.rb +190 -199
- data/lib/cybersource_rest_client/models/ptsv2credits_processing_information.rb +420 -528
- data/lib/cybersource_rest_client/models/ptsv2credits_processing_information_bank_transfer_options.rb +286 -349
- data/lib/cybersource_rest_client/models/ptsv2credits_processing_information_electronic_benefits_transfer.rb +190 -199
- data/lib/cybersource_rest_client/models/ptsv2credits_processing_information_japan_payment_options.rb +200 -209
- data/lib/cybersource_rest_client/models/ptsv2credits_processing_information_purchase_options.rb +184 -184
- data/lib/cybersource_rest_client/models/{riskv1authentications_acquirer_information.rb → ptsv2payments_acquirer_information.rb} +238 -274
- data/lib/cybersource_rest_client/models/ptsv2payments_aggregator_information.rb +215 -233
- data/lib/cybersource_rest_client/models/ptsv2payments_aggregator_information_sub_merchant.rb +350 -449
- data/lib/cybersource_rest_client/models/ptsv2payments_buyer_information.rb +275 -310
- data/lib/cybersource_rest_client/models/ptsv2payments_buyer_information_personal_identification.rb +210 -219
- data/lib/cybersource_rest_client/models/ptsv2payments_client_reference_information.rb +255 -243
- data/lib/cybersource_rest_client/models/ptsv2payments_client_reference_information_partner.rb +238 -274
- data/lib/cybersource_rest_client/models/ptsv2payments_consumer_authentication_information.rb +939 -408
- data/lib/cybersource_rest_client/models/ptsv2payments_consumer_authentication_information_strong_authentication.rb +270 -299
- data/lib/cybersource_rest_client/models/ptsv2payments_device_information.rb +401 -249
- data/lib/cybersource_rest_client/models/{riskv1authentications_device_information_raw_data.rb → ptsv2payments_device_information_raw_data.rb} +200 -209
- data/lib/cybersource_rest_client/models/{file_details_response.rb → ptsv2payments_health_care_information.rb} +186 -194
- data/lib/cybersource_rest_client/models/ptsv2payments_health_care_information_amount_details.rb +206 -0
- data/lib/cybersource_rest_client/models/ptsv2payments_installment_information.rb +394 -484
- data/lib/cybersource_rest_client/models/ptsv2payments_issuer_information.rb +190 -199
- data/lib/cybersource_rest_client/models/ptsv2payments_merchant_defined_information.rb +206 -224
- data/lib/cybersource_rest_client/models/ptsv2payments_merchant_information.rb +338 -367
- data/lib/cybersource_rest_client/models/ptsv2payments_merchant_information_merchant_descriptor.rb +316 -379
- data/lib/cybersource_rest_client/models/ptsv2payments_merchant_information_service_fee_descriptor.rb +222 -249
- data/lib/cybersource_rest_client/models/ptsv2payments_merchant_initiated_transaction.rb +222 -249
- data/lib/cybersource_rest_client/models/ptsv2payments_order_information.rb +292 -230
- data/lib/cybersource_rest_client/models/ptsv2payments_order_information_amount_details.rb +550 -739
- data/lib/cybersource_rest_client/models/ptsv2payments_order_information_amount_details_amex_additional_amounts.rb +206 -224
- data/lib/cybersource_rest_client/models/ptsv2payments_order_information_amount_details_currency_conversion.rb +222 -249
- data/lib/cybersource_rest_client/models/ptsv2payments_order_information_amount_details_surcharge.rb +200 -209
- data/lib/cybersource_rest_client/models/ptsv2payments_order_information_amount_details_tax_details.rb +274 -319
- data/lib/cybersource_rest_client/models/ptsv2payments_order_information_bill_to.rb +481 -659
- data/lib/cybersource_rest_client/models/ptsv2payments_order_information_bill_to_company.rb +286 -0
- data/lib/cybersource_rest_client/models/ptsv2payments_order_information_invoice_details.rb +388 -435
- data/lib/cybersource_rest_client/models/ptsv2payments_order_information_invoice_details_transaction_advice_addendum.rb +190 -199
- data/lib/cybersource_rest_client/models/ptsv2payments_order_information_line_items.rb +640 -774
- data/lib/cybersource_rest_client/models/{riskv1decisions_order_information_passenger.rb → ptsv2payments_order_information_passenger.rb} +303 -375
- data/lib/cybersource_rest_client/models/ptsv2payments_order_information_ship_to.rb +408 -474
- data/lib/cybersource_rest_client/models/ptsv2payments_order_information_shipping_details.rb +217 -235
- data/lib/cybersource_rest_client/models/ptsv2payments_payment_information.rb +280 -253
- data/lib/cybersource_rest_client/models/ptsv2payments_payment_information_bank.rb +199 -208
- data/lib/cybersource_rest_client/models/ptsv2payments_payment_information_bank_account.rb +254 -299
- data/lib/cybersource_rest_client/models/ptsv2payments_payment_information_card.rb +392 -509
- data/lib/cybersource_rest_client/models/ptsv2payments_payment_information_customer.rb +200 -184
- data/lib/cybersource_rest_client/models/ptsv2payments_payment_information_fluid_data.rb +232 -259
- data/lib/cybersource_rest_client/models/ptsv2payments_payment_information_instrument_identifier.rb +190 -0
- data/lib/cybersource_rest_client/models/{file_bean.rb → ptsv2payments_payment_information_legacy_token.rb} +190 -202
- data/lib/cybersource_rest_client/models/ptsv2payments_payment_information_payment_instrument.rb +190 -0
- data/lib/cybersource_rest_client/models/ptsv2payments_payment_information_payment_type.rb +203 -203
- data/lib/cybersource_rest_client/models/ptsv2payments_payment_information_payment_type_method.rb +184 -184
- data/lib/cybersource_rest_client/models/ptsv2payments_payment_information_shipping_address.rb +190 -0
- data/lib/cybersource_rest_client/models/ptsv2payments_payment_information_tokenized_card.rb +328 -409
- data/lib/cybersource_rest_client/models/ptsv2payments_point_of_sale_information.rb +608 -752
- data/lib/cybersource_rest_client/models/ptsv2payments_point_of_sale_information_emv.rb +238 -256
- data/lib/cybersource_rest_client/models/ptsv2payments_processing_information.rb +516 -618
- data/lib/cybersource_rest_client/models/ptsv2payments_processing_information_authorization_options.rb +373 -369
- data/lib/cybersource_rest_client/models/ptsv2payments_processing_information_authorization_options_initiator.rb +213 -213
- data/lib/cybersource_rest_client/models/ptsv2payments_processing_information_bank_transfer_options.rb +350 -424
- data/lib/cybersource_rest_client/models/ptsv2payments_processing_information_capture_options.rb +258 -267
- data/lib/cybersource_rest_client/models/ptsv2payments_processing_information_electronic_benefits_transfer.rb +206 -224
- data/lib/cybersource_rest_client/models/ptsv2payments_processing_information_japan_payment_options.rb +296 -359
- data/lib/cybersource_rest_client/models/ptsv2payments_processing_information_loan_options.rb +206 -224
- data/lib/cybersource_rest_client/models/ptsv2payments_processing_information_purchase_options.rb +200 -209
- data/lib/cybersource_rest_client/models/ptsv2payments_processing_information_recurring_options.rb +198 -198
- data/lib/cybersource_rest_client/models/ptsv2payments_promotion_information.rb +206 -224
- data/lib/cybersource_rest_client/models/ptsv2payments_recipient_information.rb +222 -249
- data/lib/cybersource_rest_client/models/{riskv1authentications_recurring_payment_information.rb → ptsv2payments_recurring_payment_information.rb} +217 -235
- data/lib/cybersource_rest_client/models/{tms_v1_instrument_identifiers_post200_response_card.rb → ptsv2payments_risk_information.rb} +209 -208
- data/lib/cybersource_rest_client/models/{riskv1authentications_risk_information_buyer_history.rb → ptsv2payments_risk_information_buyer_history.rb} +262 -262
- data/lib/cybersource_rest_client/models/{riskv1authentications_risk_information_buyer_history_account_history.rb → ptsv2payments_risk_information_buyer_history_account_history.rb} +200 -209
- data/lib/cybersource_rest_client/models/{riskv1authentications_risk_information_buyer_history_customer_account.rb → ptsv2payments_risk_information_buyer_history_customer_account.rb} +252 -279
- data/lib/cybersource_rest_client/models/{riskv1decisions_risk_information_profile.rb → ptsv2payments_risk_information_profile.rb} +191 -200
- data/lib/cybersource_rest_client/models/ptsv2payments_token_information.rb +218 -0
- data/lib/cybersource_rest_client/models/ptsv2payments_token_information_payment_instrument.rb +186 -0
- data/lib/cybersource_rest_client/models/ptsv2payments_token_information_shipping_address.rb +186 -0
- data/lib/cybersource_rest_client/models/ptsv2payments_travel_information.rb +226 -226
- data/lib/cybersource_rest_client/models/ptsv2payments_travel_information_agency.rb +206 -224
- data/lib/cybersource_rest_client/models/ptsv2payments_travel_information_auto_rental.rb +813 -0
- data/lib/cybersource_rest_client/models/ptsv2payments_travel_information_auto_rental_rental_address.rb +286 -0
- data/lib/cybersource_rest_client/models/ptsv2payments_travel_information_auto_rental_return_address.rb +254 -0
- data/lib/cybersource_rest_client/models/ptsv2payments_travel_information_auto_rental_tax_details.rb +264 -0
- data/lib/cybersource_rest_client/models/ptsv2payments_travel_information_lodging.rb +878 -1229
- data/lib/cybersource_rest_client/models/ptsv2payments_travel_information_lodging_room.rb +224 -233
- data/lib/cybersource_rest_client/models/ptsv2payments_travel_information_transit.rb +183 -183
- data/lib/cybersource_rest_client/models/ptsv2payments_travel_information_transit_airline.rb +727 -988
- data/lib/cybersource_rest_client/models/ptsv2payments_travel_information_transit_airline_ancillary_information.rb +249 -285
- data/lib/cybersource_rest_client/models/ptsv2payments_travel_information_transit_airline_ancillary_information_service.rb +206 -224
- data/lib/cybersource_rest_client/models/ptsv2payments_travel_information_transit_airline_legs.rb +470 -614
- data/lib/cybersource_rest_client/models/ptsv2payments_travel_information_transit_airline_ticket_issuer.rb +286 -349
- data/lib/cybersource_rest_client/models/ptsv2paymentsid_client_reference_information.rb +229 -208
- data/lib/cybersource_rest_client/models/ptsv2paymentsid_client_reference_information_partner.rb +222 -249
- data/lib/cybersource_rest_client/models/ptsv2paymentsid_merchant_information.rb +190 -199
- data/lib/cybersource_rest_client/models/ptsv2paymentsid_order_information.rb +183 -183
- data/lib/cybersource_rest_client/models/ptsv2paymentsid_order_information_amount_details.rb +206 -224
- data/lib/cybersource_rest_client/models/ptsv2paymentsid_processing_information.rb +183 -183
- data/lib/cybersource_rest_client/models/ptsv2paymentsid_processing_information_authorization_options.rb +183 -183
- data/lib/cybersource_rest_client/models/ptsv2paymentsid_processing_information_authorization_options_initiator.rb +184 -184
- data/lib/cybersource_rest_client/models/ptsv2paymentsid_travel_information.rb +190 -199
- data/lib/cybersource_rest_client/models/ptsv2paymentsidcaptures_aggregator_information.rb +215 -233
- data/lib/cybersource_rest_client/models/ptsv2paymentsidcaptures_aggregator_information_sub_merchant.rb +318 -399
- data/lib/cybersource_rest_client/models/ptsv2paymentsidcaptures_buyer_information.rb +206 -224
- data/lib/cybersource_rest_client/models/ptsv2paymentsidcaptures_device_information.rb +222 -0
- data/lib/cybersource_rest_client/models/ptsv2paymentsidcaptures_installment_information.rb +592 -799
- data/lib/cybersource_rest_client/models/ptsv2paymentsidcaptures_merchant_information.rb +265 -292
- data/lib/cybersource_rest_client/models/ptsv2paymentsidcaptures_order_information.rb +230 -230
- data/lib/cybersource_rest_client/models/ptsv2paymentsidcaptures_order_information_amount_details.rb +484 -646
- data/lib/cybersource_rest_client/models/ptsv2paymentsidcaptures_order_information_bill_to.rb +343 -449
- data/lib/cybersource_rest_client/models/ptsv2paymentsidcaptures_order_information_invoice_details.rb +275 -320
- data/lib/cybersource_rest_client/models/ptsv2paymentsidcaptures_order_information_ship_to.rb +222 -249
- data/lib/cybersource_rest_client/models/ptsv2paymentsidcaptures_order_information_shipping_details.rb +190 -199
- data/lib/cybersource_rest_client/models/ptsv2paymentsidcaptures_payment_information.rb +192 -192
- data/lib/cybersource_rest_client/models/ptsv2paymentsidcaptures_payment_information_card.rb +206 -224
- data/lib/cybersource_rest_client/models/ptsv2paymentsidcaptures_point_of_sale_information.rb +199 -208
- data/lib/cybersource_rest_client/models/ptsv2paymentsidcaptures_point_of_sale_information_emv.rb +202 -211
- data/lib/cybersource_rest_client/models/ptsv2paymentsidcaptures_processing_information.rb +322 -385
- data/lib/cybersource_rest_client/models/ptsv2paymentsidcaptures_processing_information_authorization_options.rb +222 -249
- data/lib/cybersource_rest_client/models/ptsv2paymentsidcaptures_processing_information_capture_options.rb +242 -242
- data/lib/cybersource_rest_client/models/ptsv2paymentsidrefunds_merchant_information.rb +256 -283
- data/lib/cybersource_rest_client/models/ptsv2paymentsidrefunds_order_information.rb +230 -230
- data/lib/cybersource_rest_client/models/ptsv2paymentsidrefunds_order_information_line_items.rb +495 -639
- data/lib/cybersource_rest_client/models/ptsv2paymentsidrefunds_payment_information.rb +264 -228
- data/lib/cybersource_rest_client/models/ptsv2paymentsidrefunds_payment_information_card.rb +328 -409
- data/lib/cybersource_rest_client/models/ptsv2paymentsidrefunds_point_of_sale_information.rb +183 -183
- data/lib/cybersource_rest_client/models/ptsv2paymentsidrefunds_processing_information.rb +295 -358
- data/lib/cybersource_rest_client/models/ptsv2paymentsidrefunds_processing_information_recurring_options.rb +186 -186
- data/lib/cybersource_rest_client/models/ptsv2paymentsidreversals_client_reference_information.rb +239 -218
- data/lib/cybersource_rest_client/models/ptsv2paymentsidreversals_client_reference_information_partner.rb +222 -249
- data/lib/cybersource_rest_client/models/ptsv2paymentsidreversals_order_information.rb +194 -194
- data/lib/cybersource_rest_client/models/ptsv2paymentsidreversals_order_information_amount_details.rb +190 -199
- data/lib/cybersource_rest_client/models/ptsv2paymentsidreversals_order_information_line_items.rb +224 -233
- data/lib/cybersource_rest_client/models/ptsv2paymentsidreversals_point_of_sale_information.rb +183 -183
- data/lib/cybersource_rest_client/models/ptsv2paymentsidreversals_point_of_sale_information_emv.rb +190 -199
- data/lib/cybersource_rest_client/models/ptsv2paymentsidreversals_processing_information.rb +263 -308
- data/lib/cybersource_rest_client/models/ptsv2paymentsidreversals_reversal_information.rb +193 -193
- data/lib/cybersource_rest_client/models/ptsv2paymentsidreversals_reversal_information_amount_details.rb +206 -224
- data/lib/cybersource_rest_client/models/ptsv2paymentsidvoids_payment_information.rb +183 -183
- data/lib/cybersource_rest_client/models/ptsv2payouts_client_reference_information.rb +220 -0
- data/lib/cybersource_rest_client/models/ptsv2payouts_merchant_information.rb +234 -243
- data/lib/cybersource_rest_client/models/ptsv2payouts_merchant_information_merchant_descriptor.rb +252 -279
- data/lib/cybersource_rest_client/models/ptsv2payouts_order_information.rb +192 -192
- data/lib/cybersource_rest_client/models/ptsv2payouts_order_information_amount_details.rb +215 -233
- data/lib/cybersource_rest_client/models/ptsv2payouts_order_information_amount_details_surcharge.rb +190 -199
- data/lib/cybersource_rest_client/models/ptsv2payouts_order_information_bill_to.rb +328 -409
- data/lib/cybersource_rest_client/models/ptsv2payouts_payment_information.rb +192 -192
- data/lib/cybersource_rest_client/models/ptsv2payouts_payment_information_card.rb +248 -284
- data/lib/cybersource_rest_client/models/ptsv2payouts_processing_information.rb +247 -283
- data/lib/cybersource_rest_client/models/ptsv2payouts_processing_information_payouts_options.rb +238 -274
- data/lib/cybersource_rest_client/models/ptsv2payouts_recipient_information.rb +334 -433
- data/lib/cybersource_rest_client/models/ptsv2payouts_sender_information.rb +391 -517
- data/lib/cybersource_rest_client/models/ptsv2payouts_sender_information_account.rb +206 -233
- data/lib/cybersource_rest_client/models/refund_capture_request.rb +285 -285
- data/lib/cybersource_rest_client/models/refund_payment_request.rb +285 -285
- data/lib/cybersource_rest_client/models/reporting_v3_conversion_details_get200_response.rb +213 -213
- data/lib/cybersource_rest_client/models/reporting_v3_conversion_details_get200_response_conversion_details.rb +275 -275
- data/lib/cybersource_rest_client/models/reporting_v3_conversion_details_get200_response_notes.rb +204 -204
- data/lib/cybersource_rest_client/models/reporting_v3_net_fundings_get200_response.rb +266 -266
- data/lib/cybersource_rest_client/models/reporting_v3_net_fundings_get200_response_net_funding_summaries.rb +248 -248
- data/lib/cybersource_rest_client/models/reporting_v3_net_fundings_get200_response_total_purchases.rb +203 -203
- data/lib/cybersource_rest_client/models/reporting_v3_notificationof_changes_get200_response.rb +186 -186
- data/lib/cybersource_rest_client/models/reporting_v3_notificationof_changes_get200_response_notification_of_changes.rb +255 -255
- data/lib/cybersource_rest_client/models/reporting_v3_payment_batch_summaries_get200_response.rb +203 -203
- data/lib/cybersource_rest_client/models/reporting_v3_payment_batch_summaries_get200_response_payment_batch_summaries.rb +282 -282
- data/lib/cybersource_rest_client/models/reporting_v3_purchase_refund_details_get200_response.rb +273 -273
- data/lib/cybersource_rest_client/models/reporting_v3_purchase_refund_details_get200_response_authorizations.rb +255 -255
- data/lib/cybersource_rest_client/models/reporting_v3_purchase_refund_details_get200_response_fee_and_funding_details.rb +311 -320
- data/lib/cybersource_rest_client/models/reporting_v3_purchase_refund_details_get200_response_others.rb +251 -260
- data/lib/cybersource_rest_client/models/reporting_v3_purchase_refund_details_get200_response_request_details.rb +235 -235
- data/lib/cybersource_rest_client/models/reporting_v3_purchase_refund_details_get200_response_settlement_statuses.rb +231 -240
- data/lib/cybersource_rest_client/models/reporting_v3_purchase_refund_details_get200_response_settlements.rb +304 -304
- data/lib/cybersource_rest_client/models/reporting_v3_report_definitions_get200_response.rb +185 -185
- data/lib/cybersource_rest_client/models/reporting_v3_report_definitions_get200_response_report_definitions.rb +241 -241
- data/lib/cybersource_rest_client/models/reporting_v3_report_definitions_name_get200_response.rb +251 -251
- data/lib/cybersource_rest_client/models/reporting_v3_report_definitions_name_get200_response_attributes.rb +239 -239
- data/lib/cybersource_rest_client/models/reporting_v3_report_definitions_name_get200_response_default_settings.rb +255 -255
- data/lib/cybersource_rest_client/models/reporting_v3_report_subscriptions_get200_response.rb +185 -185
- data/lib/cybersource_rest_client/models/reporting_v3_report_subscriptions_get200_response_subscriptions.rb +333 -333
- data/lib/cybersource_rest_client/models/reporting_v3_reports_get200_response.rb +185 -185
- data/lib/cybersource_rest_client/models/reporting_v3_reports_get200_response__link.rb +183 -183
- data/lib/cybersource_rest_client/models/reporting_v3_reports_get200_response__link_report_download.rb +192 -192
- data/lib/cybersource_rest_client/models/reporting_v3_reports_get200_response_report_search_results.rb +334 -334
- data/lib/cybersource_rest_client/models/reporting_v3_reports_id_get200_response.rb +318 -318
- data/lib/cybersource_rest_client/models/reportingv3_report_downloads_get400_response.rb +237 -237
- data/lib/cybersource_rest_client/models/reportingv3_report_downloads_get400_response_details.rb +195 -195
- data/lib/cybersource_rest_client/models/reportingv3reports_report_preferences.rb +195 -195
- data/lib/cybersource_rest_client/models/risk_v1_address_verifications_post201_response.rb +266 -285
- data/lib/cybersource_rest_client/models/risk_v1_address_verifications_post201_response_address1.rb +206 -224
- data/lib/cybersource_rest_client/models/risk_v1_address_verifications_post201_response_address_verification_information.rb +282 -327
- data/lib/cybersource_rest_client/models/risk_v1_address_verifications_post201_response_address_verification_information_bar_code.rb +200 -209
- data/lib/cybersource_rest_client/models/risk_v1_address_verifications_post201_response_address_verification_information_standard_address.rb +343 -433
- data/lib/cybersource_rest_client/models/risk_v1_address_verifications_post201_response_error_information.rb +205 -0
- data/lib/cybersource_rest_client/models/risk_v1_authentication_results_post201_response.rb +266 -285
- data/lib/cybersource_rest_client/models/risk_v1_authentication_results_post201_response_consumer_authentication_information.rb +464 -569
- data/lib/cybersource_rest_client/models/risk_v1_authentication_setups_post201_response.rb +237 -246
- data/lib/cybersource_rest_client/models/risk_v1_authentication_setups_post201_response_consumer_authentication_information.rb +216 -224
- data/lib/cybersource_rest_client/models/risk_v1_authentication_setups_post201_response_error_information.rb +205 -205
- data/lib/cybersource_rest_client/models/risk_v1_authentications_post201_response.rb +275 -294
- data/lib/cybersource_rest_client/models/{response_status.rb → risk_v1_authentications_post201_response_error_information.rb} +205 -225
- data/lib/cybersource_rest_client/models/risk_v1_authentications_post400_response.rb +225 -225
- data/lib/cybersource_rest_client/models/{risk_v1_authentication_excemptions_post400_response.rb → risk_v1_authentications_post400_response_1.rb} +225 -225
- data/lib/cybersource_rest_client/models/risk_v1_decisions_post201_response.rb +283 -265
- data/lib/cybersource_rest_client/models/risk_v1_decisions_post201_response_consumer_authentication_information.rb +647 -0
- data/lib/cybersource_rest_client/models/risk_v1_decisions_post201_response_error_information.rb +205 -0
- data/lib/cybersource_rest_client/models/{error.rb → risk_v1_decisions_post201_response_order_information.rb} +183 -192
- data/lib/cybersource_rest_client/models/risk_v1_decisions_post201_response_order_information_amount_details.rb +190 -0
- data/lib/cybersource_rest_client/models/risk_v1_decisions_post201_response_payment_information.rb +255 -300
- data/lib/cybersource_rest_client/models/risk_v1_decisions_post400_response.rb +225 -225
- data/lib/cybersource_rest_client/models/risk_v1_decisions_post400_response_1.rb +225 -0
- data/lib/cybersource_rest_client/models/risk_v1_export_compliance_inquiries_post201_response.rb +266 -285
- data/lib/cybersource_rest_client/models/risk_v1_export_compliance_inquiries_post201_response_error_information.rb +205 -0
- data/lib/cybersource_rest_client/models/risk_v1_export_compliance_inquiries_post201_response_export_compliance_information.rb +229 -229
- data/lib/cybersource_rest_client/models/risk_v1_export_compliance_inquiries_post201_response_export_compliance_information_watch_list.rb +185 -185
- data/lib/cybersource_rest_client/models/risk_v1_export_compliance_inquiries_post201_response_watch_list_matches.rb +226 -235
- data/lib/cybersource_rest_client/models/risk_v1_update_post201_response.rb +228 -237
- data/lib/cybersource_rest_client/models/riskv1addressverifications_buyer_information.rb +190 -199
- data/lib/cybersource_rest_client/models/riskv1addressverifications_client_reference_information.rb +215 -233
- data/lib/cybersource_rest_client/models/riskv1addressverifications_order_information.rb +203 -203
- data/lib/cybersource_rest_client/models/riskv1addressverifications_order_information_bill_to.rb +338 -410
- data/lib/cybersource_rest_client/models/riskv1addressverifications_order_information_line_items.rb +297 -342
- data/lib/cybersource_rest_client/models/riskv1addressverifications_order_information_ship_to.rb +320 -392
- data/lib/cybersource_rest_client/models/riskv1authenticationresults_consumer_authentication_information.rb +279 -314
- data/lib/cybersource_rest_client/models/riskv1authenticationresults_order_information.rb +194 -194
- data/lib/cybersource_rest_client/models/riskv1authenticationresults_order_information_line_items.rb +249 -267
- data/lib/cybersource_rest_client/models/riskv1authenticationresults_payment_information.rb +210 -201
- data/lib/cybersource_rest_client/models/riskv1authenticationresults_payment_information_card.rb +253 -298
- data/lib/cybersource_rest_client/models/riskv1authenticationresults_payment_information_tokenized_card.rb +237 -264
- data/lib/cybersource_rest_client/models/riskv1authentications_buyer_information.rb +201 -196
- data/lib/cybersource_rest_client/models/riskv1authentications_device_information.rb +349 -430
- data/lib/cybersource_rest_client/models/riskv1authentications_order_information.rb +265 -283
- data/lib/cybersource_rest_client/models/riskv1authentications_order_information_amount_details.rb +225 -0
- data/lib/cybersource_rest_client/models/{riskv1authenticationexemptions_order_information_bill_to.rb → riskv1authentications_order_information_bill_to.rb} +397 -496
- data/lib/cybersource_rest_client/models/riskv1authentications_order_information_line_items.rb +342 -396
- data/lib/cybersource_rest_client/models/{riskv1authenticationexemptions_payment_information.rb → riskv1authentications_payment_information.rb} +210 -201
- data/lib/cybersource_rest_client/models/{riskv1authenticationexemptions_payment_information_card.rb → riskv1authentications_payment_information_card.rb} +280 -325
- data/lib/cybersource_rest_client/models/{riskv1authenticationexemptions_payment_information_tokenized_card.rb → riskv1authentications_payment_information_tokenized_card.rb} +264 -291
- data/lib/cybersource_rest_client/models/riskv1authentications_risk_information.rb +183 -183
- data/lib/cybersource_rest_client/models/riskv1authentications_travel_information.rb +206 -206
- data/lib/cybersource_rest_client/models/riskv1authenticationsetups_client_reference_information.rb +199 -208
- data/lib/cybersource_rest_client/models/riskv1authenticationsetups_payment_information.rb +210 -210
- data/lib/cybersource_rest_client/models/riskv1authenticationsetups_payment_information_card.rb +259 -286
- data/lib/cybersource_rest_client/models/riskv1authenticationsetups_payment_information_customer.rb +190 -0
- data/lib/cybersource_rest_client/models/{riskv1authenticationexemptions_payment_information_fluid_data.rb → riskv1authenticationsetups_payment_information_fluid_data.rb} +241 -268
- data/lib/cybersource_rest_client/models/riskv1authenticationsetups_payment_information_tokenized_card.rb +289 -325
- data/lib/cybersource_rest_client/models/riskv1authenticationsetups_processing_information.rb +206 -224
- data/lib/cybersource_rest_client/models/riskv1authenticationsetups_token_information.rb +184 -184
- data/lib/cybersource_rest_client/models/riskv1decisions_buyer_information.rb +250 -261
- data/lib/cybersource_rest_client/models/riskv1decisions_client_reference_information.rb +206 -224
- data/lib/cybersource_rest_client/models/{riskv1authentications_consumer_authentication_information.rb → riskv1decisions_consumer_authentication_information.rb} +753 -1030
- data/lib/cybersource_rest_client/models/{riskv1authentications_consumer_authentication_information_strong_authentication.rb → riskv1decisions_consumer_authentication_information_strong_authentication.rb} +190 -199
- data/lib/cybersource_rest_client/models/riskv1decisions_device_information.rb +411 -279
- data/lib/cybersource_rest_client/models/riskv1decisions_merchant_defined_information.rb +207 -225
- data/lib/cybersource_rest_client/models/{riskv1authentications_merchant_information.rb → riskv1decisions_merchant_information.rb} +199 -208
- data/lib/cybersource_rest_client/models/{riskv1authentications_merchant_information_merchant_descriptor.rb → riskv1decisions_merchant_information_merchant_descriptor.rb} +200 -209
- data/lib/cybersource_rest_client/models/riskv1decisions_order_information.rb +285 -233
- data/lib/cybersource_rest_client/models/riskv1decisions_order_information_amount_details.rb +216 -234
- data/lib/cybersource_rest_client/models/riskv1decisions_order_information_bill_to.rb +334 -424
- data/lib/cybersource_rest_client/models/riskv1decisions_order_information_line_items.rb +391 -377
- data/lib/cybersource_rest_client/models/riskv1decisions_order_information_ship_to.rb +360 -400
- data/lib/cybersource_rest_client/models/riskv1decisions_order_information_shipping_details.rb +201 -210
- data/lib/cybersource_rest_client/models/riskv1decisions_payment_information.rb +227 -193
- data/lib/cybersource_rest_client/models/riskv1decisions_payment_information_card.rb +249 -285
- data/lib/cybersource_rest_client/models/riskv1decisions_payment_information_tokenized_card.rb +233 -260
- data/lib/cybersource_rest_client/models/riskv1decisions_processing_information.rb +187 -0
- data/lib/cybersource_rest_client/models/riskv1decisions_processor_information.rb +193 -184
- data/lib/cybersource_rest_client/models/riskv1decisions_processor_information_avs.rb +191 -200
- data/lib/cybersource_rest_client/models/{riskv1decisions_card_verification.rb → riskv1decisions_processor_information_card_verification.rb} +190 -199
- data/lib/cybersource_rest_client/models/riskv1decisions_risk_information.rb +208 -208
- data/lib/cybersource_rest_client/models/riskv1decisions_travel_information.rb +270 -285
- data/lib/cybersource_rest_client/models/riskv1decisions_travel_information_legs.rb +232 -249
- data/lib/cybersource_rest_client/models/{riskv1authentications_travel_information_passengers.rb → riskv1decisions_travel_information_passengers.rb} +206 -224
- data/lib/cybersource_rest_client/models/riskv1decisionsidmarking_risk_information.rb +183 -183
- data/lib/cybersource_rest_client/models/riskv1decisionsidmarking_risk_information_marking_details.rb +229 -247
- data/lib/cybersource_rest_client/models/riskv1exportcomplianceinquiries_device_information.rb +206 -224
- data/lib/cybersource_rest_client/models/riskv1exportcomplianceinquiries_export_compliance_information.rb +205 -205
- data/lib/cybersource_rest_client/models/riskv1exportcomplianceinquiries_export_compliance_information_weights.rb +222 -249
- data/lib/cybersource_rest_client/models/riskv1exportcomplianceinquiries_order_information.rb +203 -203
- data/lib/cybersource_rest_client/models/riskv1exportcomplianceinquiries_order_information_bill_to.rb +404 -503
- data/lib/cybersource_rest_client/models/riskv1exportcomplianceinquiries_order_information_bill_to_company.rb +190 -199
- data/lib/cybersource_rest_client/models/riskv1exportcomplianceinquiries_order_information_line_items.rb +319 -364
- data/lib/cybersource_rest_client/models/riskv1exportcomplianceinquiries_order_information_ship_to.rb +222 -249
- data/lib/cybersource_rest_client/models/riskv1liststypeentries_buyer_information.rb +186 -186
- data/lib/cybersource_rest_client/models/riskv1liststypeentries_device_information.rb +206 -224
- data/lib/cybersource_rest_client/models/riskv1liststypeentries_order_information.rb +213 -213
- data/lib/cybersource_rest_client/models/riskv1liststypeentries_order_information_address.rb +271 -325
- data/lib/cybersource_rest_client/models/riskv1liststypeentries_order_information_bill_to.rb +350 -449
- data/lib/cybersource_rest_client/models/riskv1liststypeentries_order_information_line_items.rb +190 -199
- data/lib/cybersource_rest_client/models/riskv1liststypeentries_order_information_ship_to.rb +271 -325
- data/lib/cybersource_rest_client/models/riskv1liststypeentries_payment_information.rb +193 -193
- data/lib/cybersource_rest_client/models/riskv1liststypeentries_payment_information_bank.rb +239 -275
- data/lib/cybersource_rest_client/models/riskv1liststypeentries_payment_information_card.rb +216 -234
- data/lib/cybersource_rest_client/models/riskv1liststypeentries_risk_information.rb +183 -183
- data/lib/cybersource_rest_client/models/riskv1liststypeentries_risk_information_marking_details.rb +233 -260
- data/lib/cybersource_rest_client/models/search_request.rb +214 -0
- data/lib/cybersource_rest_client/models/{tms_v1_instrument_identifiers_payment_instruments_get200_response.rb → shipping_address_list_for_customer.rb} +233 -242
- data/lib/cybersource_rest_client/models/shipping_address_list_for_customer__embedded.rb +186 -0
- data/lib/cybersource_rest_client/models/{payment_instrument_for_instrument_identifier_links.rb → shipping_address_list_for_customer__links.rb} +219 -219
- data/lib/cybersource_rest_client/models/shipping_address_list_for_customer__links_first.rb +184 -0
- data/lib/cybersource_rest_client/models/{payment_instrument_self_link.rb → shipping_address_list_for_customer__links_last.rb} +184 -183
- data/lib/cybersource_rest_client/models/{pi_for_ii_link_first.rb → shipping_address_list_for_customer__links_next.rb} +184 -184
- data/lib/cybersource_rest_client/models/shipping_address_list_for_customer__links_prev.rb +184 -0
- data/lib/cybersource_rest_client/models/shipping_address_list_for_customer__links_self.rb +184 -0
- data/lib/cybersource_rest_client/models/{authentication_exemptions_request.rb → tax_request.rb} +219 -228
- data/lib/cybersource_rest_client/models/tms_v2_customers_response.rb +274 -0
- data/lib/cybersource_rest_client/models/{der_public_key.rb → tmsv2customers__embedded.rb} +193 -205
- data/lib/cybersource_rest_client/models/{tms_v1_instrument_identifiers_post200_response_processing_information_authorization_options.rb → tmsv2customers__embedded_authorization_options.rb} +183 -183
- data/lib/cybersource_rest_client/models/{initiator.rb → tmsv2customers__embedded_authorization_options_initiator.rb} +183 -183
- data/lib/cybersource_rest_client/models/tmsv2customers__embedded_default_payment_instrument.rb +310 -0
- data/lib/cybersource_rest_client/models/{tms_v1_instrument_identifiers_payment_instruments_get200_response__embedded__embedded.rb → tmsv2customers__embedded_default_payment_instrument__embedded.rb} +184 -183
- data/lib/cybersource_rest_client/models/{tms_v1_instrument_identifiers_post200_response.rb → tmsv2customers__embedded_default_payment_instrument__embedded_instrument_identifier.rb} +286 -267
- data/lib/cybersource_rest_client/models/{model_409_links.rb → tmsv2customers__embedded_default_payment_instrument__embedded_instrument_identifier__links.rb} +192 -183
- data/lib/cybersource_rest_client/models/tmsv2customers__embedded_default_payment_instrument__embedded_instrument_identifier__links_self.rb +184 -0
- data/lib/cybersource_rest_client/models/{instrument_identifier_card.rb → tmsv2customers__embedded_default_payment_instrument__embedded_instrument_identifier_bank_account.rb} +200 -208
- data/lib/cybersource_rest_client/models/{tmsv1instrumentidentifiers_bill_to.rb → tmsv2customers__embedded_default_payment_instrument__embedded_instrument_identifier_bill_to.rb} +271 -234
- data/lib/cybersource_rest_client/models/{instrument_identifier_bank_account.rb → tmsv2customers__embedded_default_payment_instrument__embedded_instrument_identifier_card.rb} +239 -242
- data/lib/cybersource_rest_client/models/tmsv2customers__embedded_default_payment_instrument__embedded_instrument_identifier_issuer.rb +190 -0
- data/lib/cybersource_rest_client/models/tmsv2customers__embedded_default_payment_instrument__embedded_instrument_identifier_metadata.rb +184 -0
- data/lib/cybersource_rest_client/models/{payment_instruments_links.rb → tmsv2customers__embedded_default_payment_instrument__links.rb} +192 -183
- data/lib/cybersource_rest_client/models/tmsv2customers__embedded_default_payment_instrument__links_self.rb +184 -0
- data/lib/cybersource_rest_client/models/{payment_instrument_bank_account.rb → tmsv2customers__embedded_default_payment_instrument_bank_account.rb} +190 -184
- data/lib/cybersource_rest_client/models/tmsv2customers__embedded_default_payment_instrument_bill_to.rb +350 -0
- data/lib/cybersource_rest_client/models/{risk_v1_authentications_post201_response_order_information_amount_details.rb → tmsv2customers__embedded_default_payment_instrument_buyer_information.rb} +227 -199
- data/lib/cybersource_rest_client/models/{tms_v1_instrument_identifiers_payment_instruments_get200_response_buyer_information_issued_by.rb → tmsv2customers__embedded_default_payment_instrument_buyer_information_issued_by.rb} +190 -184
- data/lib/cybersource_rest_client/models/{tms_v1_instrument_identifiers_payment_instruments_get200_response_personal_identification.rb → tmsv2customers__embedded_default_payment_instrument_buyer_information_personal_identification.rb} +209 -203
- data/lib/cybersource_rest_client/models/{tms_v1_instrument_identifiers_post200_response_tokenized_card.rb → tmsv2customers__embedded_default_payment_instrument_card.rb} +283 -272
- data/lib/cybersource_rest_client/models/{issuer.rb → tmsv2customers__embedded_default_payment_instrument_card_tokenized_information.rb} +206 -208
- data/lib/cybersource_rest_client/models/tmsv2customers__embedded_default_payment_instrument_instrument_identifier.rb +190 -0
- data/lib/cybersource_rest_client/models/{merchant_information.rb → tmsv2customers__embedded_default_payment_instrument_merchant_information.rb} +183 -183
- data/lib/cybersource_rest_client/models/{tms_v1_instrument_identifiers_payment_instruments_get200_response_merchant_descriptor.rb → tmsv2customers__embedded_default_payment_instrument_merchant_information_merchant_descriptor.rb} +190 -184
- data/lib/cybersource_rest_client/models/tmsv2customers__embedded_default_payment_instrument_metadata.rb +184 -0
- data/lib/cybersource_rest_client/models/{processing_information.rb → tmsv2customers__embedded_default_payment_instrument_processing_information.rb} +193 -195
- data/lib/cybersource_rest_client/models/{tokenize_parameters.rb → tmsv2customers__embedded_default_payment_instrument_processing_information_bank_transfer_options.rb} +190 -198
- data/lib/cybersource_rest_client/models/tmsv2customers__embedded_default_shipping_address.rb +227 -0
- data/lib/cybersource_rest_client/models/{tms_v1_instrument_identifiers_payment_instruments_get200_response__embedded__links.rb → tmsv2customers__embedded_default_shipping_address__links.rb} +192 -183
- data/lib/cybersource_rest_client/models/tmsv2customers__embedded_default_shipping_address__links_customer.rb +184 -0
- data/lib/cybersource_rest_client/models/tmsv2customers__embedded_default_shipping_address__links_self.rb +184 -0
- data/lib/cybersource_rest_client/models/{tms_v1_instrument_identifiers_post200_response_metadata.rb → tmsv2customers__embedded_default_shipping_address_metadata.rb} +184 -184
- data/lib/cybersource_rest_client/models/{riskv1authenticationexemptions_order_information_ship_to.rb → tmsv2customers__embedded_default_shipping_address_ship_to.rb} +350 -399
- data/lib/cybersource_rest_client/models/{merchant_initiated_transaction.rb → tmsv2customers__embedded_merchant_initiated_transaction.rb} +190 -199
- data/lib/cybersource_rest_client/models/tmsv2customers__embedded_payment_instruments.rb +184 -0
- data/lib/cybersource_rest_client/models/{instrument_identifier_processing_information.rb → tmsv2customers__embedded_processing_information.rb} +183 -183
- data/lib/cybersource_rest_client/models/{instrument_identifier_tokenized_card.rb → tmsv2customers__embedded_tokenized_card.rb} +255 -272
- data/lib/cybersource_rest_client/models/tmsv2customers__embedded_tokenized_card_card.rb +217 -0
- data/lib/cybersource_rest_client/models/{tms_v1_instrument_identifiers_post200_response__links.rb → tmsv2customers__links.rb} +201 -210
- data/lib/cybersource_rest_client/models/tmsv2customers__links_payment_instruments.rb +184 -0
- data/lib/cybersource_rest_client/models/{instrument_identifier_payment_instruments_link.rb → tmsv2customers__links_self.rb} +184 -183
- data/lib/cybersource_rest_client/models/tmsv2customers__links_shipping_address.rb +184 -0
- data/lib/cybersource_rest_client/models/tmsv2customers_buyer_information.rb +206 -0
- data/lib/cybersource_rest_client/models/{response_status_details.rb → tmsv2customers_client_reference_information.rb} +190 -194
- data/lib/cybersource_rest_client/models/{instrument_identifier_update.rb → tmsv2customers_default_payment_instrument.rb} +184 -183
- data/lib/cybersource_rest_client/models/tmsv2customers_default_shipping_address.rb +184 -0
- data/lib/cybersource_rest_client/models/{file_detail.rb → tmsv2customers_merchant_defined_information.rb} +200 -244
- data/lib/cybersource_rest_client/models/{metadata.rb → tmsv2customers_metadata.rb} +184 -184
- data/lib/cybersource_rest_client/models/{link.rb → tmsv2customers_object_information.rb} +206 -204
- data/lib/cybersource_rest_client/models/tokenize_request.rb +198 -198
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response.rb +417 -444
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response__links.rb +194 -194
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_application_information.rb +225 -225
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_application_information_applications.rb +254 -254
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_buyer_information.rb +206 -224
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_client_reference_information.rb +236 -254
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_consumer_authentication_information.rb +232 -259
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_device_information.rb +216 -234
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_error_information.rb +205 -205
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_fraud_marking_information.rb +184 -184
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_installment_information.rb +184 -184
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_merchant_information.rb +183 -183
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_merchant_information_merchant_descriptor.rb +184 -184
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_order_information.rb +231 -222
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_order_information_amount_details.rb +270 -324
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_order_information_bill_to.rb +398 -524
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_order_information_invoice_details.rb +199 -0
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_order_information_line_items.rb +298 -343
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_order_information_ship_to.rb +334 -424
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_order_information_shipping_details.rb +200 -209
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_payment_information.rb +228 -228
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_payment_information_account_features.rb +222 -249
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_payment_information_bank.rb +242 -242
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_payment_information_bank_account.rb +262 -289
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_payment_information_bank_mandate.rb +204 -204
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_payment_information_card.rb +322 -394
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_payment_information_invoice.rb +204 -204
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_payment_information_payment_type.rb +204 -204
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_point_of_sale_information.rb +249 -233
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_processing_information.rb +243 -252
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_processing_information_authorization_options.rb +190 -199
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_processing_information_bank_transfer_options.rb +184 -184
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_processing_information_japan_payment_options.rb +238 -0
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_processor_information.rb +335 -359
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_processor_information_electronic_verification_results.rb +334 -424
- data/lib/cybersource_rest_client/models/{riskv1authenticationexemptions_merchant_information_merchant_descriptor.rb → tss_v2_transactions_get200_response_processor_information_multi_processor_routing.rb} +226 -229
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_processor_information_processor.rb +190 -199
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_risk_information.rb +233 -233
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_risk_information_profile.rb +194 -194
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_risk_information_rules.rb +207 -225
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_risk_information_score.rb +196 -196
- data/lib/cybersource_rest_client/models/tss_v2_transactions_get200_response_sender_information.rb +190 -199
- data/lib/cybersource_rest_client/models/tss_v2_transactions_post201_response.rb +318 -327
- data/lib/cybersource_rest_client/models/tss_v2_transactions_post201_response__embedded.rb +186 -186
- data/lib/cybersource_rest_client/models/tss_v2_transactions_post201_response__embedded__links.rb +183 -183
- data/lib/cybersource_rest_client/models/tss_v2_transactions_post201_response__embedded_application_information.rb +225 -0
- data/lib/cybersource_rest_client/models/tss_v2_transactions_post201_response__embedded_application_information_applications.rb +244 -0
- data/lib/cybersource_rest_client/models/tss_v2_transactions_post201_response__embedded_buyer_information.rb +190 -199
- data/lib/cybersource_rest_client/models/tss_v2_transactions_post201_response__embedded_client_reference_information.rb +210 -219
- data/lib/cybersource_rest_client/models/tss_v2_transactions_post201_response__embedded_consumer_authentication_information.rb +216 -209
- data/lib/cybersource_rest_client/models/tss_v2_transactions_post201_response__embedded_device_information.rb +190 -199
- data/lib/cybersource_rest_client/models/tss_v2_transactions_post201_response__embedded_merchant_information.rb +190 -199
- data/lib/cybersource_rest_client/models/tss_v2_transactions_post201_response__embedded_order_information.rb +201 -201
- data/lib/cybersource_rest_client/models/tss_v2_transactions_post201_response__embedded_order_information_bill_to.rb +254 -299
- data/lib/cybersource_rest_client/models/tss_v2_transactions_post201_response__embedded_order_information_ship_to.rb +254 -299
- data/lib/cybersource_rest_client/models/tss_v2_transactions_post201_response__embedded_payment_information.rb +201 -201
- data/lib/cybersource_rest_client/models/tss_v2_transactions_post201_response__embedded_payment_information_card.rb +210 -219
- data/lib/cybersource_rest_client/models/tss_v2_transactions_post201_response__embedded_payment_information_payment_type.rb +194 -194
- data/lib/cybersource_rest_client/models/tss_v2_transactions_post201_response__embedded_point_of_sale_information.rb +225 -243
- data/lib/cybersource_rest_client/models/tss_v2_transactions_post201_response__embedded_point_of_sale_information_partner.rb +190 -199
- data/lib/cybersource_rest_client/models/tss_v2_transactions_post201_response__embedded_processing_information.rb +216 -209
- data/lib/cybersource_rest_client/models/tss_v2_transactions_post201_response__embedded_processor_information.rb +193 -183
- data/lib/cybersource_rest_client/models/tss_v2_transactions_post201_response__embedded_risk_information.rb +183 -183
- data/lib/cybersource_rest_client/models/tss_v2_transactions_post201_response__embedded_risk_information_providers.rb +183 -183
- data/lib/cybersource_rest_client/models/tss_v2_transactions_post201_response__embedded_risk_information_providers_fingerprint.rb +222 -249
- data/lib/cybersource_rest_client/models/tss_v2_transactions_post201_response__embedded_transaction_summaries.rb +348 -357
- data/lib/cybersource_rest_client/models/tss_v2_transactions_post400_response.rb +215 -215
- data/lib/cybersource_rest_client/models/ums_v1_users_get200_response.rb +185 -185
- data/lib/cybersource_rest_client/models/ums_v1_users_get200_response_account_information.rb +249 -249
- data/lib/cybersource_rest_client/models/ums_v1_users_get200_response_contact_information.rb +210 -210
- data/lib/cybersource_rest_client/models/ums_v1_users_get200_response_organization_information.rb +183 -183
- data/lib/cybersource_rest_client/models/ums_v1_users_get200_response_users.rb +201 -201
- data/lib/cybersource_rest_client/models/update_invoice_request.rb +201 -0
- data/lib/cybersource_rest_client/models/v1_file_details_get200_response.rb +194 -194
- data/lib/cybersource_rest_client/models/v1_file_details_get200_response__links.rb +194 -194
- data/lib/cybersource_rest_client/models/v1_file_details_get200_response__links_files.rb +202 -202
- data/lib/cybersource_rest_client/models/v1_file_details_get200_response__links_self.rb +192 -192
- data/lib/cybersource_rest_client/models/v1_file_details_get200_response_file_details.rb +244 -244
- data/lib/cybersource_rest_client/models/validate_export_compliance_request.rb +219 -219
- data/lib/cybersource_rest_client/models/validate_request.rb +219 -219
- data/lib/cybersource_rest_client/models/vas_v2_payments_post201_response.rb +246 -0
- data/lib/cybersource_rest_client/models/{authorization_options.rb → vas_v2_payments_post201_response__links.rb} +183 -183
- data/lib/cybersource_rest_client/models/vas_v2_payments_post201_response_order_information.rb +253 -0
- data/lib/cybersource_rest_client/models/vas_v2_payments_post201_response_order_information_jurisdiction.rb +318 -0
- data/lib/cybersource_rest_client/models/{tmsv1instrumentidentifiers_bank_account.rb → vas_v2_payments_post201_response_order_information_line_items.rb} +244 -242
- data/lib/cybersource_rest_client/models/{instrument_identifier_enrollable_card.rb → vas_v2_payments_post201_response_order_information_tax_details.rb} +206 -211
- data/lib/cybersource_rest_client/models/{card_info.rb → vas_v2_payments_post201_response_tax_information.rb} +194 -224
- data/lib/cybersource_rest_client/models/vas_v2_payments_post400_response.rb +225 -0
- data/lib/cybersource_rest_client/models/vas_v2_tax_void200_response.rb +228 -0
- data/lib/cybersource_rest_client/models/vas_v2_tax_void200_response_void_amount_details.rb +200 -0
- data/lib/cybersource_rest_client/models/vas_v2_tax_voids_post400_response.rb +225 -0
- data/lib/cybersource_rest_client/models/vasv2tax_buyer_information.rb +190 -0
- data/lib/cybersource_rest_client/models/vasv2tax_client_reference_information.rb +209 -0
- data/lib/cybersource_rest_client/models/vasv2tax_client_reference_information_partner.rb +206 -0
- data/lib/cybersource_rest_client/models/vasv2tax_merchant_information.rb +190 -0
- data/lib/cybersource_rest_client/models/{create_payment_instrument_request.rb → vasv2tax_order_information.rb} +248 -246
- data/lib/cybersource_rest_client/models/vasv2tax_order_information_bill_to.rb +270 -0
- data/lib/cybersource_rest_client/models/{risk_v1_authentication_exemptions_post201_response_risk_information.rb → vasv2tax_order_information_invoice_details.rb} +190 -199
- data/lib/cybersource_rest_client/models/vasv2tax_order_information_line_items.rb +402 -0
- data/lib/cybersource_rest_client/models/vasv2tax_order_information_order_acceptance.rb +239 -0
- data/lib/cybersource_rest_client/models/vasv2tax_order_information_order_origin.rb +239 -0
- data/lib/cybersource_rest_client/models/vasv2tax_order_information_ship_to.rb +286 -0
- data/lib/cybersource_rest_client/models/{buyer_information.rb → vasv2tax_order_information_shipping_details.rb} +238 -278
- data/lib/cybersource_rest_client/models/vasv2tax_tax_information.rb +260 -0
- data/lib/cybersource_rest_client/models/vasv2taxid_client_reference_information.rb +209 -0
- data/lib/cybersource_rest_client/models/vasv2taxid_client_reference_information_partner.rb +206 -0
- data/lib/cybersource_rest_client/models/verify_customer_address_request.rb +201 -201
- data/lib/cybersource_rest_client/models/void_capture_request.rb +192 -192
- data/lib/cybersource_rest_client/models/void_credit_request.rb +192 -192
- data/lib/cybersource_rest_client/models/void_payment_request.rb +192 -192
- data/lib/cybersource_rest_client/models/void_refund_request.rb +192 -192
- data/lib/cybersource_rest_client/models/void_tax_request.rb +183 -0
- data/lib/cybersource_rest_client/utilities/flex/token_verification.rb +41 -41
- data/lib/cybersource_rest_client/version.rb +15 -15
- metadata +278 -186
- data/lib/cybersource_rest_client/api/authentication_exemptions_api.rb +0 -89
- data/lib/cybersource_rest_client/models/bill_to.rb +0 -467
- data/lib/cybersource_rest_client/models/error_response_with_hal.rb +0 -174
- data/lib/cybersource_rest_client/models/existing_instrument_identifier_id.rb +0 -175
- data/lib/cybersource_rest_client/models/key_parameters.rb +0 -199
- data/lib/cybersource_rest_client/models/payment_instrument_card.rb +0 -369
- data/lib/cybersource_rest_client/models/payment_instrument_instrument_identifier_request.rb +0 -246
- data/lib/cybersource_rest_client/models/payment_instruments_array.rb +0 -175
- data/lib/cybersource_rest_client/models/personal_identification_array.rb +0 -174
- data/lib/cybersource_rest_client/models/pi_for_ii_link_last.rb +0 -184
- data/lib/cybersource_rest_client/models/pi_for_ii_link_next.rb +0 -184
- data/lib/cybersource_rest_client/models/pi_for_ii_link_prev.rb +0 -184
- data/lib/cybersource_rest_client/models/pi_for_ii_link_self.rb +0 -184
- data/lib/cybersource_rest_client/models/ptsv2paymentsidcaptures_travel_information.rb +0 -201
- data/lib/cybersource_rest_client/models/risk_v1_authentication_exemptions_consumer_authentication_information_strong_authentication.rb +0 -269
- data/lib/cybersource_rest_client/models/riskv1authenticationexemptions_device_information.rb +0 -183
- data/lib/cybersource_rest_client/models/riskv1authentications_order_information_ship_to.rb +0 -459
- data/lib/cybersource_rest_client/models/riskv1authentications_travel_information_legs.rb +0 -259
- data/lib/cybersource_rest_client/models/self_link_bean.rb +0 -192
- data/lib/cybersource_rest_client/models/tms_v1_instrument_identifiers_delete409_response.rb +0 -183
- data/lib/cybersource_rest_client/models/tms_v1_instrument_identifiers_delete409_response__links.rb +0 -183
- data/lib/cybersource_rest_client/models/tms_v1_instrument_identifiers_payment_instruments_get200_response__embedded__links_self.rb +0 -183
- data/lib/cybersource_rest_client/models/tms_v1_instrument_identifiers_payment_instruments_get200_response__embedded_bank_account.rb +0 -184
- data/lib/cybersource_rest_client/models/tms_v1_instrument_identifiers_payment_instruments_get200_response__embedded_bill_to.rb +0 -467
- data/lib/cybersource_rest_client/models/tms_v1_instrument_identifiers_payment_instruments_get200_response__embedded_buyer_information.rb +0 -278
- data/lib/cybersource_rest_client/models/tms_v1_instrument_identifiers_payment_instruments_get200_response__embedded_card.rb +0 -369
- data/lib/cybersource_rest_client/models/tms_v1_instrument_identifiers_payment_instruments_get200_response__links_first.rb +0 -184
- data/lib/cybersource_rest_client/models/tms_v1_instrument_identifiers_payment_instruments_get200_response__links_last.rb +0 -184
- data/lib/cybersource_rest_client/models/tms_v1_instrument_identifiers_payment_instruments_get200_response__links_next.rb +0 -184
- data/lib/cybersource_rest_client/models/tms_v1_instrument_identifiers_payment_instruments_get200_response__links_prev.rb +0 -184
- data/lib/cybersource_rest_client/models/tms_v1_instrument_identifiers_payment_instruments_get200_response__links_self.rb +0 -184
- data/lib/cybersource_rest_client/models/tms_v1_instrument_identifiers_payment_instruments_get200_response_bank_transfer_options.rb +0 -184
- data/lib/cybersource_rest_client/models/tms_v1_instrument_identifiers_payment_instruments_get200_response_merchant_information.rb +0 -183
- data/lib/cybersource_rest_client/models/tms_v1_instrument_identifiers_payment_instruments_get200_response_processing_information.rb +0 -195
- data/lib/cybersource_rest_client/models/tms_v1_instrument_identifiers_post200_response__links_payment_instruments.rb +0 -183
- data/lib/cybersource_rest_client/models/tms_v1_instrument_identifiers_post200_response__links_self.rb +0 -183
- data/lib/cybersource_rest_client/models/tms_v1_instrument_identifiers_post200_response_authorization_options_initiator.rb +0 -183
- data/lib/cybersource_rest_client/models/tms_v1_instrument_identifiers_post200_response_issuer.rb +0 -208
- data/lib/cybersource_rest_client/models/tms_v1_instrument_identifiers_post200_response_merchant_initiated_transaction.rb +0 -199
- data/lib/cybersource_rest_client/models/tms_v1_instrument_identifiers_post200_response_processing_information.rb +0 -183
- data/lib/cybersource_rest_client/models/tms_v1_instrument_identifiers_post200_response_tokenized_card_card.rb +0 -253
- data/lib/cybersource_rest_client/models/tmsv1instrumentidentifiers_card.rb +0 -310
- data/lib/cybersource_rest_client/models/tokenize_result.rb +0 -255
- data/lib/cybersource_rest_client/models/update_instrument_identifier_request.rb +0 -183
- data/lib/cybersource_rest_client/models/update_payment_instrument_request.rb +0 -246
|
@@ -1,129 +1,129 @@
|
|
|
1
|
-
=begin
|
|
2
|
-
#CyberSource Merged Spec
|
|
3
|
-
|
|
4
|
-
#All CyberSource API specs merged together. These are available at https://developer.cybersource.com/api/reference/api-reference.html
|
|
5
|
-
|
|
6
|
-
OpenAPI spec version: 0.0.1
|
|
7
|
-
|
|
8
|
-
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version: 2.2.3
|
|
10
|
-
|
|
11
|
-
=end
|
|
12
|
-
|
|
13
|
-
require 'uri'
|
|
14
|
-
|
|
15
|
-
module CyberSource
|
|
16
|
-
class PaymentBatchSummariesApi
|
|
17
|
-
attr_accessor :api_client
|
|
18
|
-
|
|
19
|
-
def initialize(api_client = ApiClient.default, config)
|
|
20
|
-
@api_client = api_client
|
|
21
|
-
@api_client.set_configuration(config)
|
|
22
|
-
end
|
|
23
|
-
# Get Payment Batch Summary Data
|
|
24
|
-
# Scope can be either account/merchant or reseller.
|
|
25
|
-
# @param start_time Valid report Start Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd'T'HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z)
|
|
26
|
-
# @param end_time Valid report End Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd'T'HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z)
|
|
27
|
-
# @param [Hash] opts the optional parameters
|
|
28
|
-
# @option opts [String] :organization_id Valid Cybersource Organization Id
|
|
29
|
-
# @option opts [String] :roll_up Conditional - RollUp for data for day/week/month. Required while getting breakdown data for a Merchant
|
|
30
|
-
# @option opts [String] :breakdown Conditional - Breakdown on account_rollup/all_merchant/selected_merchant. Required while getting breakdown data for a Merchant.
|
|
31
|
-
# @option opts [Integer] :start_day_of_week Optional - Start day of week to breakdown data for weeks in a month
|
|
32
|
-
# @return [ReportingV3PaymentBatchSummariesGet200Response]
|
|
33
|
-
def get_payment_batch_summary(start_time, end_time, opts = {})
|
|
34
|
-
data, status_code, headers = get_payment_batch_summary_with_http_info(start_time, end_time, opts)
|
|
35
|
-
return data, status_code, headers
|
|
36
|
-
end
|
|
37
|
-
|
|
38
|
-
# Get Payment Batch Summary Data
|
|
39
|
-
# Scope can be either account/merchant or reseller.
|
|
40
|
-
# @param start_time Valid report Start Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd'T'HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z)
|
|
41
|
-
# @param end_time Valid report End Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd'T'HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z)
|
|
42
|
-
# @param [Hash] opts the optional parameters
|
|
43
|
-
# @option opts [String] :organization_id Valid Cybersource Organization Id
|
|
44
|
-
# @option opts [String] :roll_up Conditional - RollUp for data for day/week/month. Required while getting breakdown data for a Merchant
|
|
45
|
-
# @option opts [String] :breakdown Conditional - Breakdown on account_rollup/all_merchant/selected_merchant. Required while getting breakdown data for a Merchant.
|
|
46
|
-
# @option opts [Integer] :start_day_of_week Optional - Start day of week to breakdown data for weeks in a month
|
|
47
|
-
# @return [Array<(ReportingV3PaymentBatchSummariesGet200Response, Fixnum, Hash)>] ReportingV3PaymentBatchSummariesGet200Response data, response status code and response headers
|
|
48
|
-
def get_payment_batch_summary_with_http_info(start_time, end_time, opts = {})
|
|
49
|
-
|
|
50
|
-
if @api_client.config.debugging
|
|
51
|
-
begin
|
|
52
|
-
raise
|
|
53
|
-
@api_client.config.logger.debug 'Calling API: PaymentBatchSummariesApi.get_payment_batch_summary ...'
|
|
54
|
-
rescue
|
|
55
|
-
puts 'Cannot write to log'
|
|
56
|
-
end
|
|
57
|
-
end
|
|
58
|
-
# verify the required parameter 'start_time' is set
|
|
59
|
-
if @api_client.config.client_side_validation && start_time.nil?
|
|
60
|
-
fail ArgumentError, "Missing the required parameter 'start_time' when calling PaymentBatchSummariesApi.get_payment_batch_summary"
|
|
61
|
-
end
|
|
62
|
-
# verify the required parameter 'end_time' is set
|
|
63
|
-
if @api_client.config.client_side_validation && end_time.nil?
|
|
64
|
-
fail ArgumentError, "Missing the required parameter 'end_time' when calling PaymentBatchSummariesApi.get_payment_batch_summary"
|
|
65
|
-
end
|
|
66
|
-
if @api_client.config.client_side_validation && !opts[:'organization_id'].nil? && opts[:'organization_id'].to_s.length > 32
|
|
67
|
-
fail ArgumentError, 'invalid value for "opts[:"organization_id"]" when calling PaymentBatchSummariesApi.get_payment_batch_summary, the character length must be smaller than or equal to 32.'
|
|
68
|
-
end
|
|
69
|
-
|
|
70
|
-
if @api_client.config.client_side_validation && !opts[:'organization_id'].nil? && opts[:'organization_id'].to_s.length < 1
|
|
71
|
-
fail ArgumentError, 'invalid value for "opts[:"organization_id"]" when calling PaymentBatchSummariesApi.get_payment_batch_summary, the character length must be great than or equal to 1.'
|
|
72
|
-
end
|
|
73
|
-
|
|
74
|
-
#if @api_client.config.client_side_validation && !opts[:'organization_id'].nil? && opts[:'organization_id'] !~ Regexp.new(/[a-zA-Z0-9-_]+/)
|
|
75
|
-
#fail ArgumentError, "invalid value for 'opts[:\"organization_id\"]' when calling PaymentBatchSummariesApi.get_payment_batch_summary, must conform to the pattern /[a-zA-Z0-9-_]+/."
|
|
76
|
-
#end
|
|
77
|
-
|
|
78
|
-
if @api_client.config.client_side_validation && !opts[:'start_day_of_week'].nil? && opts[:'start_day_of_week'] > 7
|
|
79
|
-
fail ArgumentError, 'invalid value for "opts[:"start_day_of_week"]" when calling PaymentBatchSummariesApi.get_payment_batch_summary, must be smaller than or equal to 7.'
|
|
80
|
-
end
|
|
81
|
-
|
|
82
|
-
if @api_client.config.client_side_validation && !opts[:'start_day_of_week'].nil? && opts[:'start_day_of_week'] < 1
|
|
83
|
-
fail ArgumentError, 'invalid value for "opts[:"start_day_of_week"]" when calling PaymentBatchSummariesApi.get_payment_batch_summary, must be greater than or equal to 1.'
|
|
84
|
-
end
|
|
85
|
-
|
|
86
|
-
# resource path
|
|
87
|
-
local_var_path = 'reporting/v3/payment-batch-summaries'
|
|
88
|
-
|
|
89
|
-
# query parameters
|
|
90
|
-
query_params = {}
|
|
91
|
-
query_params[:'startTime'] = start_time
|
|
92
|
-
query_params[:'endTime'] = end_time
|
|
93
|
-
query_params[:'organizationId'] = opts[:'organization_id'] if !opts[:'organization_id'].nil?
|
|
94
|
-
query_params[:'rollUp'] = opts[:'roll_up'] if !opts[:'roll_up'].nil?
|
|
95
|
-
query_params[:'breakdown'] = opts[:'breakdown'] if !opts[:'breakdown'].nil?
|
|
96
|
-
query_params[:'startDayOfWeek'] = opts[:'start_day_of_week'] if !opts[:'start_day_of_week'].nil?
|
|
97
|
-
|
|
98
|
-
# header parameters
|
|
99
|
-
header_params = {}
|
|
100
|
-
# HTTP header 'Accept' (if needed)
|
|
101
|
-
header_params['Accept'] = @api_client.select_header_accept(['application/hal+json'])
|
|
102
|
-
# HTTP header 'Content-Type'
|
|
103
|
-
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json;charset=utf-8'])
|
|
104
|
-
|
|
105
|
-
# form parameters
|
|
106
|
-
form_params = {}
|
|
107
|
-
|
|
108
|
-
# http body (model)
|
|
109
|
-
post_body = nil
|
|
110
|
-
auth_names = []
|
|
111
|
-
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
|
112
|
-
:header_params => header_params,
|
|
113
|
-
:query_params => query_params,
|
|
114
|
-
:form_params => form_params,
|
|
115
|
-
:body => post_body,
|
|
116
|
-
:auth_names => auth_names,
|
|
117
|
-
:return_type => 'ReportingV3PaymentBatchSummariesGet200Response')
|
|
118
|
-
if @api_client.config.debugging
|
|
119
|
-
begin
|
|
120
|
-
raise
|
|
121
|
-
@api_client.config.logger.debug "API called: PaymentBatchSummariesApi#get_payment_batch_summary\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
122
|
-
rescue
|
|
123
|
-
puts 'Cannot write to log'
|
|
124
|
-
end
|
|
125
|
-
end
|
|
126
|
-
return data, status_code, headers
|
|
127
|
-
end
|
|
128
|
-
end
|
|
129
|
-
end
|
|
1
|
+
=begin
|
|
2
|
+
#CyberSource Merged Spec
|
|
3
|
+
|
|
4
|
+
#All CyberSource API specs merged together. These are available at https://developer.cybersource.com/api/reference/api-reference.html
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: 0.0.1
|
|
7
|
+
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.2.3
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'uri'
|
|
14
|
+
|
|
15
|
+
module CyberSource
|
|
16
|
+
class PaymentBatchSummariesApi
|
|
17
|
+
attr_accessor :api_client
|
|
18
|
+
|
|
19
|
+
def initialize(api_client = ApiClient.default, config)
|
|
20
|
+
@api_client = api_client
|
|
21
|
+
@api_client.set_configuration(config)
|
|
22
|
+
end
|
|
23
|
+
# Get Payment Batch Summary Data
|
|
24
|
+
# Scope can be either account/merchant or reseller.
|
|
25
|
+
# @param start_time Valid report Start Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd'T'HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z)
|
|
26
|
+
# @param end_time Valid report End Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd'T'HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z)
|
|
27
|
+
# @param [Hash] opts the optional parameters
|
|
28
|
+
# @option opts [String] :organization_id Valid Cybersource Organization Id
|
|
29
|
+
# @option opts [String] :roll_up Conditional - RollUp for data for day/week/month. Required while getting breakdown data for a Merchant
|
|
30
|
+
# @option opts [String] :breakdown Conditional - Breakdown on account_rollup/all_merchant/selected_merchant. Required while getting breakdown data for a Merchant.
|
|
31
|
+
# @option opts [Integer] :start_day_of_week Optional - Start day of week to breakdown data for weeks in a month
|
|
32
|
+
# @return [ReportingV3PaymentBatchSummariesGet200Response]
|
|
33
|
+
def get_payment_batch_summary(start_time, end_time, opts = {})
|
|
34
|
+
data, status_code, headers = get_payment_batch_summary_with_http_info(start_time, end_time, opts)
|
|
35
|
+
return data, status_code, headers
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
# Get Payment Batch Summary Data
|
|
39
|
+
# Scope can be either account/merchant or reseller.
|
|
40
|
+
# @param start_time Valid report Start Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd'T'HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z)
|
|
41
|
+
# @param end_time Valid report End Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd'T'HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z)
|
|
42
|
+
# @param [Hash] opts the optional parameters
|
|
43
|
+
# @option opts [String] :organization_id Valid Cybersource Organization Id
|
|
44
|
+
# @option opts [String] :roll_up Conditional - RollUp for data for day/week/month. Required while getting breakdown data for a Merchant
|
|
45
|
+
# @option opts [String] :breakdown Conditional - Breakdown on account_rollup/all_merchant/selected_merchant. Required while getting breakdown data for a Merchant.
|
|
46
|
+
# @option opts [Integer] :start_day_of_week Optional - Start day of week to breakdown data for weeks in a month
|
|
47
|
+
# @return [Array<(ReportingV3PaymentBatchSummariesGet200Response, Fixnum, Hash)>] ReportingV3PaymentBatchSummariesGet200Response data, response status code and response headers
|
|
48
|
+
def get_payment_batch_summary_with_http_info(start_time, end_time, opts = {})
|
|
49
|
+
|
|
50
|
+
if @api_client.config.debugging
|
|
51
|
+
begin
|
|
52
|
+
raise
|
|
53
|
+
@api_client.config.logger.debug 'Calling API: PaymentBatchSummariesApi.get_payment_batch_summary ...'
|
|
54
|
+
rescue
|
|
55
|
+
puts 'Cannot write to log'
|
|
56
|
+
end
|
|
57
|
+
end
|
|
58
|
+
# verify the required parameter 'start_time' is set
|
|
59
|
+
if @api_client.config.client_side_validation && start_time.nil?
|
|
60
|
+
fail ArgumentError, "Missing the required parameter 'start_time' when calling PaymentBatchSummariesApi.get_payment_batch_summary"
|
|
61
|
+
end
|
|
62
|
+
# verify the required parameter 'end_time' is set
|
|
63
|
+
if @api_client.config.client_side_validation && end_time.nil?
|
|
64
|
+
fail ArgumentError, "Missing the required parameter 'end_time' when calling PaymentBatchSummariesApi.get_payment_batch_summary"
|
|
65
|
+
end
|
|
66
|
+
if @api_client.config.client_side_validation && !opts[:'organization_id'].nil? && opts[:'organization_id'].to_s.length > 32
|
|
67
|
+
fail ArgumentError, 'invalid value for "opts[:"organization_id"]" when calling PaymentBatchSummariesApi.get_payment_batch_summary, the character length must be smaller than or equal to 32.'
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
if @api_client.config.client_side_validation && !opts[:'organization_id'].nil? && opts[:'organization_id'].to_s.length < 1
|
|
71
|
+
fail ArgumentError, 'invalid value for "opts[:"organization_id"]" when calling PaymentBatchSummariesApi.get_payment_batch_summary, the character length must be great than or equal to 1.'
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
#if @api_client.config.client_side_validation && !opts[:'organization_id'].nil? && opts[:'organization_id'] !~ Regexp.new(/[a-zA-Z0-9-_]+/)
|
|
75
|
+
#fail ArgumentError, "invalid value for 'opts[:\"organization_id\"]' when calling PaymentBatchSummariesApi.get_payment_batch_summary, must conform to the pattern /[a-zA-Z0-9-_]+/."
|
|
76
|
+
#end
|
|
77
|
+
|
|
78
|
+
if @api_client.config.client_side_validation && !opts[:'start_day_of_week'].nil? && opts[:'start_day_of_week'] > 7
|
|
79
|
+
fail ArgumentError, 'invalid value for "opts[:"start_day_of_week"]" when calling PaymentBatchSummariesApi.get_payment_batch_summary, must be smaller than or equal to 7.'
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
if @api_client.config.client_side_validation && !opts[:'start_day_of_week'].nil? && opts[:'start_day_of_week'] < 1
|
|
83
|
+
fail ArgumentError, 'invalid value for "opts[:"start_day_of_week"]" when calling PaymentBatchSummariesApi.get_payment_batch_summary, must be greater than or equal to 1.'
|
|
84
|
+
end
|
|
85
|
+
|
|
86
|
+
# resource path
|
|
87
|
+
local_var_path = 'reporting/v3/payment-batch-summaries'
|
|
88
|
+
|
|
89
|
+
# query parameters
|
|
90
|
+
query_params = {}
|
|
91
|
+
query_params[:'startTime'] = start_time
|
|
92
|
+
query_params[:'endTime'] = end_time
|
|
93
|
+
query_params[:'organizationId'] = opts[:'organization_id'] if !opts[:'organization_id'].nil?
|
|
94
|
+
query_params[:'rollUp'] = opts[:'roll_up'] if !opts[:'roll_up'].nil?
|
|
95
|
+
query_params[:'breakdown'] = opts[:'breakdown'] if !opts[:'breakdown'].nil?
|
|
96
|
+
query_params[:'startDayOfWeek'] = opts[:'start_day_of_week'] if !opts[:'start_day_of_week'].nil?
|
|
97
|
+
|
|
98
|
+
# header parameters
|
|
99
|
+
header_params = {}
|
|
100
|
+
# HTTP header 'Accept' (if needed)
|
|
101
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/hal+json', 'text/csv', 'application/xml'])
|
|
102
|
+
# HTTP header 'Content-Type'
|
|
103
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json;charset=utf-8'])
|
|
104
|
+
|
|
105
|
+
# form parameters
|
|
106
|
+
form_params = {}
|
|
107
|
+
|
|
108
|
+
# http body (model)
|
|
109
|
+
post_body = nil
|
|
110
|
+
auth_names = []
|
|
111
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
|
112
|
+
:header_params => header_params,
|
|
113
|
+
:query_params => query_params,
|
|
114
|
+
:form_params => form_params,
|
|
115
|
+
:body => post_body,
|
|
116
|
+
:auth_names => auth_names,
|
|
117
|
+
:return_type => 'ReportingV3PaymentBatchSummariesGet200Response')
|
|
118
|
+
if @api_client.config.debugging
|
|
119
|
+
begin
|
|
120
|
+
raise
|
|
121
|
+
@api_client.config.logger.debug "API called: PaymentBatchSummariesApi#get_payment_batch_summary\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
122
|
+
rescue
|
|
123
|
+
puts 'Cannot write to log'
|
|
124
|
+
end
|
|
125
|
+
end
|
|
126
|
+
return data, status_code, headers
|
|
127
|
+
end
|
|
128
|
+
end
|
|
129
|
+
end
|
|
@@ -20,49 +20,53 @@ module CyberSource
|
|
|
20
20
|
@api_client = api_client
|
|
21
21
|
@api_client.set_configuration(config)
|
|
22
22
|
end
|
|
23
|
-
#
|
|
24
|
-
# @param
|
|
25
|
-
# @param create_payment_instrument_request Specify the customer's payment details for card or bank account.
|
|
23
|
+
# Delete a Payment Instrument
|
|
24
|
+
# @param payment_instrument_token_id The TokenId of a payment instrument.
|
|
26
25
|
# @param [Hash] opts the optional parameters
|
|
27
|
-
# @
|
|
28
|
-
|
|
29
|
-
|
|
26
|
+
# @option opts [String] :profile_id The id of a profile containing user specific TMS configuration.
|
|
27
|
+
# @return [nil]
|
|
28
|
+
def delete_payment_instrument(payment_instrument_token_id, opts = {})
|
|
29
|
+
data, status_code, headers = delete_payment_instrument_with_http_info(payment_instrument_token_id, opts)
|
|
30
30
|
return data, status_code, headers
|
|
31
31
|
end
|
|
32
32
|
|
|
33
|
-
#
|
|
34
|
-
# @param
|
|
35
|
-
# @param create_payment_instrument_request Specify the customer's payment details for card or bank account.
|
|
33
|
+
# Delete a Payment Instrument
|
|
34
|
+
# @param payment_instrument_token_id The TokenId of a payment instrument.
|
|
36
35
|
# @param [Hash] opts the optional parameters
|
|
37
|
-
# @
|
|
38
|
-
|
|
36
|
+
# @option opts [String] :profile_id The id of a profile containing user specific TMS configuration.
|
|
37
|
+
# @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
|
|
38
|
+
def delete_payment_instrument_with_http_info(payment_instrument_token_id, opts = {})
|
|
39
39
|
|
|
40
40
|
if @api_client.config.debugging
|
|
41
41
|
begin
|
|
42
42
|
raise
|
|
43
|
-
@api_client.config.logger.debug 'Calling API: PaymentInstrumentApi.
|
|
43
|
+
@api_client.config.logger.debug 'Calling API: PaymentInstrumentApi.delete_payment_instrument ...'
|
|
44
44
|
rescue
|
|
45
45
|
puts 'Cannot write to log'
|
|
46
46
|
end
|
|
47
47
|
end
|
|
48
|
-
# verify the required parameter '
|
|
49
|
-
if @api_client.config.client_side_validation &&
|
|
50
|
-
fail ArgumentError, "Missing the required parameter '
|
|
48
|
+
# verify the required parameter 'payment_instrument_token_id' is set
|
|
49
|
+
if @api_client.config.client_side_validation && payment_instrument_token_id.nil?
|
|
50
|
+
fail ArgumentError, "Missing the required parameter 'payment_instrument_token_id' when calling PaymentInstrumentApi.delete_payment_instrument"
|
|
51
51
|
end
|
|
52
|
-
if @api_client.config.client_side_validation &&
|
|
53
|
-
fail ArgumentError, 'invalid value for "
|
|
52
|
+
if @api_client.config.client_side_validation && payment_instrument_token_id.to_s.length > 32
|
|
53
|
+
fail ArgumentError, 'invalid value for "payment_instrument_token_id" when calling PaymentInstrumentApi.delete_payment_instrument, the character length must be smaller than or equal to 32.'
|
|
54
54
|
end
|
|
55
55
|
|
|
56
|
-
if @api_client.config.client_side_validation &&
|
|
57
|
-
fail ArgumentError, 'invalid value for "
|
|
56
|
+
if @api_client.config.client_side_validation && payment_instrument_token_id.to_s.length < 1
|
|
57
|
+
fail ArgumentError, 'invalid value for "payment_instrument_token_id" when calling PaymentInstrumentApi.delete_payment_instrument, the character length must be great than or equal to 1.'
|
|
58
58
|
end
|
|
59
59
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
fail ArgumentError, "Missing the required parameter 'create_payment_instrument_request' when calling PaymentInstrumentApi.create_payment_instrument"
|
|
60
|
+
if @api_client.config.client_side_validation && !opts[:'profile_id'].nil? && opts[:'profile_id'].to_s.length > 36
|
|
61
|
+
fail ArgumentError, 'invalid value for "opts[:"profile_id"]" when calling PaymentInstrumentApi.delete_payment_instrument, the character length must be smaller than or equal to 36.'
|
|
63
62
|
end
|
|
63
|
+
|
|
64
|
+
if @api_client.config.client_side_validation && !opts[:'profile_id'].nil? && opts[:'profile_id'].to_s.length < 36
|
|
65
|
+
fail ArgumentError, 'invalid value for "opts[:"profile_id"]" when calling PaymentInstrumentApi.delete_payment_instrument, the character length must be great than or equal to 36.'
|
|
66
|
+
end
|
|
67
|
+
|
|
64
68
|
# resource path
|
|
65
|
-
local_var_path = 'tms/v1/paymentinstruments'
|
|
69
|
+
local_var_path = 'tms/v1/paymentinstruments/{paymentInstrumentTokenId}'.sub('{' + 'paymentInstrumentTokenId' + '}', payment_instrument_token_id.to_s)
|
|
66
70
|
|
|
67
71
|
# query parameters
|
|
68
72
|
query_params = {}
|
|
@@ -73,82 +77,77 @@ module CyberSource
|
|
|
73
77
|
header_params['Accept'] = @api_client.select_header_accept(['application/json;charset=utf-8'])
|
|
74
78
|
# HTTP header 'Content-Type'
|
|
75
79
|
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json;charset=utf-8'])
|
|
76
|
-
header_params[:'profile-id'] = profile_id
|
|
80
|
+
header_params[:'profile-id'] = opts[:'profile_id'] if !opts[:'profile_id'].nil?
|
|
77
81
|
|
|
78
82
|
# form parameters
|
|
79
83
|
form_params = {}
|
|
80
84
|
|
|
81
85
|
# http body (model)
|
|
82
|
-
post_body =
|
|
86
|
+
post_body = nil
|
|
83
87
|
auth_names = []
|
|
84
|
-
data, status_code, headers = @api_client.call_api(:
|
|
88
|
+
data, status_code, headers = @api_client.call_api(:DELETE, local_var_path,
|
|
85
89
|
:header_params => header_params,
|
|
86
90
|
:query_params => query_params,
|
|
87
91
|
:form_params => form_params,
|
|
88
92
|
:body => post_body,
|
|
89
|
-
:auth_names => auth_names
|
|
90
|
-
:return_type => 'TmsV1InstrumentIdentifiersPaymentInstrumentsGet200ResponseEmbeddedPaymentInstruments')
|
|
93
|
+
:auth_names => auth_names)
|
|
91
94
|
if @api_client.config.debugging
|
|
92
95
|
begin
|
|
93
96
|
raise
|
|
94
|
-
@api_client.config.logger.debug "API called: PaymentInstrumentApi#
|
|
97
|
+
@api_client.config.logger.debug "API called: PaymentInstrumentApi#delete_payment_instrument\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
95
98
|
rescue
|
|
96
99
|
puts 'Cannot write to log'
|
|
97
100
|
end
|
|
98
101
|
end
|
|
99
102
|
return data, status_code, headers
|
|
100
103
|
end
|
|
101
|
-
#
|
|
102
|
-
# @param
|
|
103
|
-
# @param token_id The TokenId of a Payment Instrument.
|
|
104
|
+
# Retrieve a Payment Instrument
|
|
105
|
+
# @param payment_instrument_token_id The TokenId of a payment instrument.
|
|
104
106
|
# @param [Hash] opts the optional parameters
|
|
105
|
-
# @
|
|
106
|
-
|
|
107
|
-
|
|
107
|
+
# @option opts [String] :profile_id The id of a profile containing user specific TMS configuration.
|
|
108
|
+
# @return [Tmsv2customersEmbeddedDefaultPaymentInstrument]
|
|
109
|
+
def get_payment_instrument(payment_instrument_token_id, opts = {})
|
|
110
|
+
data, status_code, headers = get_payment_instrument_with_http_info(payment_instrument_token_id, opts)
|
|
108
111
|
return data, status_code, headers
|
|
109
112
|
end
|
|
110
113
|
|
|
111
|
-
#
|
|
112
|
-
# @param
|
|
113
|
-
# @param token_id The TokenId of a Payment Instrument.
|
|
114
|
+
# Retrieve a Payment Instrument
|
|
115
|
+
# @param payment_instrument_token_id The TokenId of a payment instrument.
|
|
114
116
|
# @param [Hash] opts the optional parameters
|
|
115
|
-
# @
|
|
116
|
-
|
|
117
|
+
# @option opts [String] :profile_id The id of a profile containing user specific TMS configuration.
|
|
118
|
+
# @return [Array<(Tmsv2customersEmbeddedDefaultPaymentInstrument, Fixnum, Hash)>] Tmsv2customersEmbeddedDefaultPaymentInstrument data, response status code and response headers
|
|
119
|
+
def get_payment_instrument_with_http_info(payment_instrument_token_id, opts = {})
|
|
117
120
|
|
|
118
121
|
if @api_client.config.debugging
|
|
119
122
|
begin
|
|
120
123
|
raise
|
|
121
|
-
@api_client.config.logger.debug 'Calling API: PaymentInstrumentApi.
|
|
124
|
+
@api_client.config.logger.debug 'Calling API: PaymentInstrumentApi.get_payment_instrument ...'
|
|
122
125
|
rescue
|
|
123
126
|
puts 'Cannot write to log'
|
|
124
127
|
end
|
|
125
128
|
end
|
|
126
|
-
# verify the required parameter '
|
|
127
|
-
if @api_client.config.client_side_validation &&
|
|
128
|
-
fail ArgumentError, "Missing the required parameter '
|
|
129
|
+
# verify the required parameter 'payment_instrument_token_id' is set
|
|
130
|
+
if @api_client.config.client_side_validation && payment_instrument_token_id.nil?
|
|
131
|
+
fail ArgumentError, "Missing the required parameter 'payment_instrument_token_id' when calling PaymentInstrumentApi.get_payment_instrument"
|
|
129
132
|
end
|
|
130
|
-
if @api_client.config.client_side_validation &&
|
|
131
|
-
fail ArgumentError, 'invalid value for "
|
|
133
|
+
if @api_client.config.client_side_validation && payment_instrument_token_id.to_s.length > 32
|
|
134
|
+
fail ArgumentError, 'invalid value for "payment_instrument_token_id" when calling PaymentInstrumentApi.get_payment_instrument, the character length must be smaller than or equal to 32.'
|
|
132
135
|
end
|
|
133
136
|
|
|
134
|
-
if @api_client.config.client_side_validation &&
|
|
135
|
-
fail ArgumentError, 'invalid value for "
|
|
137
|
+
if @api_client.config.client_side_validation && payment_instrument_token_id.to_s.length < 1
|
|
138
|
+
fail ArgumentError, 'invalid value for "payment_instrument_token_id" when calling PaymentInstrumentApi.get_payment_instrument, the character length must be great than or equal to 1.'
|
|
136
139
|
end
|
|
137
140
|
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
fail ArgumentError, "Missing the required parameter 'token_id' when calling PaymentInstrumentApi.delete_payment_instrument"
|
|
141
|
-
end
|
|
142
|
-
if @api_client.config.client_side_validation && token_id.to_s.length > 32
|
|
143
|
-
fail ArgumentError, 'invalid value for "token_id" when calling PaymentInstrumentApi.delete_payment_instrument, the character length must be smaller than or equal to 32.'
|
|
141
|
+
if @api_client.config.client_side_validation && !opts[:'profile_id'].nil? && opts[:'profile_id'].to_s.length > 36
|
|
142
|
+
fail ArgumentError, 'invalid value for "opts[:"profile_id"]" when calling PaymentInstrumentApi.get_payment_instrument, the character length must be smaller than or equal to 36.'
|
|
144
143
|
end
|
|
145
144
|
|
|
146
|
-
if @api_client.config.client_side_validation &&
|
|
147
|
-
fail ArgumentError, 'invalid value for "
|
|
145
|
+
if @api_client.config.client_side_validation && !opts[:'profile_id'].nil? && opts[:'profile_id'].to_s.length < 36
|
|
146
|
+
fail ArgumentError, 'invalid value for "opts[:"profile_id"]" when calling PaymentInstrumentApi.get_payment_instrument, the character length must be great than or equal to 36.'
|
|
148
147
|
end
|
|
149
148
|
|
|
150
149
|
# resource path
|
|
151
|
-
local_var_path = 'tms/v1/paymentinstruments/{
|
|
150
|
+
local_var_path = 'tms/v1/paymentinstruments/{paymentInstrumentTokenId}'.sub('{' + 'paymentInstrumentTokenId' + '}', payment_instrument_token_id.to_s)
|
|
152
151
|
|
|
153
152
|
# query parameters
|
|
154
153
|
query_params = {}
|
|
@@ -159,7 +158,7 @@ module CyberSource
|
|
|
159
158
|
header_params['Accept'] = @api_client.select_header_accept(['application/json;charset=utf-8'])
|
|
160
159
|
# HTTP header 'Content-Type'
|
|
161
160
|
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json;charset=utf-8'])
|
|
162
|
-
header_params[:'profile-id'] = profile_id
|
|
161
|
+
header_params[:'profile-id'] = opts[:'profile_id'] if !opts[:'profile_id'].nil?
|
|
163
162
|
|
|
164
163
|
# form parameters
|
|
165
164
|
form_params = {}
|
|
@@ -167,73 +166,86 @@ module CyberSource
|
|
|
167
166
|
# http body (model)
|
|
168
167
|
post_body = nil
|
|
169
168
|
auth_names = []
|
|
170
|
-
data, status_code, headers = @api_client.call_api(:
|
|
169
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
|
171
170
|
:header_params => header_params,
|
|
172
171
|
:query_params => query_params,
|
|
173
172
|
:form_params => form_params,
|
|
174
173
|
:body => post_body,
|
|
175
|
-
:auth_names => auth_names
|
|
174
|
+
:auth_names => auth_names,
|
|
175
|
+
:return_type => 'Tmsv2customersEmbeddedDefaultPaymentInstrument')
|
|
176
176
|
if @api_client.config.debugging
|
|
177
177
|
begin
|
|
178
178
|
raise
|
|
179
|
-
@api_client.config.logger.debug "API called: PaymentInstrumentApi#
|
|
179
|
+
@api_client.config.logger.debug "API called: PaymentInstrumentApi#get_payment_instrument\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
180
180
|
rescue
|
|
181
181
|
puts 'Cannot write to log'
|
|
182
182
|
end
|
|
183
183
|
end
|
|
184
184
|
return data, status_code, headers
|
|
185
185
|
end
|
|
186
|
-
#
|
|
187
|
-
# @param
|
|
188
|
-
# @param
|
|
186
|
+
# Update a Payment Instrument
|
|
187
|
+
# @param payment_instrument_token_id The TokenId of a payment instrument.
|
|
188
|
+
# @param patch_payment_instrument_request
|
|
189
189
|
# @param [Hash] opts the optional parameters
|
|
190
|
-
# @
|
|
191
|
-
|
|
192
|
-
|
|
190
|
+
# @option opts [String] :profile_id The id of a profile containing user specific TMS configuration.
|
|
191
|
+
# @option opts [String] :if_match Contains an ETag value from a GET request to make the request conditional.
|
|
192
|
+
# @return [Tmsv2customersEmbeddedDefaultPaymentInstrument]
|
|
193
|
+
def patch_payment_instrument(payment_instrument_token_id, patch_payment_instrument_request, opts = {})
|
|
194
|
+
data, status_code, headers = patch_payment_instrument_with_http_info(payment_instrument_token_id, patch_payment_instrument_request, opts)
|
|
193
195
|
return data, status_code, headers
|
|
194
196
|
end
|
|
195
197
|
|
|
196
|
-
#
|
|
197
|
-
# @param
|
|
198
|
-
# @param
|
|
198
|
+
# Update a Payment Instrument
|
|
199
|
+
# @param payment_instrument_token_id The TokenId of a payment instrument.
|
|
200
|
+
# @param patch_payment_instrument_request
|
|
199
201
|
# @param [Hash] opts the optional parameters
|
|
200
|
-
# @
|
|
201
|
-
|
|
202
|
+
# @option opts [String] :profile_id The id of a profile containing user specific TMS configuration.
|
|
203
|
+
# @option opts [String] :if_match Contains an ETag value from a GET request to make the request conditional.
|
|
204
|
+
# @return [Array<(Tmsv2customersEmbeddedDefaultPaymentInstrument, Fixnum, Hash)>] Tmsv2customersEmbeddedDefaultPaymentInstrument data, response status code and response headers
|
|
205
|
+
def patch_payment_instrument_with_http_info(payment_instrument_token_id, patch_payment_instrument_request, opts = {})
|
|
202
206
|
|
|
203
207
|
if @api_client.config.debugging
|
|
204
208
|
begin
|
|
205
209
|
raise
|
|
206
|
-
@api_client.config.logger.debug 'Calling API: PaymentInstrumentApi.
|
|
210
|
+
@api_client.config.logger.debug 'Calling API: PaymentInstrumentApi.patch_payment_instrument ...'
|
|
207
211
|
rescue
|
|
208
212
|
puts 'Cannot write to log'
|
|
209
213
|
end
|
|
210
214
|
end
|
|
211
|
-
# verify the required parameter '
|
|
212
|
-
if @api_client.config.client_side_validation &&
|
|
213
|
-
fail ArgumentError, "Missing the required parameter '
|
|
215
|
+
# verify the required parameter 'payment_instrument_token_id' is set
|
|
216
|
+
if @api_client.config.client_side_validation && payment_instrument_token_id.nil?
|
|
217
|
+
fail ArgumentError, "Missing the required parameter 'payment_instrument_token_id' when calling PaymentInstrumentApi.patch_payment_instrument"
|
|
214
218
|
end
|
|
215
|
-
if @api_client.config.client_side_validation &&
|
|
216
|
-
fail ArgumentError, 'invalid value for "
|
|
219
|
+
if @api_client.config.client_side_validation && payment_instrument_token_id.to_s.length > 32
|
|
220
|
+
fail ArgumentError, 'invalid value for "payment_instrument_token_id" when calling PaymentInstrumentApi.patch_payment_instrument, the character length must be smaller than or equal to 32.'
|
|
217
221
|
end
|
|
218
222
|
|
|
219
|
-
if @api_client.config.client_side_validation &&
|
|
220
|
-
fail ArgumentError, 'invalid value for "
|
|
223
|
+
if @api_client.config.client_side_validation && payment_instrument_token_id.to_s.length < 1
|
|
224
|
+
fail ArgumentError, 'invalid value for "payment_instrument_token_id" when calling PaymentInstrumentApi.patch_payment_instrument, the character length must be great than or equal to 1.'
|
|
221
225
|
end
|
|
222
226
|
|
|
223
|
-
# verify the required parameter '
|
|
224
|
-
if @api_client.config.client_side_validation &&
|
|
225
|
-
fail ArgumentError, "Missing the required parameter '
|
|
227
|
+
# verify the required parameter 'patch_payment_instrument_request' is set
|
|
228
|
+
if @api_client.config.client_side_validation && patch_payment_instrument_request.nil?
|
|
229
|
+
fail ArgumentError, "Missing the required parameter 'patch_payment_instrument_request' when calling PaymentInstrumentApi.patch_payment_instrument"
|
|
226
230
|
end
|
|
227
|
-
if @api_client.config.client_side_validation &&
|
|
228
|
-
fail ArgumentError, 'invalid value for "
|
|
231
|
+
if @api_client.config.client_side_validation && !opts[:'profile_id'].nil? && opts[:'profile_id'].to_s.length > 36
|
|
232
|
+
fail ArgumentError, 'invalid value for "opts[:"profile_id"]" when calling PaymentInstrumentApi.patch_payment_instrument, the character length must be smaller than or equal to 36.'
|
|
229
233
|
end
|
|
230
234
|
|
|
231
|
-
if @api_client.config.client_side_validation &&
|
|
232
|
-
fail ArgumentError, 'invalid value for "
|
|
235
|
+
if @api_client.config.client_side_validation && !opts[:'profile_id'].nil? && opts[:'profile_id'].to_s.length < 36
|
|
236
|
+
fail ArgumentError, 'invalid value for "opts[:"profile_id"]" when calling PaymentInstrumentApi.patch_payment_instrument, the character length must be great than or equal to 36.'
|
|
237
|
+
end
|
|
238
|
+
|
|
239
|
+
if @api_client.config.client_side_validation && !opts[:'if_match'].nil? && opts[:'if_match'].to_s.length > 32
|
|
240
|
+
fail ArgumentError, 'invalid value for "opts[:"if_match"]" when calling PaymentInstrumentApi.patch_payment_instrument, the character length must be smaller than or equal to 32.'
|
|
241
|
+
end
|
|
242
|
+
|
|
243
|
+
if @api_client.config.client_side_validation && !opts[:'if_match'].nil? && opts[:'if_match'].to_s.length < 1
|
|
244
|
+
fail ArgumentError, 'invalid value for "opts[:"if_match"]" when calling PaymentInstrumentApi.patch_payment_instrument, the character length must be great than or equal to 1.'
|
|
233
245
|
end
|
|
234
246
|
|
|
235
247
|
# resource path
|
|
236
|
-
local_var_path = 'tms/v1/paymentinstruments/{
|
|
248
|
+
local_var_path = 'tms/v1/paymentinstruments/{paymentInstrumentTokenId}'.sub('{' + 'paymentInstrumentTokenId' + '}', payment_instrument_token_id.to_s)
|
|
237
249
|
|
|
238
250
|
# query parameters
|
|
239
251
|
query_params = {}
|
|
@@ -244,88 +256,73 @@ module CyberSource
|
|
|
244
256
|
header_params['Accept'] = @api_client.select_header_accept(['application/json;charset=utf-8'])
|
|
245
257
|
# HTTP header 'Content-Type'
|
|
246
258
|
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json;charset=utf-8'])
|
|
247
|
-
header_params[:'profile-id'] = profile_id
|
|
259
|
+
header_params[:'profile-id'] = opts[:'profile_id'] if !opts[:'profile_id'].nil?
|
|
260
|
+
header_params[:'if-match'] = opts[:'if_match'] if !opts[:'if_match'].nil?
|
|
248
261
|
|
|
249
262
|
# form parameters
|
|
250
263
|
form_params = {}
|
|
251
264
|
|
|
252
265
|
# http body (model)
|
|
253
|
-
post_body =
|
|
266
|
+
post_body = @api_client.object_to_http_body(patch_payment_instrument_request)
|
|
254
267
|
auth_names = []
|
|
255
|
-
data, status_code, headers = @api_client.call_api(:
|
|
268
|
+
data, status_code, headers = @api_client.call_api(:PATCH, local_var_path,
|
|
256
269
|
:header_params => header_params,
|
|
257
270
|
:query_params => query_params,
|
|
258
271
|
:form_params => form_params,
|
|
259
272
|
:body => post_body,
|
|
260
273
|
:auth_names => auth_names,
|
|
261
|
-
:return_type => '
|
|
274
|
+
:return_type => 'Tmsv2customersEmbeddedDefaultPaymentInstrument')
|
|
262
275
|
if @api_client.config.debugging
|
|
263
276
|
begin
|
|
264
277
|
raise
|
|
265
|
-
@api_client.config.logger.debug "API called: PaymentInstrumentApi#
|
|
278
|
+
@api_client.config.logger.debug "API called: PaymentInstrumentApi#patch_payment_instrument\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
266
279
|
rescue
|
|
267
280
|
puts 'Cannot write to log'
|
|
268
281
|
end
|
|
269
282
|
end
|
|
270
283
|
return data, status_code, headers
|
|
271
284
|
end
|
|
272
|
-
#
|
|
273
|
-
#
|
|
274
|
-
# @param
|
|
275
|
-
# @param update_payment_instrument_request Specify the customer's payment details.
|
|
285
|
+
# Create a Payment Instrument
|
|
286
|
+
# Include an existing TMS Instrument Identifier id in the request body. * An Instrument Identifier token can be created by calling: **POST */tms/v1/instrumentidentifiers***
|
|
287
|
+
# @param post_payment_instrument_request
|
|
276
288
|
# @param [Hash] opts the optional parameters
|
|
277
|
-
# @
|
|
278
|
-
|
|
279
|
-
|
|
289
|
+
# @option opts [String] :profile_id The id of a profile containing user specific TMS configuration.
|
|
290
|
+
# @return [Tmsv2customersEmbeddedDefaultPaymentInstrument]
|
|
291
|
+
def post_payment_instrument(post_payment_instrument_request, opts = {})
|
|
292
|
+
data, status_code, headers = post_payment_instrument_with_http_info(post_payment_instrument_request, opts)
|
|
280
293
|
return data, status_code, headers
|
|
281
294
|
end
|
|
282
295
|
|
|
283
|
-
#
|
|
284
|
-
#
|
|
285
|
-
# @param
|
|
286
|
-
# @param update_payment_instrument_request Specify the customer's payment details.
|
|
296
|
+
# Create a Payment Instrument
|
|
297
|
+
# Include an existing TMS Instrument Identifier id in the request body. * An Instrument Identifier token can be created by calling: **POST */tms/v1/instrumentidentifiers***
|
|
298
|
+
# @param post_payment_instrument_request
|
|
287
299
|
# @param [Hash] opts the optional parameters
|
|
288
|
-
# @
|
|
289
|
-
|
|
300
|
+
# @option opts [String] :profile_id The id of a profile containing user specific TMS configuration.
|
|
301
|
+
# @return [Array<(Tmsv2customersEmbeddedDefaultPaymentInstrument, Fixnum, Hash)>] Tmsv2customersEmbeddedDefaultPaymentInstrument data, response status code and response headers
|
|
302
|
+
def post_payment_instrument_with_http_info(post_payment_instrument_request, opts = {})
|
|
290
303
|
|
|
291
304
|
if @api_client.config.debugging
|
|
292
305
|
begin
|
|
293
306
|
raise
|
|
294
|
-
@api_client.config.logger.debug 'Calling API: PaymentInstrumentApi.
|
|
307
|
+
@api_client.config.logger.debug 'Calling API: PaymentInstrumentApi.post_payment_instrument ...'
|
|
295
308
|
rescue
|
|
296
309
|
puts 'Cannot write to log'
|
|
297
310
|
end
|
|
298
311
|
end
|
|
299
|
-
# verify the required parameter '
|
|
300
|
-
if @api_client.config.client_side_validation &&
|
|
301
|
-
fail ArgumentError, "Missing the required parameter '
|
|
302
|
-
end
|
|
303
|
-
if @api_client.config.client_side_validation && profile_id.to_s.length > 36
|
|
304
|
-
fail ArgumentError, 'invalid value for "profile_id" when calling PaymentInstrumentApi.update_payment_instrument, the character length must be smaller than or equal to 36.'
|
|
305
|
-
end
|
|
306
|
-
|
|
307
|
-
if @api_client.config.client_side_validation && profile_id.to_s.length < 36
|
|
308
|
-
fail ArgumentError, 'invalid value for "profile_id" when calling PaymentInstrumentApi.update_payment_instrument, the character length must be great than or equal to 36.'
|
|
309
|
-
end
|
|
310
|
-
|
|
311
|
-
# verify the required parameter 'token_id' is set
|
|
312
|
-
if @api_client.config.client_side_validation && token_id.nil?
|
|
313
|
-
fail ArgumentError, "Missing the required parameter 'token_id' when calling PaymentInstrumentApi.update_payment_instrument"
|
|
312
|
+
# verify the required parameter 'post_payment_instrument_request' is set
|
|
313
|
+
if @api_client.config.client_side_validation && post_payment_instrument_request.nil?
|
|
314
|
+
fail ArgumentError, "Missing the required parameter 'post_payment_instrument_request' when calling PaymentInstrumentApi.post_payment_instrument"
|
|
314
315
|
end
|
|
315
|
-
if @api_client.config.client_side_validation &&
|
|
316
|
-
fail ArgumentError, 'invalid value for "
|
|
316
|
+
if @api_client.config.client_side_validation && !opts[:'profile_id'].nil? && opts[:'profile_id'].to_s.length > 36
|
|
317
|
+
fail ArgumentError, 'invalid value for "opts[:"profile_id"]" when calling PaymentInstrumentApi.post_payment_instrument, the character length must be smaller than or equal to 36.'
|
|
317
318
|
end
|
|
318
319
|
|
|
319
|
-
if @api_client.config.client_side_validation &&
|
|
320
|
-
fail ArgumentError, 'invalid value for "
|
|
320
|
+
if @api_client.config.client_side_validation && !opts[:'profile_id'].nil? && opts[:'profile_id'].to_s.length < 36
|
|
321
|
+
fail ArgumentError, 'invalid value for "opts[:"profile_id"]" when calling PaymentInstrumentApi.post_payment_instrument, the character length must be great than or equal to 36.'
|
|
321
322
|
end
|
|
322
323
|
|
|
323
|
-
# verify the required parameter 'update_payment_instrument_request' is set
|
|
324
|
-
if @api_client.config.client_side_validation && update_payment_instrument_request.nil?
|
|
325
|
-
fail ArgumentError, "Missing the required parameter 'update_payment_instrument_request' when calling PaymentInstrumentApi.update_payment_instrument"
|
|
326
|
-
end
|
|
327
324
|
# resource path
|
|
328
|
-
local_var_path = 'tms/v1/paymentinstruments
|
|
325
|
+
local_var_path = 'tms/v1/paymentinstruments'
|
|
329
326
|
|
|
330
327
|
# query parameters
|
|
331
328
|
query_params = {}
|
|
@@ -336,25 +333,25 @@ module CyberSource
|
|
|
336
333
|
header_params['Accept'] = @api_client.select_header_accept(['application/json;charset=utf-8'])
|
|
337
334
|
# HTTP header 'Content-Type'
|
|
338
335
|
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json;charset=utf-8'])
|
|
339
|
-
header_params[:'profile-id'] = profile_id
|
|
336
|
+
header_params[:'profile-id'] = opts[:'profile_id'] if !opts[:'profile_id'].nil?
|
|
340
337
|
|
|
341
338
|
# form parameters
|
|
342
339
|
form_params = {}
|
|
343
340
|
|
|
344
341
|
# http body (model)
|
|
345
|
-
post_body = @api_client.object_to_http_body(
|
|
342
|
+
post_body = @api_client.object_to_http_body(post_payment_instrument_request)
|
|
346
343
|
auth_names = []
|
|
347
|
-
data, status_code, headers = @api_client.call_api(:
|
|
344
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
|
348
345
|
:header_params => header_params,
|
|
349
346
|
:query_params => query_params,
|
|
350
347
|
:form_params => form_params,
|
|
351
348
|
:body => post_body,
|
|
352
349
|
:auth_names => auth_names,
|
|
353
|
-
:return_type => '
|
|
350
|
+
:return_type => 'Tmsv2customersEmbeddedDefaultPaymentInstrument')
|
|
354
351
|
if @api_client.config.debugging
|
|
355
352
|
begin
|
|
356
353
|
raise
|
|
357
|
-
@api_client.config.logger.debug "API called: PaymentInstrumentApi#
|
|
354
|
+
@api_client.config.logger.debug "API called: PaymentInstrumentApi#post_payment_instrument\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
358
355
|
rescue
|
|
359
356
|
puts 'Cannot write to log'
|
|
360
357
|
end
|