cybersource_rest_client 0.0.4
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 +7 -0
- data/AuthenticationSDK/Cybersource.gemspec +23 -0
- data/AuthenticationSDK/authentication/http/GetSignatureParameter.rb +62 -0
- data/AuthenticationSDK/authentication/http/HttpSignatureHeader.rb +50 -0
- data/AuthenticationSDK/authentication/jwt/JwtToken.rb +62 -0
- data/AuthenticationSDK/authentication/payloadDigest/digest.rb +10 -0
- data/AuthenticationSDK/core/Authorization.rb +24 -0
- data/AuthenticationSDK/core/ITokenGeneration.rb +4 -0
- data/AuthenticationSDK/core/Logger.rb +26 -0
- data/AuthenticationSDK/core/MerchantConfig.rb +181 -0
- data/AuthenticationSDK/util/ApiException.rb +19 -0
- data/AuthenticationSDK/util/Cache.rb +36 -0
- data/AuthenticationSDK/util/Constants.rb +134 -0
- data/AuthenticationSDK/util/PropertiesUtil.rb +21 -0
- data/AuthenticationSDK/util/Utility.rb +31 -0
- data/lib/cyberSource_client.rb +286 -0
- data/lib/cyberSource_client/api/capture_api.rb +133 -0
- data/lib/cyberSource_client/api/credit_api.rb +127 -0
- data/lib/cyberSource_client/api/default_api.rb +75 -0
- data/lib/cyberSource_client/api/instrument_identifier_api.rb +393 -0
- data/lib/cyberSource_client/api/key_generation_api.rb +75 -0
- data/lib/cyberSource_client/api/payment_api.rb +127 -0
- data/lib/cyberSource_client/api/payment_instrument_api.rb +312 -0
- data/lib/cyberSource_client/api/refund_api.rb +191 -0
- data/lib/cyberSource_client/api/reversal_api.rb +133 -0
- data/lib/cyberSource_client/api/tokenization_api.rb +71 -0
- data/lib/cyberSource_client/api/void_api.rb +307 -0
- data/lib/cyberSource_client/api_client.rb +437 -0
- data/lib/cyberSource_client/api_error.rb +38 -0
- data/lib/cyberSource_client/configuration.rb +202 -0
- data/lib/cyberSource_client/models/auth_reversal_request.rb +219 -0
- data/lib/cyberSource_client/models/body.rb +295 -0
- data/lib/cyberSource_client/models/body_1.rb +183 -0
- data/lib/cyberSource_client/models/body_2.rb +331 -0
- data/lib/cyberSource_client/models/body_3.rb +331 -0
- data/lib/cyberSource_client/models/capture_payment_request.rb +267 -0
- data/lib/cyberSource_client/models/card_info.rb +214 -0
- data/lib/cyberSource_client/models/create_credit_request.rb +267 -0
- data/lib/cyberSource_client/models/create_payment_request.rb +285 -0
- data/lib/cyberSource_client/models/der_public_key.rb +205 -0
- data/lib/cyberSource_client/models/error.rb +192 -0
- data/lib/cyberSource_client/models/error_links.rb +205 -0
- data/lib/cyberSource_client/models/error_response.rb +192 -0
- data/lib/cyberSource_client/models/generate_public_key_request.rb +184 -0
- data/lib/cyberSource_client/models/inline_response_200.rb +202 -0
- data/lib/cyberSource_client/models/inline_response_200_1.rb +255 -0
- data/lib/cyberSource_client/models/inline_response_200_2.rb +377 -0
- data/lib/cyberSource_client/models/inline_response_200_2_buyer_information.rb +270 -0
- data/lib/cyberSource_client/models/inline_response_200_2_device_information.rb +219 -0
- data/lib/cyberSource_client/models/inline_response_200_2_merchant_information.rb +233 -0
- data/lib/cyberSource_client/models/inline_response_200_2_order_information.rb +230 -0
- data/lib/cyberSource_client/models/inline_response_200_2_order_information_amount_details.rb +385 -0
- data/lib/cyberSource_client/models/inline_response_200_2_order_information_bill_to.rb +459 -0
- data/lib/cyberSource_client/models/inline_response_200_2_order_information_invoice_details.rb +315 -0
- data/lib/cyberSource_client/models/inline_response_200_2_order_information_line_items.rb +564 -0
- data/lib/cyberSource_client/models/inline_response_200_2_order_information_ship_to.rb +429 -0
- data/lib/cyberSource_client/models/inline_response_200_2_payment_information.rb +192 -0
- data/lib/cyberSource_client/models/inline_response_200_2_payment_information_card.rb +274 -0
- data/lib/cyberSource_client/models/inline_response_200_2_payment_information_tokenized_card.rb +299 -0
- data/lib/cyberSource_client/models/inline_response_200_2_processing_information.rb +199 -0
- data/lib/cyberSource_client/models/inline_response_200_2_processor_information.rb +227 -0
- data/lib/cyberSource_client/models/inline_response_200_2_processor_information_avs.rb +199 -0
- data/lib/cyberSource_client/models/inline_response_200_2_processor_information_card_verification.rb +199 -0
- data/lib/cyberSource_client/models/inline_response_200_3.rb +314 -0
- data/lib/cyberSource_client/models/inline_response_200_4.rb +350 -0
- data/lib/cyberSource_client/models/inline_response_200_4_device_information.rb +199 -0
- data/lib/cyberSource_client/models/inline_response_200_4_order_information.rb +230 -0
- data/lib/cyberSource_client/models/inline_response_200_4_order_information_amount_details.rb +360 -0
- data/lib/cyberSource_client/models/inline_response_200_4_order_information_invoice_details.rb +305 -0
- data/lib/cyberSource_client/models/inline_response_200_4_order_information_ship_to.rb +249 -0
- data/lib/cyberSource_client/models/inline_response_200_4_processing_information.rb +208 -0
- data/lib/cyberSource_client/models/inline_response_200_4_processing_information_authorization_options.rb +199 -0
- data/lib/cyberSource_client/models/inline_response_200_5.rb +305 -0
- data/lib/cyberSource_client/models/inline_response_200_6.rb +305 -0
- data/lib/cyberSource_client/models/inline_response_200_7.rb +295 -0
- data/lib/cyberSource_client/models/inline_response_200_8.rb +277 -0
- data/lib/cyberSource_client/models/inline_response_200_8__links.rb +219 -0
- data/lib/cyberSource_client/models/inline_response_200_8__links_first.rb +184 -0
- data/lib/cyberSource_client/models/inline_response_200_8__links_last.rb +184 -0
- data/lib/cyberSource_client/models/inline_response_200_8__links_next.rb +184 -0
- data/lib/cyberSource_client/models/inline_response_200_8__links_prev.rb +184 -0
- data/lib/cyberSource_client/models/inline_response_200_8__links_self.rb +184 -0
- data/lib/cyberSource_client/models/inline_response_200_der.rb +205 -0
- data/lib/cyberSource_client/models/inline_response_200_jwk.rb +225 -0
- data/lib/cyberSource_client/models/inline_response_201.rb +350 -0
- data/lib/cyberSource_client/models/inline_response_201_1.rb +332 -0
- data/lib/cyberSource_client/models/inline_response_201_1_authorization_information.rb +224 -0
- data/lib/cyberSource_client/models/inline_response_201_1_processor_information.rb +324 -0
- data/lib/cyberSource_client/models/inline_response_201_1_reversal_amount_details.rb +249 -0
- data/lib/cyberSource_client/models/inline_response_201_2.rb +314 -0
- data/lib/cyberSource_client/models/inline_response_201_2__links.rb +201 -0
- data/lib/cyberSource_client/models/inline_response_201_2_order_information.rb +192 -0
- data/lib/cyberSource_client/models/inline_response_201_2_order_information_amount_details.rb +224 -0
- data/lib/cyberSource_client/models/inline_response_201_2_processor_information.rb +199 -0
- data/lib/cyberSource_client/models/inline_response_201_3.rb +323 -0
- data/lib/cyberSource_client/models/inline_response_201_3__links.rb +192 -0
- data/lib/cyberSource_client/models/inline_response_201_3_order_information.rb +183 -0
- data/lib/cyberSource_client/models/inline_response_201_3_processor_information.rb +224 -0
- data/lib/cyberSource_client/models/inline_response_201_3_refund_amount_details.rb +224 -0
- data/lib/cyberSource_client/models/inline_response_201_4.rb +323 -0
- data/lib/cyberSource_client/models/inline_response_201_4_credit_amount_details.rb +224 -0
- data/lib/cyberSource_client/models/inline_response_201_5.rb +280 -0
- data/lib/cyberSource_client/models/inline_response_201_5_void_amount_details.rb +219 -0
- data/lib/cyberSource_client/models/inline_response_201_6.rb +331 -0
- data/lib/cyberSource_client/models/inline_response_201__embedded.rb +183 -0
- data/lib/cyberSource_client/models/inline_response_201__embedded_capture.rb +193 -0
- data/lib/cyberSource_client/models/inline_response_201__embedded_capture__links.rb +183 -0
- data/lib/cyberSource_client/models/inline_response_201__links.rb +201 -0
- data/lib/cyberSource_client/models/inline_response_201__links_self.rb +194 -0
- data/lib/cyberSource_client/models/inline_response_201_client_reference_information.rb +199 -0
- data/lib/cyberSource_client/models/inline_response_201_error_information.rb +239 -0
- data/lib/cyberSource_client/models/inline_response_201_error_information_details.rb +228 -0
- data/lib/cyberSource_client/models/inline_response_201_order_information.rb +192 -0
- data/lib/cyberSource_client/models/inline_response_201_order_information_amount_details.rb +249 -0
- data/lib/cyberSource_client/models/inline_response_201_order_information_invoice_details.rb +184 -0
- data/lib/cyberSource_client/models/inline_response_201_payment_information.rb +201 -0
- data/lib/cyberSource_client/models/inline_response_201_payment_information_account_features.rb +623 -0
- data/lib/cyberSource_client/models/inline_response_201_payment_information_card.rb +199 -0
- data/lib/cyberSource_client/models/inline_response_201_payment_information_tokenized_card.rb +349 -0
- data/lib/cyberSource_client/models/inline_response_201_point_of_sale_information.rb +208 -0
- data/lib/cyberSource_client/models/inline_response_201_point_of_sale_information_emv.rb +199 -0
- data/lib/cyberSource_client/models/inline_response_201_processor_information.rb +642 -0
- data/lib/cyberSource_client/models/inline_response_201_processor_information_avs.rb +224 -0
- data/lib/cyberSource_client/models/inline_response_201_processor_information_card_verification.rb +224 -0
- data/lib/cyberSource_client/models/inline_response_201_processor_information_consumer_authentication_response.rb +224 -0
- data/lib/cyberSource_client/models/inline_response_201_processor_information_customer.rb +199 -0
- data/lib/cyberSource_client/models/inline_response_201_processor_information_electronic_verification_results.rb +474 -0
- data/lib/cyberSource_client/models/inline_response_201_processor_information_issuer.rb +224 -0
- data/lib/cyberSource_client/models/inline_response_201_processor_information_merchant_advice.rb +224 -0
- data/lib/cyberSource_client/models/inline_response_400.rb +271 -0
- data/lib/cyberSource_client/models/inline_response_400_1.rb +271 -0
- data/lib/cyberSource_client/models/inline_response_400_2.rb +271 -0
- data/lib/cyberSource_client/models/inline_response_400_3.rb +271 -0
- data/lib/cyberSource_client/models/inline_response_400_4.rb +271 -0
- data/lib/cyberSource_client/models/inline_response_400_5.rb +259 -0
- data/lib/cyberSource_client/models/inline_response_400_6.rb +202 -0
- data/lib/cyberSource_client/models/inline_response_409.rb +183 -0
- data/lib/cyberSource_client/models/inline_response_409__links.rb +183 -0
- data/lib/cyberSource_client/models/inline_response_409__links_payment_instruments.rb +183 -0
- data/lib/cyberSource_client/models/inline_response_502.rb +260 -0
- data/lib/cyberSource_client/models/inline_response_default.rb +192 -0
- data/lib/cyberSource_client/models/inline_response_default__links.rb +205 -0
- data/lib/cyberSource_client/models/inline_response_default__links_next.rb +204 -0
- data/lib/cyberSource_client/models/inline_response_default_response_status.rb +225 -0
- data/lib/cyberSource_client/models/inline_response_default_response_status_details.rb +194 -0
- data/lib/cyberSource_client/models/instrumentidentifiers__links.rb +201 -0
- data/lib/cyberSource_client/models/instrumentidentifiers__links_self.rb +183 -0
- data/lib/cyberSource_client/models/instrumentidentifiers_authorization_options_merchant_initiated_transaction.rb +184 -0
- data/lib/cyberSource_client/models/instrumentidentifiers_bank_account.rb +194 -0
- data/lib/cyberSource_client/models/instrumentidentifiers_card.rb +184 -0
- data/lib/cyberSource_client/models/instrumentidentifiers_details.rb +194 -0
- data/lib/cyberSource_client/models/instrumentidentifiers_metadata.rb +184 -0
- data/lib/cyberSource_client/models/instrumentidentifiers_processing_information.rb +183 -0
- data/lib/cyberSource_client/models/instrumentidentifiers_processing_information_authorization_options.rb +183 -0
- data/lib/cyberSource_client/models/instrumentidentifiers_processing_information_authorization_options_initiator.rb +183 -0
- data/lib/cyberSource_client/models/json_web_key.rb +225 -0
- data/lib/cyberSource_client/models/key_parameters.rb +184 -0
- data/lib/cyberSource_client/models/key_result.rb +202 -0
- data/lib/cyberSource_client/models/link.rb +204 -0
- data/lib/cyberSource_client/models/links.rb +205 -0
- data/lib/cyberSource_client/models/oct_create_payment_request.rb +237 -0
- data/lib/cyberSource_client/models/paymentinstruments_bank_account.rb +184 -0
- data/lib/cyberSource_client/models/paymentinstruments_bill_to.rb +284 -0
- data/lib/cyberSource_client/models/paymentinstruments_buyer_information.rb +215 -0
- data/lib/cyberSource_client/models/paymentinstruments_buyer_information_issued_by.rb +184 -0
- data/lib/cyberSource_client/models/paymentinstruments_buyer_information_personal_identification.rb +203 -0
- data/lib/cyberSource_client/models/paymentinstruments_card.rb +278 -0
- data/lib/cyberSource_client/models/paymentinstruments_instrument_identifier.rb +295 -0
- data/lib/cyberSource_client/models/paymentinstruments_merchant_information.rb +183 -0
- data/lib/cyberSource_client/models/paymentinstruments_merchant_information_merchant_descriptor.rb +184 -0
- data/lib/cyberSource_client/models/paymentinstruments_processing_information.rb +193 -0
- data/lib/cyberSource_client/models/paymentinstruments_processing_information_bank_transfer_options.rb +184 -0
- data/lib/cyberSource_client/models/paymentsflexv1tokens_card_info.rb +214 -0
- data/lib/cyberSource_client/models/refund_capture_request.rb +267 -0
- data/lib/cyberSource_client/models/refund_payment_request.rb +267 -0
- data/lib/cyberSource_client/models/response_status.rb +225 -0
- data/lib/cyberSource_client/models/response_status_details.rb +194 -0
- data/lib/cyberSource_client/models/tokenize_parameters.rb +193 -0
- data/lib/cyberSource_client/models/tokenize_request.rb +193 -0
- data/lib/cyberSource_client/models/tokenize_result.rb +255 -0
- data/lib/cyberSource_client/models/v2credits_point_of_sale_information.rb +183 -0
- data/lib/cyberSource_client/models/v2credits_point_of_sale_information_emv.rb +221 -0
- data/lib/cyberSource_client/models/v2credits_processing_information.rb +383 -0
- data/lib/cyberSource_client/models/v2payments_aggregator_information.rb +233 -0
- data/lib/cyberSource_client/models/v2payments_aggregator_information_sub_merchant.rb +424 -0
- data/lib/cyberSource_client/models/v2payments_buyer_information.rb +285 -0
- data/lib/cyberSource_client/models/v2payments_buyer_information_personal_identification.rb +252 -0
- data/lib/cyberSource_client/models/v2payments_client_reference_information.rb +219 -0
- data/lib/cyberSource_client/models/v2payments_consumer_authentication_information.rb +374 -0
- data/lib/cyberSource_client/models/v2payments_device_information.rb +249 -0
- data/lib/cyberSource_client/models/v2payments_merchant_defined_information.rb +224 -0
- data/lib/cyberSource_client/models/v2payments_merchant_information.rb +308 -0
- data/lib/cyberSource_client/models/v2payments_merchant_information_merchant_descriptor.rb +374 -0
- data/lib/cyberSource_client/models/v2payments_order_information.rb +230 -0
- data/lib/cyberSource_client/models/v2payments_order_information_amount_details.rb +605 -0
- data/lib/cyberSource_client/models/v2payments_order_information_amount_details_amex_additional_amounts.rb +224 -0
- data/lib/cyberSource_client/models/v2payments_order_information_amount_details_surcharge.rb +209 -0
- data/lib/cyberSource_client/models/v2payments_order_information_amount_details_tax_details.rb +328 -0
- data/lib/cyberSource_client/models/v2payments_order_information_bill_to.rb +618 -0
- data/lib/cyberSource_client/models/v2payments_order_information_invoice_details.rb +330 -0
- data/lib/cyberSource_client/models/v2payments_order_information_invoice_details_transaction_advice_addendum.rb +199 -0
- data/lib/cyberSource_client/models/v2payments_order_information_line_items.rb +649 -0
- data/lib/cyberSource_client/models/v2payments_order_information_ship_to.rb +474 -0
- data/lib/cyberSource_client/models/v2payments_order_information_shipping_details.rb +234 -0
- data/lib/cyberSource_client/models/v2payments_payment_information.rb +210 -0
- data/lib/cyberSource_client/models/v2payments_payment_information_card.rb +474 -0
- data/lib/cyberSource_client/models/v2payments_payment_information_customer.rb +202 -0
- data/lib/cyberSource_client/models/v2payments_payment_information_fluid_data.rb +259 -0
- data/lib/cyberSource_client/models/v2payments_payment_information_tokenized_card.rb +424 -0
- data/lib/cyberSource_client/models/v2payments_point_of_sale_information.rb +440 -0
- data/lib/cyberSource_client/models/v2payments_point_of_sale_information_emv.rb +256 -0
- data/lib/cyberSource_client/models/v2payments_processing_information.rb +432 -0
- data/lib/cyberSource_client/models/v2payments_processing_information_authorization_options.rb +361 -0
- data/lib/cyberSource_client/models/v2payments_processing_information_authorization_options_initiator.rb +247 -0
- data/lib/cyberSource_client/models/v2payments_processing_information_authorization_options_merchant_initiated_transaction.rb +224 -0
- data/lib/cyberSource_client/models/v2payments_processing_information_capture_options.rb +267 -0
- data/lib/cyberSource_client/models/v2payments_processing_information_issuer.rb +199 -0
- data/lib/cyberSource_client/models/v2payments_processing_information_recurring_options.rb +198 -0
- data/lib/cyberSource_client/models/v2payments_recipient_information.rb +249 -0
- data/lib/cyberSource_client/models/v2paymentsidcaptures_aggregator_information.rb +233 -0
- data/lib/cyberSource_client/models/v2paymentsidcaptures_aggregator_information_sub_merchant.rb +374 -0
- data/lib/cyberSource_client/models/v2paymentsidcaptures_buyer_information.rb +224 -0
- data/lib/cyberSource_client/models/v2paymentsidcaptures_merchant_information.rb +258 -0
- data/lib/cyberSource_client/models/v2paymentsidcaptures_order_information.rb +230 -0
- data/lib/cyberSource_client/models/v2paymentsidcaptures_order_information_amount_details.rb +546 -0
- data/lib/cyberSource_client/models/v2paymentsidcaptures_order_information_bill_to.rb +449 -0
- data/lib/cyberSource_client/models/v2paymentsidcaptures_order_information_invoice_details.rb +320 -0
- data/lib/cyberSource_client/models/v2paymentsidcaptures_order_information_ship_to.rb +249 -0
- data/lib/cyberSource_client/models/v2paymentsidcaptures_order_information_shipping_details.rb +199 -0
- data/lib/cyberSource_client/models/v2paymentsidcaptures_payment_information.rb +183 -0
- data/lib/cyberSource_client/models/v2paymentsidcaptures_point_of_sale_information.rb +208 -0
- data/lib/cyberSource_client/models/v2paymentsidcaptures_point_of_sale_information_emv.rb +211 -0
- data/lib/cyberSource_client/models/v2paymentsidcaptures_processing_information.rb +351 -0
- data/lib/cyberSource_client/models/v2paymentsidcaptures_processing_information_authorization_options.rb +249 -0
- data/lib/cyberSource_client/models/v2paymentsidcaptures_processing_information_capture_options.rb +242 -0
- data/lib/cyberSource_client/models/v2paymentsidrefunds_merchant_information.rb +258 -0
- data/lib/cyberSource_client/models/v2paymentsidrefunds_order_information.rb +230 -0
- data/lib/cyberSource_client/models/v2paymentsidrefunds_order_information_line_items.rb +639 -0
- data/lib/cyberSource_client/models/v2paymentsidrefunds_payment_information.rb +183 -0
- data/lib/cyberSource_client/models/v2paymentsidrefunds_payment_information_card.rb +374 -0
- data/lib/cyberSource_client/models/v2paymentsidrefunds_point_of_sale_information.rb +183 -0
- data/lib/cyberSource_client/models/v2paymentsidrefunds_processing_information.rb +333 -0
- data/lib/cyberSource_client/models/v2paymentsidrefunds_processing_information_recurring_options.rb +186 -0
- data/lib/cyberSource_client/models/v2paymentsidreversals_client_reference_information.rb +209 -0
- data/lib/cyberSource_client/models/v2paymentsidreversals_order_information.rb +185 -0
- data/lib/cyberSource_client/models/v2paymentsidreversals_order_information_line_items.rb +233 -0
- data/lib/cyberSource_client/models/v2paymentsidreversals_point_of_sale_information.rb +183 -0
- data/lib/cyberSource_client/models/v2paymentsidreversals_processing_information.rb +308 -0
- data/lib/cyberSource_client/models/v2paymentsidreversals_reversal_information.rb +211 -0
- data/lib/cyberSource_client/models/v2paymentsidreversals_reversal_information_amount_details.rb +224 -0
- data/lib/cyberSource_client/models/v2payouts_merchant_information.rb +258 -0
- data/lib/cyberSource_client/models/v2payouts_merchant_information_merchant_descriptor.rb +324 -0
- data/lib/cyberSource_client/models/v2payouts_order_information.rb +192 -0
- data/lib/cyberSource_client/models/v2payouts_order_information_amount_details.rb +249 -0
- data/lib/cyberSource_client/models/v2payouts_order_information_bill_to.rb +443 -0
- data/lib/cyberSource_client/models/v2payouts_payment_information.rb +183 -0
- data/lib/cyberSource_client/models/v2payouts_payment_information_card.rb +299 -0
- data/lib/cyberSource_client/models/v2payouts_processing_information.rb +283 -0
- data/lib/cyberSource_client/models/v2payouts_processing_information_payouts_options.rb +274 -0
- data/lib/cyberSource_client/models/v2payouts_recipient_information.rb +433 -0
- data/lib/cyberSource_client/models/v2payouts_sender_information.rb +517 -0
- data/lib/cyberSource_client/models/v2payouts_sender_information_account.rb +233 -0
- data/lib/cyberSource_client/models/void_capture_request.rb +183 -0
- data/lib/cyberSource_client/models/void_credit_request.rb +183 -0
- data/lib/cyberSource_client/models/void_payment_request.rb +183 -0
- data/lib/cyberSource_client/models/void_refund_request.rb +183 -0
- data/lib/cyberSource_client/version.rb +15 -0
- metadata +572 -0
|
@@ -0,0 +1,230 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#CyberSource Flex API
|
|
3
|
+
|
|
4
|
+
#Simple PAN tokenization service
|
|
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 'date'
|
|
14
|
+
|
|
15
|
+
module CyberSource
|
|
16
|
+
class V2paymentsidcapturesOrderInformation
|
|
17
|
+
attr_accessor :amount_details
|
|
18
|
+
|
|
19
|
+
attr_accessor :bill_to
|
|
20
|
+
|
|
21
|
+
attr_accessor :ship_to
|
|
22
|
+
|
|
23
|
+
attr_accessor :line_items
|
|
24
|
+
|
|
25
|
+
attr_accessor :invoice_details
|
|
26
|
+
|
|
27
|
+
attr_accessor :shipping_details
|
|
28
|
+
|
|
29
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
30
|
+
def self.attribute_map
|
|
31
|
+
{
|
|
32
|
+
:'amount_details' => :'amountDetails',
|
|
33
|
+
:'bill_to' => :'billTo',
|
|
34
|
+
:'ship_to' => :'shipTo',
|
|
35
|
+
:'line_items' => :'lineItems',
|
|
36
|
+
:'invoice_details' => :'invoiceDetails',
|
|
37
|
+
:'shipping_details' => :'shippingDetails'
|
|
38
|
+
}
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
# Attribute type mapping.
|
|
42
|
+
def self.swagger_types
|
|
43
|
+
{
|
|
44
|
+
:'amount_details' => :'V2paymentsidcapturesOrderInformationAmountDetails',
|
|
45
|
+
:'bill_to' => :'V2paymentsidcapturesOrderInformationBillTo',
|
|
46
|
+
:'ship_to' => :'V2paymentsidcapturesOrderInformationShipTo',
|
|
47
|
+
:'line_items' => :'Array<V2paymentsOrderInformationLineItems>',
|
|
48
|
+
:'invoice_details' => :'V2paymentsidcapturesOrderInformationInvoiceDetails',
|
|
49
|
+
:'shipping_details' => :'V2paymentsidcapturesOrderInformationShippingDetails'
|
|
50
|
+
}
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
# Initializes the object
|
|
54
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
55
|
+
def initialize(attributes = {})
|
|
56
|
+
return unless attributes.is_a?(Hash)
|
|
57
|
+
|
|
58
|
+
# convert string to symbol for hash key
|
|
59
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
|
60
|
+
|
|
61
|
+
if attributes.has_key?(:'amountDetails')
|
|
62
|
+
self.amount_details = attributes[:'amountDetails']
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
if attributes.has_key?(:'billTo')
|
|
66
|
+
self.bill_to = attributes[:'billTo']
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
if attributes.has_key?(:'shipTo')
|
|
70
|
+
self.ship_to = attributes[:'shipTo']
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
if attributes.has_key?(:'lineItems')
|
|
74
|
+
if (value = attributes[:'lineItems']).is_a?(Array)
|
|
75
|
+
self.line_items = value
|
|
76
|
+
end
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
if attributes.has_key?(:'invoiceDetails')
|
|
80
|
+
self.invoice_details = attributes[:'invoiceDetails']
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
if attributes.has_key?(:'shippingDetails')
|
|
84
|
+
self.shipping_details = attributes[:'shippingDetails']
|
|
85
|
+
end
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
|
89
|
+
# @return Array for valid properties with the reasons
|
|
90
|
+
def list_invalid_properties
|
|
91
|
+
invalid_properties = Array.new
|
|
92
|
+
invalid_properties
|
|
93
|
+
end
|
|
94
|
+
|
|
95
|
+
# Check to see if the all the properties in the model are valid
|
|
96
|
+
# @return true if the model is valid
|
|
97
|
+
def valid?
|
|
98
|
+
true
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
# Checks equality by comparing each attribute.
|
|
102
|
+
# @param [Object] Object to be compared
|
|
103
|
+
def ==(o)
|
|
104
|
+
return true if self.equal?(o)
|
|
105
|
+
self.class == o.class &&
|
|
106
|
+
amount_details == o.amount_details &&
|
|
107
|
+
bill_to == o.bill_to &&
|
|
108
|
+
ship_to == o.ship_to &&
|
|
109
|
+
line_items == o.line_items &&
|
|
110
|
+
invoice_details == o.invoice_details &&
|
|
111
|
+
shipping_details == o.shipping_details
|
|
112
|
+
end
|
|
113
|
+
|
|
114
|
+
# @see the `==` method
|
|
115
|
+
# @param [Object] Object to be compared
|
|
116
|
+
def eql?(o)
|
|
117
|
+
self == o
|
|
118
|
+
end
|
|
119
|
+
|
|
120
|
+
# Calculates hash code according to all attributes.
|
|
121
|
+
# @return [Fixnum] Hash code
|
|
122
|
+
def hash
|
|
123
|
+
[amount_details, bill_to, ship_to, line_items, invoice_details, shipping_details].hash
|
|
124
|
+
end
|
|
125
|
+
|
|
126
|
+
# Builds the object from hash
|
|
127
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
128
|
+
# @return [Object] Returns the model itself
|
|
129
|
+
def build_from_hash(attributes)
|
|
130
|
+
return nil unless attributes.is_a?(Hash)
|
|
131
|
+
self.class.swagger_types.each_pair do |key, type|
|
|
132
|
+
if type =~ /\AArray<(.*)>/i
|
|
133
|
+
# check to ensure the input is an array given that the the attribute
|
|
134
|
+
# is documented as an array but the input is not
|
|
135
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
136
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
|
137
|
+
end
|
|
138
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
139
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
140
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
|
141
|
+
end
|
|
142
|
+
|
|
143
|
+
self
|
|
144
|
+
end
|
|
145
|
+
|
|
146
|
+
# Deserializes the data based on type
|
|
147
|
+
# @param string type Data type
|
|
148
|
+
# @param string value Value to be deserialized
|
|
149
|
+
# @return [Object] Deserialized data
|
|
150
|
+
def _deserialize(type, value)
|
|
151
|
+
case type.to_sym
|
|
152
|
+
when :DateTime
|
|
153
|
+
DateTime.parse(value)
|
|
154
|
+
when :Date
|
|
155
|
+
Date.parse(value)
|
|
156
|
+
when :String
|
|
157
|
+
value.to_s
|
|
158
|
+
when :Integer
|
|
159
|
+
value.to_i
|
|
160
|
+
when :Float
|
|
161
|
+
value.to_f
|
|
162
|
+
when :BOOLEAN
|
|
163
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
|
164
|
+
true
|
|
165
|
+
else
|
|
166
|
+
false
|
|
167
|
+
end
|
|
168
|
+
when :Object
|
|
169
|
+
# generic object (usually a Hash), return directly
|
|
170
|
+
value
|
|
171
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
|
172
|
+
inner_type = Regexp.last_match[:inner_type]
|
|
173
|
+
value.map { |v| _deserialize(inner_type, v) }
|
|
174
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
|
175
|
+
k_type = Regexp.last_match[:k_type]
|
|
176
|
+
v_type = Regexp.last_match[:v_type]
|
|
177
|
+
{}.tap do |hash|
|
|
178
|
+
value.each do |k, v|
|
|
179
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
|
180
|
+
end
|
|
181
|
+
end
|
|
182
|
+
else # model
|
|
183
|
+
temp_model = CyberSource.const_get(type).new
|
|
184
|
+
temp_model.build_from_hash(value)
|
|
185
|
+
end
|
|
186
|
+
end
|
|
187
|
+
|
|
188
|
+
# Returns the string representation of the object
|
|
189
|
+
# @return [String] String presentation of the object
|
|
190
|
+
def to_s
|
|
191
|
+
to_hash.to_s
|
|
192
|
+
end
|
|
193
|
+
|
|
194
|
+
# to_body is an alias to to_hash (backward compatibility)
|
|
195
|
+
# @return [Hash] Returns the object in the form of hash
|
|
196
|
+
def to_body
|
|
197
|
+
to_hash
|
|
198
|
+
end
|
|
199
|
+
|
|
200
|
+
# Returns the object in the form of hash
|
|
201
|
+
# @return [Hash] Returns the object in the form of hash
|
|
202
|
+
def to_hash
|
|
203
|
+
hash = {}
|
|
204
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
205
|
+
value = self.send(attr)
|
|
206
|
+
next if value.nil?
|
|
207
|
+
hash[param] = _to_hash(value)
|
|
208
|
+
end
|
|
209
|
+
hash
|
|
210
|
+
end
|
|
211
|
+
|
|
212
|
+
# Outputs non-array value in the form of hash
|
|
213
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
214
|
+
# @param [Object] value Any valid value
|
|
215
|
+
# @return [Hash] Returns the value in the form of hash
|
|
216
|
+
def _to_hash(value)
|
|
217
|
+
if value.is_a?(Array)
|
|
218
|
+
value.compact.map { |v| _to_hash(v) }
|
|
219
|
+
elsif value.is_a?(Hash)
|
|
220
|
+
{}.tap do |hash|
|
|
221
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
222
|
+
end
|
|
223
|
+
elsif value.respond_to? :to_hash
|
|
224
|
+
value.to_hash
|
|
225
|
+
else
|
|
226
|
+
value
|
|
227
|
+
end
|
|
228
|
+
end
|
|
229
|
+
end
|
|
230
|
+
end
|
|
@@ -0,0 +1,546 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#CyberSource Flex API
|
|
3
|
+
|
|
4
|
+
#Simple PAN tokenization service
|
|
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 'date'
|
|
14
|
+
|
|
15
|
+
module CyberSource
|
|
16
|
+
class V2paymentsidcapturesOrderInformationAmountDetails
|
|
17
|
+
# Grand total for the order. You can include a decimal point (.), but no other special characters. CyberSource truncates the amount to the correct number of decimal places. * CTV, FDCCompass, Paymentech (<= 12) For processor-specific information, see the grand_total_amount field in [Credit Card Services Using the SCMP API.](http://apps.cybersource.com/library/documentation/dev_guides/CC_Svcs_SCMP_API/html)
|
|
18
|
+
attr_accessor :total_amount
|
|
19
|
+
|
|
20
|
+
# Currency used for the order. Use the three-character ISO Standard Currency Codes. For an authorization reversal or a capture, you must use the same currency that you used in your request for Payment API.
|
|
21
|
+
attr_accessor :currency
|
|
22
|
+
|
|
23
|
+
# Total discount amount applied to the order. For processor-specific information, see the order_discount_amount field in [Level II and Level III Processing Using the SCMP API.](http://apps.cybersource.com/library/documentation/dev_guides/Level_2_3_SCMP_API/html)
|
|
24
|
+
attr_accessor :discount_amount
|
|
25
|
+
|
|
26
|
+
# Total charges for any import or export duties included in the order. For processor-specific information, see the duty_amount field in [Level II and Level III Processing Using the SCMP API.](http://apps.cybersource.com/library/documentation/dev_guides/Level_2_3_SCMP_API/html)
|
|
27
|
+
attr_accessor :duty_amount
|
|
28
|
+
|
|
29
|
+
# Total tax amount for all the items in the order. For processor-specific information, see the total_tax_amount field in [Level II and Level III Processing Using the SCMP API.](http://apps.cybersource.com/library/documentation/dev_guides/Level_2_3_SCMP_API/html)
|
|
30
|
+
attr_accessor :tax_amount
|
|
31
|
+
|
|
32
|
+
# Flag that indicates whether a national tax is included in the order total. Possible values: - **0**: national tax not included - **1**: national tax included For processor-specific information, see the national_tax_indicator field in [Level II and Level III Processing Using the SCMP API.](http://apps.cybersource.com/library/documentation/dev_guides/Level_2_3_SCMP_API/html)
|
|
33
|
+
attr_accessor :national_tax_included
|
|
34
|
+
|
|
35
|
+
# Flag that indicates how the merchant manages discounts. Possible values: - **0**: no invoice level discount included - **1**: tax calculated on the postdiscount invoice total - **2**: tax calculated on the prediscount invoice total For processor-specific information, see the order_discount_management_indicator field in [Level II and Level III Processing Using the SCMP API.](http://apps.cybersource.com/library/documentation/dev_guides/Level_2_3_SCMP_API/html)
|
|
36
|
+
attr_accessor :tax_applied_after_discount
|
|
37
|
+
|
|
38
|
+
# Flag that indicates how you calculate tax. Possible values: - **0**: net prices with tax calculated at line item level - **1**: net prices with tax calculated at invoice level - **2**: gross prices with tax provided at line item level - **3**: gross prices with tax provided at invoice level - **4**: no tax applies on the invoice for the transaction For processor-specific information, see the tax_management_indicator field in [Level II and Level III Processing Using the SCMP API.](http://apps.cybersource.com/library/documentation/dev_guides/Level_2_3_SCMP_API/html)
|
|
39
|
+
attr_accessor :tax_applied_level
|
|
40
|
+
|
|
41
|
+
# For tax amounts that can be categorized as one tax type. This field contains the tax type code that corresponds to the entry in the _lineItems.taxAmount_ field. Possible values: - **056**: sales tax (U.S only) - **TX~**: all taxes (Canada only) Note ~ = space. For processor-specific information, see the total_tax_type_code field in [Level II and Level III Processing Using the SCMP API.](http://apps.cybersource.com/library/documentation/dev_guides/Level_2_3_SCMP_API/html)
|
|
42
|
+
attr_accessor :tax_type_code
|
|
43
|
+
|
|
44
|
+
# Total freight or shipping and handling charges for the order. When you include this field in your request, you must also include the **totalAmount** field. For processor-specific information, see the freight_amount field in [Level II and Level III Processing Using the SCMP API.](http://apps.cybersource.com/library/documentation/dev_guides/Level_2_3_SCMP_API/html)
|
|
45
|
+
attr_accessor :freight_amount
|
|
46
|
+
|
|
47
|
+
# Converted amount returned by the DCC service. For processor-specific information, see the foreign_amount field in [Credit Card Services Using the SCMP API.](http://apps.cybersource.com/library/documentation/dev_guides/CC_Svcs_SCMP_API/html)
|
|
48
|
+
attr_accessor :foreign_amount
|
|
49
|
+
|
|
50
|
+
# Billing currency returned by the DCC service. For processor-specific information, see the foreign_currency field in [Credit Card Services Using the SCMP API.](http://apps.cybersource.com/library/documentation/dev_guides/CC_Svcs_SCMP_API/html)
|
|
51
|
+
attr_accessor :foreign_currency
|
|
52
|
+
|
|
53
|
+
# Exchange rate returned by the DCC service. Includes a decimal point and a maximum of 4 decimal places. For processor-specific information, see the exchange_rate field in [Credit Card Services Using the SCMP API.](http://apps.cybersource.com/library/documentation/dev_guides/CC_Svcs_SCMP_API/html)
|
|
54
|
+
attr_accessor :exchange_rate
|
|
55
|
+
|
|
56
|
+
# Time stamp for the exchange rate. This value is returned by the DCC service. Format: `YYYYMMDD~HH:MM` where ~ denotes a space. For processor-specific information, see the exchange_rate_timestamp field in [Credit Card Services Using the SCMP API.](http://apps.cybersource.com/library/documentation/dev_guides/CC_Svcs_SCMP_API/html)
|
|
57
|
+
attr_accessor :exchange_rate_time_stamp
|
|
58
|
+
|
|
59
|
+
attr_accessor :amex_additional_amounts
|
|
60
|
+
|
|
61
|
+
attr_accessor :tax_details
|
|
62
|
+
|
|
63
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
64
|
+
def self.attribute_map
|
|
65
|
+
{
|
|
66
|
+
:'total_amount' => :'totalAmount',
|
|
67
|
+
:'currency' => :'currency',
|
|
68
|
+
:'discount_amount' => :'discountAmount',
|
|
69
|
+
:'duty_amount' => :'dutyAmount',
|
|
70
|
+
:'tax_amount' => :'taxAmount',
|
|
71
|
+
:'national_tax_included' => :'nationalTaxIncluded',
|
|
72
|
+
:'tax_applied_after_discount' => :'taxAppliedAfterDiscount',
|
|
73
|
+
:'tax_applied_level' => :'taxAppliedLevel',
|
|
74
|
+
:'tax_type_code' => :'taxTypeCode',
|
|
75
|
+
:'freight_amount' => :'freightAmount',
|
|
76
|
+
:'foreign_amount' => :'foreignAmount',
|
|
77
|
+
:'foreign_currency' => :'foreignCurrency',
|
|
78
|
+
:'exchange_rate' => :'exchangeRate',
|
|
79
|
+
:'exchange_rate_time_stamp' => :'exchangeRateTimeStamp',
|
|
80
|
+
:'amex_additional_amounts' => :'amexAdditionalAmounts',
|
|
81
|
+
:'tax_details' => :'taxDetails'
|
|
82
|
+
}
|
|
83
|
+
end
|
|
84
|
+
|
|
85
|
+
# Attribute type mapping.
|
|
86
|
+
def self.swagger_types
|
|
87
|
+
{
|
|
88
|
+
:'total_amount' => :'String',
|
|
89
|
+
:'currency' => :'String',
|
|
90
|
+
:'discount_amount' => :'String',
|
|
91
|
+
:'duty_amount' => :'String',
|
|
92
|
+
:'tax_amount' => :'String',
|
|
93
|
+
:'national_tax_included' => :'String',
|
|
94
|
+
:'tax_applied_after_discount' => :'String',
|
|
95
|
+
:'tax_applied_level' => :'String',
|
|
96
|
+
:'tax_type_code' => :'String',
|
|
97
|
+
:'freight_amount' => :'String',
|
|
98
|
+
:'foreign_amount' => :'String',
|
|
99
|
+
:'foreign_currency' => :'String',
|
|
100
|
+
:'exchange_rate' => :'String',
|
|
101
|
+
:'exchange_rate_time_stamp' => :'String',
|
|
102
|
+
:'amex_additional_amounts' => :'Array<V2paymentsOrderInformationAmountDetailsAmexAdditionalAmounts>',
|
|
103
|
+
:'tax_details' => :'Array<V2paymentsOrderInformationAmountDetailsTaxDetails>'
|
|
104
|
+
}
|
|
105
|
+
end
|
|
106
|
+
|
|
107
|
+
# Initializes the object
|
|
108
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
109
|
+
def initialize(attributes = {})
|
|
110
|
+
return unless attributes.is_a?(Hash)
|
|
111
|
+
|
|
112
|
+
# convert string to symbol for hash key
|
|
113
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
|
114
|
+
|
|
115
|
+
if attributes.has_key?(:'totalAmount')
|
|
116
|
+
self.total_amount = attributes[:'totalAmount']
|
|
117
|
+
end
|
|
118
|
+
|
|
119
|
+
if attributes.has_key?(:'currency')
|
|
120
|
+
self.currency = attributes[:'currency']
|
|
121
|
+
end
|
|
122
|
+
|
|
123
|
+
if attributes.has_key?(:'discountAmount')
|
|
124
|
+
self.discount_amount = attributes[:'discountAmount']
|
|
125
|
+
end
|
|
126
|
+
|
|
127
|
+
if attributes.has_key?(:'dutyAmount')
|
|
128
|
+
self.duty_amount = attributes[:'dutyAmount']
|
|
129
|
+
end
|
|
130
|
+
|
|
131
|
+
if attributes.has_key?(:'taxAmount')
|
|
132
|
+
self.tax_amount = attributes[:'taxAmount']
|
|
133
|
+
end
|
|
134
|
+
|
|
135
|
+
if attributes.has_key?(:'nationalTaxIncluded')
|
|
136
|
+
self.national_tax_included = attributes[:'nationalTaxIncluded']
|
|
137
|
+
end
|
|
138
|
+
|
|
139
|
+
if attributes.has_key?(:'taxAppliedAfterDiscount')
|
|
140
|
+
self.tax_applied_after_discount = attributes[:'taxAppliedAfterDiscount']
|
|
141
|
+
end
|
|
142
|
+
|
|
143
|
+
if attributes.has_key?(:'taxAppliedLevel')
|
|
144
|
+
self.tax_applied_level = attributes[:'taxAppliedLevel']
|
|
145
|
+
end
|
|
146
|
+
|
|
147
|
+
if attributes.has_key?(:'taxTypeCode')
|
|
148
|
+
self.tax_type_code = attributes[:'taxTypeCode']
|
|
149
|
+
end
|
|
150
|
+
|
|
151
|
+
if attributes.has_key?(:'freightAmount')
|
|
152
|
+
self.freight_amount = attributes[:'freightAmount']
|
|
153
|
+
end
|
|
154
|
+
|
|
155
|
+
if attributes.has_key?(:'foreignAmount')
|
|
156
|
+
self.foreign_amount = attributes[:'foreignAmount']
|
|
157
|
+
end
|
|
158
|
+
|
|
159
|
+
if attributes.has_key?(:'foreignCurrency')
|
|
160
|
+
self.foreign_currency = attributes[:'foreignCurrency']
|
|
161
|
+
end
|
|
162
|
+
|
|
163
|
+
if attributes.has_key?(:'exchangeRate')
|
|
164
|
+
self.exchange_rate = attributes[:'exchangeRate']
|
|
165
|
+
end
|
|
166
|
+
|
|
167
|
+
if attributes.has_key?(:'exchangeRateTimeStamp')
|
|
168
|
+
self.exchange_rate_time_stamp = attributes[:'exchangeRateTimeStamp']
|
|
169
|
+
end
|
|
170
|
+
|
|
171
|
+
if attributes.has_key?(:'amexAdditionalAmounts')
|
|
172
|
+
if (value = attributes[:'amexAdditionalAmounts']).is_a?(Array)
|
|
173
|
+
self.amex_additional_amounts = value
|
|
174
|
+
end
|
|
175
|
+
end
|
|
176
|
+
|
|
177
|
+
if attributes.has_key?(:'taxDetails')
|
|
178
|
+
if (value = attributes[:'taxDetails']).is_a?(Array)
|
|
179
|
+
self.tax_details = value
|
|
180
|
+
end
|
|
181
|
+
end
|
|
182
|
+
end
|
|
183
|
+
|
|
184
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
|
185
|
+
# @return Array for valid properties with the reasons
|
|
186
|
+
def list_invalid_properties
|
|
187
|
+
invalid_properties = Array.new
|
|
188
|
+
if !@total_amount.nil? && @total_amount.to_s.length > 19
|
|
189
|
+
invalid_properties.push('invalid value for "total_amount", the character length must be smaller than or equal to 19.')
|
|
190
|
+
end
|
|
191
|
+
|
|
192
|
+
if !@currency.nil? && @currency.to_s.length > 3
|
|
193
|
+
invalid_properties.push('invalid value for "currency", the character length must be smaller than or equal to 3.')
|
|
194
|
+
end
|
|
195
|
+
|
|
196
|
+
if !@discount_amount.nil? && @discount_amount.to_s.length > 15
|
|
197
|
+
invalid_properties.push('invalid value for "discount_amount", the character length must be smaller than or equal to 15.')
|
|
198
|
+
end
|
|
199
|
+
|
|
200
|
+
if !@duty_amount.nil? && @duty_amount.to_s.length > 15
|
|
201
|
+
invalid_properties.push('invalid value for "duty_amount", the character length must be smaller than or equal to 15.')
|
|
202
|
+
end
|
|
203
|
+
|
|
204
|
+
if !@tax_amount.nil? && @tax_amount.to_s.length > 12
|
|
205
|
+
invalid_properties.push('invalid value for "tax_amount", the character length must be smaller than or equal to 12.')
|
|
206
|
+
end
|
|
207
|
+
|
|
208
|
+
if !@national_tax_included.nil? && @national_tax_included.to_s.length > 1
|
|
209
|
+
invalid_properties.push('invalid value for "national_tax_included", the character length must be smaller than or equal to 1.')
|
|
210
|
+
end
|
|
211
|
+
|
|
212
|
+
if !@tax_applied_after_discount.nil? && @tax_applied_after_discount.to_s.length > 1
|
|
213
|
+
invalid_properties.push('invalid value for "tax_applied_after_discount", the character length must be smaller than or equal to 1.')
|
|
214
|
+
end
|
|
215
|
+
|
|
216
|
+
if !@tax_applied_level.nil? && @tax_applied_level.to_s.length > 1
|
|
217
|
+
invalid_properties.push('invalid value for "tax_applied_level", the character length must be smaller than or equal to 1.')
|
|
218
|
+
end
|
|
219
|
+
|
|
220
|
+
if !@tax_type_code.nil? && @tax_type_code.to_s.length > 3
|
|
221
|
+
invalid_properties.push('invalid value for "tax_type_code", the character length must be smaller than or equal to 3.')
|
|
222
|
+
end
|
|
223
|
+
|
|
224
|
+
if !@freight_amount.nil? && @freight_amount.to_s.length > 13
|
|
225
|
+
invalid_properties.push('invalid value for "freight_amount", the character length must be smaller than or equal to 13.')
|
|
226
|
+
end
|
|
227
|
+
|
|
228
|
+
if !@foreign_amount.nil? && @foreign_amount.to_s.length > 15
|
|
229
|
+
invalid_properties.push('invalid value for "foreign_amount", the character length must be smaller than or equal to 15.')
|
|
230
|
+
end
|
|
231
|
+
|
|
232
|
+
if !@foreign_currency.nil? && @foreign_currency.to_s.length > 5
|
|
233
|
+
invalid_properties.push('invalid value for "foreign_currency", the character length must be smaller than or equal to 5.')
|
|
234
|
+
end
|
|
235
|
+
|
|
236
|
+
if !@exchange_rate.nil? && @exchange_rate.to_s.length > 13
|
|
237
|
+
invalid_properties.push('invalid value for "exchange_rate", the character length must be smaller than or equal to 13.')
|
|
238
|
+
end
|
|
239
|
+
|
|
240
|
+
if !@exchange_rate_time_stamp.nil? && @exchange_rate_time_stamp.to_s.length > 14
|
|
241
|
+
invalid_properties.push('invalid value for "exchange_rate_time_stamp", the character length must be smaller than or equal to 14.')
|
|
242
|
+
end
|
|
243
|
+
|
|
244
|
+
invalid_properties
|
|
245
|
+
end
|
|
246
|
+
|
|
247
|
+
# Check to see if the all the properties in the model are valid
|
|
248
|
+
# @return true if the model is valid
|
|
249
|
+
def valid?
|
|
250
|
+
return false if !@total_amount.nil? && @total_amount.to_s.length > 19
|
|
251
|
+
return false if !@currency.nil? && @currency.to_s.length > 3
|
|
252
|
+
return false if !@discount_amount.nil? && @discount_amount.to_s.length > 15
|
|
253
|
+
return false if !@duty_amount.nil? && @duty_amount.to_s.length > 15
|
|
254
|
+
return false if !@tax_amount.nil? && @tax_amount.to_s.length > 12
|
|
255
|
+
return false if !@national_tax_included.nil? && @national_tax_included.to_s.length > 1
|
|
256
|
+
return false if !@tax_applied_after_discount.nil? && @tax_applied_after_discount.to_s.length > 1
|
|
257
|
+
return false if !@tax_applied_level.nil? && @tax_applied_level.to_s.length > 1
|
|
258
|
+
return false if !@tax_type_code.nil? && @tax_type_code.to_s.length > 3
|
|
259
|
+
return false if !@freight_amount.nil? && @freight_amount.to_s.length > 13
|
|
260
|
+
return false if !@foreign_amount.nil? && @foreign_amount.to_s.length > 15
|
|
261
|
+
return false if !@foreign_currency.nil? && @foreign_currency.to_s.length > 5
|
|
262
|
+
return false if !@exchange_rate.nil? && @exchange_rate.to_s.length > 13
|
|
263
|
+
return false if !@exchange_rate_time_stamp.nil? && @exchange_rate_time_stamp.to_s.length > 14
|
|
264
|
+
true
|
|
265
|
+
end
|
|
266
|
+
|
|
267
|
+
# Custom attribute writer method with validation
|
|
268
|
+
# @param [Object] total_amount Value to be assigned
|
|
269
|
+
def total_amount=(total_amount)
|
|
270
|
+
if !total_amount.nil? && total_amount.to_s.length > 19
|
|
271
|
+
fail ArgumentError, 'invalid value for "total_amount", the character length must be smaller than or equal to 19.'
|
|
272
|
+
end
|
|
273
|
+
|
|
274
|
+
@total_amount = total_amount
|
|
275
|
+
end
|
|
276
|
+
|
|
277
|
+
# Custom attribute writer method with validation
|
|
278
|
+
# @param [Object] currency Value to be assigned
|
|
279
|
+
def currency=(currency)
|
|
280
|
+
if !currency.nil? && currency.to_s.length > 3
|
|
281
|
+
fail ArgumentError, 'invalid value for "currency", the character length must be smaller than or equal to 3.'
|
|
282
|
+
end
|
|
283
|
+
|
|
284
|
+
@currency = currency
|
|
285
|
+
end
|
|
286
|
+
|
|
287
|
+
# Custom attribute writer method with validation
|
|
288
|
+
# @param [Object] discount_amount Value to be assigned
|
|
289
|
+
def discount_amount=(discount_amount)
|
|
290
|
+
if !discount_amount.nil? && discount_amount.to_s.length > 15
|
|
291
|
+
fail ArgumentError, 'invalid value for "discount_amount", the character length must be smaller than or equal to 15.'
|
|
292
|
+
end
|
|
293
|
+
|
|
294
|
+
@discount_amount = discount_amount
|
|
295
|
+
end
|
|
296
|
+
|
|
297
|
+
# Custom attribute writer method with validation
|
|
298
|
+
# @param [Object] duty_amount Value to be assigned
|
|
299
|
+
def duty_amount=(duty_amount)
|
|
300
|
+
if !duty_amount.nil? && duty_amount.to_s.length > 15
|
|
301
|
+
fail ArgumentError, 'invalid value for "duty_amount", the character length must be smaller than or equal to 15.'
|
|
302
|
+
end
|
|
303
|
+
|
|
304
|
+
@duty_amount = duty_amount
|
|
305
|
+
end
|
|
306
|
+
|
|
307
|
+
# Custom attribute writer method with validation
|
|
308
|
+
# @param [Object] tax_amount Value to be assigned
|
|
309
|
+
def tax_amount=(tax_amount)
|
|
310
|
+
if !tax_amount.nil? && tax_amount.to_s.length > 12
|
|
311
|
+
fail ArgumentError, 'invalid value for "tax_amount", the character length must be smaller than or equal to 12.'
|
|
312
|
+
end
|
|
313
|
+
|
|
314
|
+
@tax_amount = tax_amount
|
|
315
|
+
end
|
|
316
|
+
|
|
317
|
+
# Custom attribute writer method with validation
|
|
318
|
+
# @param [Object] national_tax_included Value to be assigned
|
|
319
|
+
def national_tax_included=(national_tax_included)
|
|
320
|
+
if !national_tax_included.nil? && national_tax_included.to_s.length > 1
|
|
321
|
+
fail ArgumentError, 'invalid value for "national_tax_included", the character length must be smaller than or equal to 1.'
|
|
322
|
+
end
|
|
323
|
+
|
|
324
|
+
@national_tax_included = national_tax_included
|
|
325
|
+
end
|
|
326
|
+
|
|
327
|
+
# Custom attribute writer method with validation
|
|
328
|
+
# @param [Object] tax_applied_after_discount Value to be assigned
|
|
329
|
+
def tax_applied_after_discount=(tax_applied_after_discount)
|
|
330
|
+
if !tax_applied_after_discount.nil? && tax_applied_after_discount.to_s.length > 1
|
|
331
|
+
fail ArgumentError, 'invalid value for "tax_applied_after_discount", the character length must be smaller than or equal to 1.'
|
|
332
|
+
end
|
|
333
|
+
|
|
334
|
+
@tax_applied_after_discount = tax_applied_after_discount
|
|
335
|
+
end
|
|
336
|
+
|
|
337
|
+
# Custom attribute writer method with validation
|
|
338
|
+
# @param [Object] tax_applied_level Value to be assigned
|
|
339
|
+
def tax_applied_level=(tax_applied_level)
|
|
340
|
+
if !tax_applied_level.nil? && tax_applied_level.to_s.length > 1
|
|
341
|
+
fail ArgumentError, 'invalid value for "tax_applied_level", the character length must be smaller than or equal to 1.'
|
|
342
|
+
end
|
|
343
|
+
|
|
344
|
+
@tax_applied_level = tax_applied_level
|
|
345
|
+
end
|
|
346
|
+
|
|
347
|
+
# Custom attribute writer method with validation
|
|
348
|
+
# @param [Object] tax_type_code Value to be assigned
|
|
349
|
+
def tax_type_code=(tax_type_code)
|
|
350
|
+
if !tax_type_code.nil? && tax_type_code.to_s.length > 3
|
|
351
|
+
fail ArgumentError, 'invalid value for "tax_type_code", the character length must be smaller than or equal to 3.'
|
|
352
|
+
end
|
|
353
|
+
|
|
354
|
+
@tax_type_code = tax_type_code
|
|
355
|
+
end
|
|
356
|
+
|
|
357
|
+
# Custom attribute writer method with validation
|
|
358
|
+
# @param [Object] freight_amount Value to be assigned
|
|
359
|
+
def freight_amount=(freight_amount)
|
|
360
|
+
if !freight_amount.nil? && freight_amount.to_s.length > 13
|
|
361
|
+
fail ArgumentError, 'invalid value for "freight_amount", the character length must be smaller than or equal to 13.'
|
|
362
|
+
end
|
|
363
|
+
|
|
364
|
+
@freight_amount = freight_amount
|
|
365
|
+
end
|
|
366
|
+
|
|
367
|
+
# Custom attribute writer method with validation
|
|
368
|
+
# @param [Object] foreign_amount Value to be assigned
|
|
369
|
+
def foreign_amount=(foreign_amount)
|
|
370
|
+
if !foreign_amount.nil? && foreign_amount.to_s.length > 15
|
|
371
|
+
fail ArgumentError, 'invalid value for "foreign_amount", the character length must be smaller than or equal to 15.'
|
|
372
|
+
end
|
|
373
|
+
|
|
374
|
+
@foreign_amount = foreign_amount
|
|
375
|
+
end
|
|
376
|
+
|
|
377
|
+
# Custom attribute writer method with validation
|
|
378
|
+
# @param [Object] foreign_currency Value to be assigned
|
|
379
|
+
def foreign_currency=(foreign_currency)
|
|
380
|
+
if !foreign_currency.nil? && foreign_currency.to_s.length > 5
|
|
381
|
+
fail ArgumentError, 'invalid value for "foreign_currency", the character length must be smaller than or equal to 5.'
|
|
382
|
+
end
|
|
383
|
+
|
|
384
|
+
@foreign_currency = foreign_currency
|
|
385
|
+
end
|
|
386
|
+
|
|
387
|
+
# Custom attribute writer method with validation
|
|
388
|
+
# @param [Object] exchange_rate Value to be assigned
|
|
389
|
+
def exchange_rate=(exchange_rate)
|
|
390
|
+
if !exchange_rate.nil? && exchange_rate.to_s.length > 13
|
|
391
|
+
fail ArgumentError, 'invalid value for "exchange_rate", the character length must be smaller than or equal to 13.'
|
|
392
|
+
end
|
|
393
|
+
|
|
394
|
+
@exchange_rate = exchange_rate
|
|
395
|
+
end
|
|
396
|
+
|
|
397
|
+
# Custom attribute writer method with validation
|
|
398
|
+
# @param [Object] exchange_rate_time_stamp Value to be assigned
|
|
399
|
+
def exchange_rate_time_stamp=(exchange_rate_time_stamp)
|
|
400
|
+
if !exchange_rate_time_stamp.nil? && exchange_rate_time_stamp.to_s.length > 14
|
|
401
|
+
fail ArgumentError, 'invalid value for "exchange_rate_time_stamp", the character length must be smaller than or equal to 14.'
|
|
402
|
+
end
|
|
403
|
+
|
|
404
|
+
@exchange_rate_time_stamp = exchange_rate_time_stamp
|
|
405
|
+
end
|
|
406
|
+
|
|
407
|
+
# Checks equality by comparing each attribute.
|
|
408
|
+
# @param [Object] Object to be compared
|
|
409
|
+
def ==(o)
|
|
410
|
+
return true if self.equal?(o)
|
|
411
|
+
self.class == o.class &&
|
|
412
|
+
total_amount == o.total_amount &&
|
|
413
|
+
currency == o.currency &&
|
|
414
|
+
discount_amount == o.discount_amount &&
|
|
415
|
+
duty_amount == o.duty_amount &&
|
|
416
|
+
tax_amount == o.tax_amount &&
|
|
417
|
+
national_tax_included == o.national_tax_included &&
|
|
418
|
+
tax_applied_after_discount == o.tax_applied_after_discount &&
|
|
419
|
+
tax_applied_level == o.tax_applied_level &&
|
|
420
|
+
tax_type_code == o.tax_type_code &&
|
|
421
|
+
freight_amount == o.freight_amount &&
|
|
422
|
+
foreign_amount == o.foreign_amount &&
|
|
423
|
+
foreign_currency == o.foreign_currency &&
|
|
424
|
+
exchange_rate == o.exchange_rate &&
|
|
425
|
+
exchange_rate_time_stamp == o.exchange_rate_time_stamp &&
|
|
426
|
+
amex_additional_amounts == o.amex_additional_amounts &&
|
|
427
|
+
tax_details == o.tax_details
|
|
428
|
+
end
|
|
429
|
+
|
|
430
|
+
# @see the `==` method
|
|
431
|
+
# @param [Object] Object to be compared
|
|
432
|
+
def eql?(o)
|
|
433
|
+
self == o
|
|
434
|
+
end
|
|
435
|
+
|
|
436
|
+
# Calculates hash code according to all attributes.
|
|
437
|
+
# @return [Fixnum] Hash code
|
|
438
|
+
def hash
|
|
439
|
+
[total_amount, currency, discount_amount, duty_amount, tax_amount, national_tax_included, tax_applied_after_discount, tax_applied_level, tax_type_code, freight_amount, foreign_amount, foreign_currency, exchange_rate, exchange_rate_time_stamp, amex_additional_amounts, tax_details].hash
|
|
440
|
+
end
|
|
441
|
+
|
|
442
|
+
# Builds the object from hash
|
|
443
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
444
|
+
# @return [Object] Returns the model itself
|
|
445
|
+
def build_from_hash(attributes)
|
|
446
|
+
return nil unless attributes.is_a?(Hash)
|
|
447
|
+
self.class.swagger_types.each_pair do |key, type|
|
|
448
|
+
if type =~ /\AArray<(.*)>/i
|
|
449
|
+
# check to ensure the input is an array given that the the attribute
|
|
450
|
+
# is documented as an array but the input is not
|
|
451
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
452
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
|
453
|
+
end
|
|
454
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
455
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
456
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
|
457
|
+
end
|
|
458
|
+
|
|
459
|
+
self
|
|
460
|
+
end
|
|
461
|
+
|
|
462
|
+
# Deserializes the data based on type
|
|
463
|
+
# @param string type Data type
|
|
464
|
+
# @param string value Value to be deserialized
|
|
465
|
+
# @return [Object] Deserialized data
|
|
466
|
+
def _deserialize(type, value)
|
|
467
|
+
case type.to_sym
|
|
468
|
+
when :DateTime
|
|
469
|
+
DateTime.parse(value)
|
|
470
|
+
when :Date
|
|
471
|
+
Date.parse(value)
|
|
472
|
+
when :String
|
|
473
|
+
value.to_s
|
|
474
|
+
when :Integer
|
|
475
|
+
value.to_i
|
|
476
|
+
when :Float
|
|
477
|
+
value.to_f
|
|
478
|
+
when :BOOLEAN
|
|
479
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
|
480
|
+
true
|
|
481
|
+
else
|
|
482
|
+
false
|
|
483
|
+
end
|
|
484
|
+
when :Object
|
|
485
|
+
# generic object (usually a Hash), return directly
|
|
486
|
+
value
|
|
487
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
|
488
|
+
inner_type = Regexp.last_match[:inner_type]
|
|
489
|
+
value.map { |v| _deserialize(inner_type, v) }
|
|
490
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
|
491
|
+
k_type = Regexp.last_match[:k_type]
|
|
492
|
+
v_type = Regexp.last_match[:v_type]
|
|
493
|
+
{}.tap do |hash|
|
|
494
|
+
value.each do |k, v|
|
|
495
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
|
496
|
+
end
|
|
497
|
+
end
|
|
498
|
+
else # model
|
|
499
|
+
temp_model = CyberSource.const_get(type).new
|
|
500
|
+
temp_model.build_from_hash(value)
|
|
501
|
+
end
|
|
502
|
+
end
|
|
503
|
+
|
|
504
|
+
# Returns the string representation of the object
|
|
505
|
+
# @return [String] String presentation of the object
|
|
506
|
+
def to_s
|
|
507
|
+
to_hash.to_s
|
|
508
|
+
end
|
|
509
|
+
|
|
510
|
+
# to_body is an alias to to_hash (backward compatibility)
|
|
511
|
+
# @return [Hash] Returns the object in the form of hash
|
|
512
|
+
def to_body
|
|
513
|
+
to_hash
|
|
514
|
+
end
|
|
515
|
+
|
|
516
|
+
# Returns the object in the form of hash
|
|
517
|
+
# @return [Hash] Returns the object in the form of hash
|
|
518
|
+
def to_hash
|
|
519
|
+
hash = {}
|
|
520
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
521
|
+
value = self.send(attr)
|
|
522
|
+
next if value.nil?
|
|
523
|
+
hash[param] = _to_hash(value)
|
|
524
|
+
end
|
|
525
|
+
hash
|
|
526
|
+
end
|
|
527
|
+
|
|
528
|
+
# Outputs non-array value in the form of hash
|
|
529
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
530
|
+
# @param [Object] value Any valid value
|
|
531
|
+
# @return [Hash] Returns the value in the form of hash
|
|
532
|
+
def _to_hash(value)
|
|
533
|
+
if value.is_a?(Array)
|
|
534
|
+
value.compact.map { |v| _to_hash(v) }
|
|
535
|
+
elsif value.is_a?(Hash)
|
|
536
|
+
{}.tap do |hash|
|
|
537
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
538
|
+
end
|
|
539
|
+
elsif value.respond_to? :to_hash
|
|
540
|
+
value.to_hash
|
|
541
|
+
else
|
|
542
|
+
value
|
|
543
|
+
end
|
|
544
|
+
end
|
|
545
|
+
end
|
|
546
|
+
end
|