fdx-apimatic-sdk 0.0.1
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/LICENSE +28 -0
- data/README.md +205 -0
- data/bin/console +15 -0
- data/lib/fdx_v660_api/api_helper.rb +10 -0
- data/lib/fdx_v660_api/client.rb +241 -0
- data/lib/fdx_v660_api/configuration.rb +203 -0
- data/lib/fdx_v660_api/controllers/account_information_controller.rb +181 -0
- data/lib/fdx_v660_api/controllers/account_statements_controller.rb +208 -0
- data/lib/fdx_v660_api/controllers/account_transactions_controller.rb +312 -0
- data/lib/fdx_v660_api/controllers/base_controller.rb +65 -0
- data/lib/fdx_v660_api/controllers/data_providers_controller.rb +88 -0
- data/lib/fdx_v660_api/controllers/event_notifications_controller.rb +320 -0
- data/lib/fdx_v660_api/controllers/fraud_notification_controller.rb +48 -0
- data/lib/fdx_v660_api/controllers/internal_transfers_controller.rb +326 -0
- data/lib/fdx_v660_api/controllers/meta_controller.rb +131 -0
- data/lib/fdx_v660_api/controllers/money_movement_controller.rb +347 -0
- data/lib/fdx_v660_api/controllers/oauth_authorization_controller.rb +122 -0
- data/lib/fdx_v660_api/controllers/pay_stub_information_controller.rb +182 -0
- data/lib/fdx_v660_api/controllers/payee_management_controller.rb +313 -0
- data/lib/fdx_v660_api/controllers/payment_initiation_parties_controller.rb +535 -0
- data/lib/fdx_v660_api/controllers/payments_controller.rb +336 -0
- data/lib/fdx_v660_api/controllers/payroll_information_controller.rb +145 -0
- data/lib/fdx_v660_api/controllers/personal_information_controller.rb +217 -0
- data/lib/fdx_v660_api/controllers/recipients_controller.rb +251 -0
- data/lib/fdx_v660_api/controllers/recurring_payments_controller.rb +411 -0
- data/lib/fdx_v660_api/controllers/request_for_payments_controller.rb +179 -0
- data/lib/fdx_v660_api/controllers/reward_program_categories_controller.rb +80 -0
- data/lib/fdx_v660_api/controllers/reward_program_information_controller.rb +114 -0
- data/lib/fdx_v660_api/controllers/submit_tax_forms_controller.rb +128 -0
- data/lib/fdx_v660_api/controllers/tax_forms_controller.rb +212 -0
- data/lib/fdx_v660_api/controllers/terms_and_conditions_controller.rb +85 -0
- data/lib/fdx_v660_api/controllers/user_consent_controller.rb +235 -0
- data/lib/fdx_v660_api/exceptions/api_exception.rb +21 -0
- data/lib/fdx_v660_api/exceptions/error_exception.rb +65 -0
- data/lib/fdx_v660_api/exceptions/oauth_provider_exception.rb +64 -0
- data/lib/fdx_v660_api/exceptions/payee_entity_error_exception.rb +48 -0
- data/lib/fdx_v660_api/exceptions/payment_entity_error_exception.rb +167 -0
- data/lib/fdx_v660_api/exceptions/recurring_payment_entity_error_exception.rb +147 -0
- data/lib/fdx_v660_api/http/api_response.rb +19 -0
- data/lib/fdx_v660_api/http/auth/oauth_fapi1_advanced.rb +162 -0
- data/lib/fdx_v660_api/http/auth/oauth_fapi1_baseline.rb +156 -0
- data/lib/fdx_v660_api/http/auth/tax_basic_auth.rb +62 -0
- data/lib/fdx_v660_api/http/http_call_back.rb +10 -0
- data/lib/fdx_v660_api/http/http_method_enum.rb +10 -0
- data/lib/fdx_v660_api/http/http_request.rb +10 -0
- data/lib/fdx_v660_api/http/http_response.rb +10 -0
- data/lib/fdx_v660_api/http/proxy_settings.rb +22 -0
- data/lib/fdx_v660_api/logging/configuration/api_logging_configuration.rb +186 -0
- data/lib/fdx_v660_api/logging/sdk_logger.rb +17 -0
- data/lib/fdx_v660_api/models/account_bill_pay_status.rb +47 -0
- data/lib/fdx_v660_api/models/account_bill_pay_status2.rb +44 -0
- data/lib/fdx_v660_api/models/account_category.rb +26 -0
- data/lib/fdx_v660_api/models/account_category1.rb +26 -0
- data/lib/fdx_v660_api/models/account_category10.rb +26 -0
- data/lib/fdx_v660_api/models/account_category11.rb +27 -0
- data/lib/fdx_v660_api/models/account_category12.rb +26 -0
- data/lib/fdx_v660_api/models/account_category13.rb +26 -0
- data/lib/fdx_v660_api/models/account_category14.rb +26 -0
- data/lib/fdx_v660_api/models/account_category15.rb +27 -0
- data/lib/fdx_v660_api/models/account_category2.rb +26 -0
- data/lib/fdx_v660_api/models/account_category3.rb +27 -0
- data/lib/fdx_v660_api/models/account_category4.rb +26 -0
- data/lib/fdx_v660_api/models/account_category5.rb +27 -0
- data/lib/fdx_v660_api/models/account_category6.rb +26 -0
- data/lib/fdx_v660_api/models/account_category7.rb +27 -0
- data/lib/fdx_v660_api/models/account_category8.rb +26 -0
- data/lib/fdx_v660_api/models/account_category9.rb +27 -0
- data/lib/fdx_v660_api/models/account_category_deposit_type.rb +52 -0
- data/lib/fdx_v660_api/models/account_category_deposit_type2.rb +52 -0
- data/lib/fdx_v660_api/models/account_category_line_of_credit_type.rb +40 -0
- data/lib/fdx_v660_api/models/account_category_line_of_credit_type2.rb +40 -0
- data/lib/fdx_v660_api/models/account_category_type.rb +64 -0
- data/lib/fdx_v660_api/models/account_category_type2.rb +64 -0
- data/lib/fdx_v660_api/models/account_contact_entity.rb +142 -0
- data/lib/fdx_v660_api/models/account_contact_entity1.rb +133 -0
- data/lib/fdx_v660_api/models/account_descriptor_entity.rb +350 -0
- data/lib/fdx_v660_api/models/account_entity.rb +467 -0
- data/lib/fdx_v660_api/models/account_holder_entity.rb +264 -0
- data/lib/fdx_v660_api/models/account_holder_relationship.rb +135 -0
- data/lib/fdx_v660_api/models/account_holder_relationship1.rb +122 -0
- data/lib/fdx_v660_api/models/account_holder_relationship3.rb +122 -0
- data/lib/fdx_v660_api/models/account_payment_network.rb +228 -0
- data/lib/fdx_v660_api/models/account_payment_network_status.rb +40 -0
- data/lib/fdx_v660_api/models/account_payment_network_status2.rb +41 -0
- data/lib/fdx_v660_api/models/account_payment_networks.rb +111 -0
- data/lib/fdx_v660_api/models/account_payment_networks1.rb +109 -0
- data/lib/fdx_v660_api/models/account_selection_filters.rb +131 -0
- data/lib/fdx_v660_api/models/account_selection_filters1.rb +129 -0
- data/lib/fdx_v660_api/models/account_status.rb +60 -0
- data/lib/fdx_v660_api/models/account_status1.rb +61 -0
- data/lib/fdx_v660_api/models/account_status3.rb +61 -0
- data/lib/fdx_v660_api/models/account_type.rb +506 -0
- data/lib/fdx_v660_api/models/account_type1.rb +341 -0
- data/lib/fdx_v660_api/models/account_type3.rb +341 -0
- data/lib/fdx_v660_api/models/account_type4.rb +343 -0
- data/lib/fdx_v660_api/models/accounts_entity.rb +109 -0
- data/lib/fdx_v660_api/models/active_inactive_status.rb +36 -0
- data/lib/fdx_v660_api/models/active_inactive_status2.rb +36 -0
- data/lib/fdx_v660_api/models/address.rb +152 -0
- data/lib/fdx_v660_api/models/an_array_of_statements.rb +105 -0
- data/lib/fdx_v660_api/models/annual_payment_amounts.rb +92 -0
- data/lib/fdx_v660_api/models/annual_payment_amounts1.rb +92 -0
- data/lib/fdx_v660_api/models/annuity_account_entity.rb +409 -0
- data/lib/fdx_v660_api/models/annuity_details_entity.rb +206 -0
- data/lib/fdx_v660_api/models/annuity_security_entity.rb +234 -0
- data/lib/fdx_v660_api/models/asset_class.rb +56 -0
- data/lib/fdx_v660_api/models/asset_class2.rb +56 -0
- data/lib/fdx_v660_api/models/asset_transfer_network.rb +134 -0
- data/lib/fdx_v660_api/models/asset_transfer_network_list.rb +85 -0
- data/lib/fdx_v660_api/models/asset_transfer_network_list1.rb +86 -0
- data/lib/fdx_v660_api/models/asset_transfer_type.rb +40 -0
- data/lib/fdx_v660_api/models/asset_transfer_type2.rb +40 -0
- data/lib/fdx_v660_api/models/availability_entity.rb +115 -0
- data/lib/fdx_v660_api/models/availability_entity1.rb +115 -0
- data/lib/fdx_v660_api/models/availability_list_entity.rb +85 -0
- data/lib/fdx_v660_api/models/availability_status.rb +44 -0
- data/lib/fdx_v660_api/models/availability_status1.rb +44 -0
- data/lib/fdx_v660_api/models/availability_status3.rb +44 -0
- data/lib/fdx_v660_api/models/balance_transfer_and_cash_advance_type.rb +53 -0
- data/lib/fdx_v660_api/models/balance_transfer_and_cash_advance_type2.rb +49 -0
- data/lib/fdx_v660_api/models/balance_transfer_or_cash_advance.rb +120 -0
- data/lib/fdx_v660_api/models/balance_type.rb +38 -0
- data/lib/fdx_v660_api/models/balance_type2.rb +37 -0
- data/lib/fdx_v660_api/models/bank_id_type.rb +49 -0
- data/lib/fdx_v660_api/models/bank_id_type2.rb +42 -0
- data/lib/fdx_v660_api/models/base_deposit_account_terms_and_conditions.rb +160 -0
- data/lib/fdx_v660_api/models/base_line_of_credit_account_terms_and_conditions.rb +161 -0
- data/lib/fdx_v660_api/models/base_model.rb +110 -0
- data/lib/fdx_v660_api/models/base_payroll_rate.rb +84 -0
- data/lib/fdx_v660_api/models/base_payroll_rate1.rb +84 -0
- data/lib/fdx_v660_api/models/base_terms_and_conditions.rb +115 -0
- data/lib/fdx_v660_api/models/basic_auth_credentials.rb +105 -0
- data/lib/fdx_v660_api/models/basic_auth_credentials1.rb +105 -0
- data/lib/fdx_v660_api/models/basic_auth_for_qr.rb +96 -0
- data/lib/fdx_v660_api/models/bill_entity.rb +206 -0
- data/lib/fdx_v660_api/models/bond_security_entity.rb +148 -0
- data/lib/fdx_v660_api/models/branch_entity.rb +116 -0
- data/lib/fdx_v660_api/models/branch_entity1.rb +126 -0
- data/lib/fdx_v660_api/models/business_customer_entity.rb +129 -0
- data/lib/fdx_v660_api/models/business_customer_entity2.rb +136 -0
- data/lib/fdx_v660_api/models/business_income_statement.rb +617 -0
- data/lib/fdx_v660_api/models/business_name.rb +85 -0
- data/lib/fdx_v660_api/models/business_name2.rb +85 -0
- data/lib/fdx_v660_api/models/business_name4.rb +85 -0
- data/lib/fdx_v660_api/models/business_name5.rb +96 -0
- data/lib/fdx_v660_api/models/business_or_consumer_type.rb +36 -0
- data/lib/fdx_v660_api/models/business_or_consumer_type1.rb +36 -0
- data/lib/fdx_v660_api/models/business_or_consumer_type3.rb +36 -0
- data/lib/fdx_v660_api/models/buy_now_pay_later_account_entity.rb +351 -0
- data/lib/fdx_v660_api/models/buy_now_pay_later_purchase_details.rb +209 -0
- data/lib/fdx_v660_api/models/buy_now_pay_later_purchase_details1.rb +219 -0
- data/lib/fdx_v660_api/models/buy_now_pay_later_transaction_entity.rb +314 -0
- data/lib/fdx_v660_api/models/buy_now_pay_later_transaction_type.rb +48 -0
- data/lib/fdx_v660_api/models/buy_now_pay_later_transaction_type2.rb +49 -0
- data/lib/fdx_v660_api/models/call_type.rb +44 -0
- data/lib/fdx_v660_api/models/call_type2.rb +44 -0
- data/lib/fdx_v660_api/models/capability_entity.rb +139 -0
- data/lib/fdx_v660_api/models/card_art_entity.rb +91 -0
- data/lib/fdx_v660_api/models/card_art_entity2.rb +101 -0
- data/lib/fdx_v660_api/models/cardinality_filter_type.rb +45 -0
- data/lib/fdx_v660_api/models/cardinality_filter_type2.rb +45 -0
- data/lib/fdx_v660_api/models/category_type.rb +37 -0
- data/lib/fdx_v660_api/models/category_type2.rb +37 -0
- data/lib/fdx_v660_api/models/certificate_of_deposit_security_entity.rb +116 -0
- data/lib/fdx_v660_api/models/certification_metric_entity.rb +172 -0
- data/lib/fdx_v660_api/models/certification_metrics_entity.rb +84 -0
- data/lib/fdx_v660_api/models/code_and_amount.rb +85 -0
- data/lib/fdx_v660_api/models/commercial_account_entity.rb +520 -0
- data/lib/fdx_v660_api/models/commercial_balance_entity.rb +106 -0
- data/lib/fdx_v660_api/models/commercial_code_entity.rb +91 -0
- data/lib/fdx_v660_api/models/commercial_code_entity1.rb +96 -0
- data/lib/fdx_v660_api/models/commercial_transaction_entity.rb +319 -0
- data/lib/fdx_v660_api/models/compounding_period.rb +56 -0
- data/lib/fdx_v660_api/models/compounding_period1.rb +56 -0
- data/lib/fdx_v660_api/models/compounding_period3.rb +57 -0
- data/lib/fdx_v660_api/models/consent_duration_type.rb +40 -0
- data/lib/fdx_v660_api/models/consent_duration_type2.rb +40 -0
- data/lib/fdx_v660_api/models/consent_grant_entity.rb +260 -0
- data/lib/fdx_v660_api/models/consent_grant_status.rb +40 -0
- data/lib/fdx_v660_api/models/consent_grant_status2.rb +40 -0
- data/lib/fdx_v660_api/models/consent_grants_entity.rb +85 -0
- data/lib/fdx_v660_api/models/consent_request_entity.rb +169 -0
- data/lib/fdx_v660_api/models/consent_resource_entity.rb +92 -0
- data/lib/fdx_v660_api/models/consent_resource_type.rb +41 -0
- data/lib/fdx_v660_api/models/consent_resource_type2.rb +40 -0
- data/lib/fdx_v660_api/models/consent_revocation_entity.rb +127 -0
- data/lib/fdx_v660_api/models/consent_revocations_entity.rb +85 -0
- data/lib/fdx_v660_api/models/contact_preferences_type.rb +48 -0
- data/lib/fdx_v660_api/models/contact_preferences_type2.rb +48 -0
- data/lib/fdx_v660_api/models/contacts_entity.rb +113 -0
- data/lib/fdx_v660_api/models/contacts_entity1.rb +113 -0
- data/lib/fdx_v660_api/models/content_types.rb +60 -0
- data/lib/fdx_v660_api/models/content_types1.rb +62 -0
- data/lib/fdx_v660_api/models/contribution_entity.rb +315 -0
- data/lib/fdx_v660_api/models/coupon_mature_frequency.rb +48 -0
- data/lib/fdx_v660_api/models/coupon_mature_frequency2.rb +48 -0
- data/lib/fdx_v660_api/models/coverage_month.rb +80 -0
- data/lib/fdx_v660_api/models/coverage_month1.rb +80 -0
- data/lib/fdx_v660_api/models/coverage_month3.rb +80 -0
- data/lib/fdx_v660_api/models/cryptocurrency_tax_statement_list.rb +240 -0
- data/lib/fdx_v660_api/models/cryptocurrency_tax_statement_list1.rb +240 -0
- data/lib/fdx_v660_api/models/currency_entity.rb +98 -0
- data/lib/fdx_v660_api/models/currency_entity1.rb +108 -0
- data/lib/fdx_v660_api/models/currency_entity2.rb +108 -0
- data/lib/fdx_v660_api/models/currency_entity4.rb +108 -0
- data/lib/fdx_v660_api/models/customer_entity.rb +242 -0
- data/lib/fdx_v660_api/models/customer_entity1.rb +243 -0
- data/lib/fdx_v660_api/models/customer_entity2.rb +243 -0
- data/lib/fdx_v660_api/models/customer_name_entity.rb +136 -0
- data/lib/fdx_v660_api/models/customer_name_entity2.rb +124 -0
- data/lib/fdx_v660_api/models/customer_name_entity3.rb +134 -0
- data/lib/fdx_v660_api/models/customer_to_account_relationship_entity.rb +114 -0
- data/lib/fdx_v660_api/models/customers_entity.rb +104 -0
- data/lib/fdx_v660_api/models/customers_entity1.rb +105 -0
- data/lib/fdx_v660_api/models/data_cluster.rb +108 -0
- data/lib/fdx_v660_api/models/data_provider_at_ecosystem_registry.rb +214 -0
- data/lib/fdx_v660_api/models/data_provider_records_at_ecosystem_registry.rb +105 -0
- data/lib/fdx_v660_api/models/date_and_amount.rb +95 -0
- data/lib/fdx_v660_api/models/debit_credit_memo.rb +40 -0
- data/lib/fdx_v660_api/models/debit_credit_memo2.rb +40 -0
- data/lib/fdx_v660_api/models/debt_class.rb +44 -0
- data/lib/fdx_v660_api/models/debt_class2.rb +44 -0
- data/lib/fdx_v660_api/models/debt_security_entity.rb +240 -0
- data/lib/fdx_v660_api/models/debt_type.rb +36 -0
- data/lib/fdx_v660_api/models/debt_type2.rb +36 -0
- data/lib/fdx_v660_api/models/delivery_address.rb +170 -0
- data/lib/fdx_v660_api/models/delivery_address1.rb +170 -0
- data/lib/fdx_v660_api/models/delivery_address2.rb +160 -0
- data/lib/fdx_v660_api/models/delivery_address_type.rb +44 -0
- data/lib/fdx_v660_api/models/delivery_address_type2.rb +44 -0
- data/lib/fdx_v660_api/models/delivery_address_type3.rb +44 -0
- data/lib/fdx_v660_api/models/deposit_account_entity.rb +479 -0
- data/lib/fdx_v660_api/models/deposit_account_terms_and_conditions_entity.rb +615 -0
- data/lib/fdx_v660_api/models/deposit_account_terms_and_conditions_entity1.rb +626 -0
- data/lib/fdx_v660_api/models/deposit_account_terms_and_conditions_entity3.rb +625 -0
- data/lib/fdx_v660_api/models/deposit_transaction_entity.rb +260 -0
- data/lib/fdx_v660_api/models/deposit_transaction_type.rb +102 -0
- data/lib/fdx_v660_api/models/deposit_transaction_type1.rb +101 -0
- data/lib/fdx_v660_api/models/deposit_transaction_type3.rb +104 -0
- data/lib/fdx_v660_api/models/description_and_amount.rb +85 -0
- data/lib/fdx_v660_api/models/digital_asset_detail_irs_form1099_da.rb +490 -0
- data/lib/fdx_v660_api/models/digital_asset_security_entity.rb +106 -0
- data/lib/fdx_v660_api/models/digital_wallet_account_entity.rb +381 -0
- data/lib/fdx_v660_api/models/digital_wallet_transaction_entity.rb +247 -0
- data/lib/fdx_v660_api/models/digital_wallet_transaction_type.rb +84 -0
- data/lib/fdx_v660_api/models/digital_wallet_transaction_type2.rb +86 -0
- data/lib/fdx_v660_api/models/direct_deposit.rb +100 -0
- data/lib/fdx_v660_api/models/direct_deposit2.rb +100 -0
- data/lib/fdx_v660_api/models/direct_deposit_entity.rb +98 -0
- data/lib/fdx_v660_api/models/document_status.rb +40 -0
- data/lib/fdx_v660_api/models/document_status2.rb +40 -0
- data/lib/fdx_v660_api/models/domicile_entity.rb +87 -0
- data/lib/fdx_v660_api/models/domicile_entity1.rb +97 -0
- data/lib/fdx_v660_api/models/domicile_entity3.rb +97 -0
- data/lib/fdx_v660_api/models/earning_component.rb +153 -0
- data/lib/fdx_v660_api/models/earning_type.rb +50 -0
- data/lib/fdx_v660_api/models/electronic_address_entity.rb +87 -0
- data/lib/fdx_v660_api/models/employee_entity.rb +176 -0
- data/lib/fdx_v660_api/models/employee_entity1.rb +176 -0
- data/lib/fdx_v660_api/models/employer_entity.rb +125 -0
- data/lib/fdx_v660_api/models/employer_entity1.rb +125 -0
- data/lib/fdx_v660_api/models/employment.rb +149 -0
- data/lib/fdx_v660_api/models/employment1.rb +149 -0
- data/lib/fdx_v660_api/models/employment_type.rb +53 -0
- data/lib/fdx_v660_api/models/employment_type2.rb +53 -0
- data/lib/fdx_v660_api/models/error2.rb +100 -0
- data/lib/fdx_v660_api/models/error3.rb +110 -0
- data/lib/fdx_v660_api/models/event_frequency.rb +102 -0
- data/lib/fdx_v660_api/models/event_frequency1.rb +84 -0
- data/lib/fdx_v660_api/models/event_frequency2.rb +84 -0
- data/lib/fdx_v660_api/models/event_frequency3.rb +84 -0
- data/lib/fdx_v660_api/models/event_status.rb +45 -0
- data/lib/fdx_v660_api/models/event_status2.rb +45 -0
- data/lib/fdx_v660_api/models/event_type.rb +100 -0
- data/lib/fdx_v660_api/models/event_type1.rb +100 -0
- data/lib/fdx_v660_api/models/expired_option_type.rb +36 -0
- data/lib/fdx_v660_api/models/expired_option_type2.rb +37 -0
- data/lib/fdx_v660_api/models/external_account_id_scheme_entity.rb +85 -0
- data/lib/fdx_v660_api/models/external_financial_institution_id_scheme_entity.rb +85 -0
- data/lib/fdx_v660_api/models/farm_income_statement.rb +641 -0
- data/lib/fdx_v660_api/models/farm_rental_income_statement.rb +597 -0
- data/lib/fdx_v660_api/models/fdx_api_actor_type.rb +37 -0
- data/lib/fdx_v660_api/models/fdx_jwt_profile.rb +165 -0
- data/lib/fdx_v660_api/models/fdx_oauth_token_introspection_response.rb +172 -0
- data/lib/fdx_v660_api/models/fdx_resource_operation_id.rb +364 -0
- data/lib/fdx_v660_api/models/fdx_resource_operation_id1.rb +364 -0
- data/lib/fdx_v660_api/models/fdx_resource_operation_id3.rb +364 -0
- data/lib/fdx_v660_api/models/fdx_version.rb +200 -0
- data/lib/fdx_v660_api/models/fdx_version1.rb +201 -0
- data/lib/fdx_v660_api/models/federal_tax_withholding.rb +115 -0
- data/lib/fdx_v660_api/models/fi_attribute_entity.rb +95 -0
- data/lib/fdx_v660_api/models/fi_attribute_entity1.rb +86 -0
- data/lib/fdx_v660_api/models/fi_portion_entity.rb +95 -0
- data/lib/fdx_v660_api/models/financial_institution_entity.rb +116 -0
- data/lib/fdx_v660_api/models/financial_institution_entity2.rb +116 -0
- data/lib/fdx_v660_api/models/foreign_source_dividend_income.rb +123 -0
- data/lib/fdx_v660_api/models/form1041_schedule_k1.rb +573 -0
- data/lib/fdx_v660_api/models/form1041_schedule_k11.rb +571 -0
- data/lib/fdx_v660_api/models/form1042_s.rb +596 -0
- data/lib/fdx_v660_api/models/form1042_s1.rb +594 -0
- data/lib/fdx_v660_api/models/form1042_s_agent.rb +211 -0
- data/lib/fdx_v660_api/models/form1042_s_agent1.rb +199 -0
- data/lib/fdx_v660_api/models/form1042_s_agent2.rb +199 -0
- data/lib/fdx_v660_api/models/form1042_s_agent3.rb +199 -0
- data/lib/fdx_v660_api/models/form1042_s_agent4.rb +199 -0
- data/lib/fdx_v660_api/models/form1042_s_recipient.rb +219 -0
- data/lib/fdx_v660_api/models/form1042_s_recipient1.rb +219 -0
- data/lib/fdx_v660_api/models/form1065_schedule_k1.rb +1212 -0
- data/lib/fdx_v660_api/models/form1065_schedule_k11.rb +1211 -0
- data/lib/fdx_v660_api/models/form1095_a.rb +364 -0
- data/lib/fdx_v660_api/models/form1095_a1.rb +364 -0
- data/lib/fdx_v660_api/models/form1095_b.rb +281 -0
- data/lib/fdx_v660_api/models/form1095_b1.rb +280 -0
- data/lib/fdx_v660_api/models/form1095_c.rb +294 -0
- data/lib/fdx_v660_api/models/form1095_c1.rb +293 -0
- data/lib/fdx_v660_api/models/form1097_btc.rb +314 -0
- data/lib/fdx_v660_api/models/form1097_btc1.rb +313 -0
- data/lib/fdx_v660_api/models/form1098.rb +389 -0
- data/lib/fdx_v660_api/models/form10981.rb +388 -0
- data/lib/fdx_v660_api/models/form1098_c.rb +421 -0
- data/lib/fdx_v660_api/models/form1098_c1.rb +420 -0
- data/lib/fdx_v660_api/models/form1098_e.rb +255 -0
- data/lib/fdx_v660_api/models/form1098_e1.rb +254 -0
- data/lib/fdx_v660_api/models/form1098_ma.rb +276 -0
- data/lib/fdx_v660_api/models/form1098_ma1.rb +275 -0
- data/lib/fdx_v660_api/models/form1098_q.rb +338 -0
- data/lib/fdx_v660_api/models/form1098_q1.rb +337 -0
- data/lib/fdx_v660_api/models/form1098_t.rb +338 -0
- data/lib/fdx_v660_api/models/form1098_t1.rb +337 -0
- data/lib/fdx_v660_api/models/form1098_vli.rb +327 -0
- data/lib/fdx_v660_api/models/form1098_vli1.rb +326 -0
- data/lib/fdx_v660_api/models/form1099_a.rb +289 -0
- data/lib/fdx_v660_api/models/form1099_a1.rb +288 -0
- data/lib/fdx_v660_api/models/form1099_b.rb +369 -0
- data/lib/fdx_v660_api/models/form1099_b1.rb +367 -0
- data/lib/fdx_v660_api/models/form1099_c.rb +310 -0
- data/lib/fdx_v660_api/models/form1099_c1.rb +309 -0
- data/lib/fdx_v660_api/models/form1099_cap.rb +274 -0
- data/lib/fdx_v660_api/models/form1099_cap1.rb +273 -0
- data/lib/fdx_v660_api/models/form1099_consolidated_statement.rb +327 -0
- data/lib/fdx_v660_api/models/form1099_consolidated_statement1.rb +325 -0
- data/lib/fdx_v660_api/models/form1099_da.rb +296 -0
- data/lib/fdx_v660_api/models/form1099_da1.rb +294 -0
- data/lib/fdx_v660_api/models/form1099_div.rb +621 -0
- data/lib/fdx_v660_api/models/form1099_div1.rb +620 -0
- data/lib/fdx_v660_api/models/form1099_g.rb +376 -0
- data/lib/fdx_v660_api/models/form1099_g1.rb +375 -0
- data/lib/fdx_v660_api/models/form1099_h.rb +263 -0
- data/lib/fdx_v660_api/models/form1099_h1.rb +262 -0
- data/lib/fdx_v660_api/models/form1099_int.rb +614 -0
- data/lib/fdx_v660_api/models/form1099_int1.rb +613 -0
- data/lib/fdx_v660_api/models/form1099_k.rb +435 -0
- data/lib/fdx_v660_api/models/form1099_k1.rb +434 -0
- data/lib/fdx_v660_api/models/form1099_lps.rb +271 -0
- data/lib/fdx_v660_api/models/form1099_lps1.rb +270 -0
- data/lib/fdx_v660_api/models/form1099_ls.rb +274 -0
- data/lib/fdx_v660_api/models/form1099_ls1.rb +273 -0
- data/lib/fdx_v660_api/models/form1099_ltc.rb +351 -0
- data/lib/fdx_v660_api/models/form1099_ltc1.rb +350 -0
- data/lib/fdx_v660_api/models/form1099_misc.rb +470 -0
- data/lib/fdx_v660_api/models/form1099_misc1.rb +469 -0
- data/lib/fdx_v660_api/models/form1099_nec.rb +343 -0
- data/lib/fdx_v660_api/models/form1099_nec1.rb +342 -0
- data/lib/fdx_v660_api/models/form1099_oid.rb +431 -0
- data/lib/fdx_v660_api/models/form1099_oid1.rb +430 -0
- data/lib/fdx_v660_api/models/form1099_patr.rb +490 -0
- data/lib/fdx_v660_api/models/form1099_patr1.rb +489 -0
- data/lib/fdx_v660_api/models/form1099_q.rb +348 -0
- data/lib/fdx_v660_api/models/form1099_q1.rb +347 -0
- data/lib/fdx_v660_api/models/form1099_qa.rb +295 -0
- data/lib/fdx_v660_api/models/form1099_qa1.rb +294 -0
- data/lib/fdx_v660_api/models/form1099_r.rb +497 -0
- data/lib/fdx_v660_api/models/form1099_r1.rb +496 -0
- data/lib/fdx_v660_api/models/form1099_s.rb +379 -0
- data/lib/fdx_v660_api/models/form1099_s1.rb +378 -0
- data/lib/fdx_v660_api/models/form1099_sa.rb +306 -0
- data/lib/fdx_v660_api/models/form1099_sa1.rb +305 -0
- data/lib/fdx_v660_api/models/form1099_sb.rb +267 -0
- data/lib/fdx_v660_api/models/form1099_sb1.rb +266 -0
- data/lib/fdx_v660_api/models/form1120_s_schedule_k1.rb +740 -0
- data/lib/fdx_v660_api/models/form1120_s_schedule_k11.rb +739 -0
- data/lib/fdx_v660_api/models/form2439.rb +306 -0
- data/lib/fdx_v660_api/models/form24391.rb +305 -0
- data/lib/fdx_v660_api/models/form3921.rb +298 -0
- data/lib/fdx_v660_api/models/form39211.rb +297 -0
- data/lib/fdx_v660_api/models/form3922.rb +327 -0
- data/lib/fdx_v660_api/models/form39221.rb +326 -0
- data/lib/fdx_v660_api/models/form5498.rb +486 -0
- data/lib/fdx_v660_api/models/form54981.rb +485 -0
- data/lib/fdx_v660_api/models/form5498_esa.rb +258 -0
- data/lib/fdx_v660_api/models/form5498_esa1.rb +257 -0
- data/lib/fdx_v660_api/models/form5498_qa.rb +324 -0
- data/lib/fdx_v660_api/models/form5498_qa1.rb +323 -0
- data/lib/fdx_v660_api/models/form5498_sa.rb +321 -0
- data/lib/fdx_v660_api/models/form5498_sa1.rb +320 -0
- data/lib/fdx_v660_api/models/form5498_ta.rb +300 -0
- data/lib/fdx_v660_api/models/form5498_ta1.rb +299 -0
- data/lib/fdx_v660_api/models/form_w2.rb +471 -0
- data/lib/fdx_v660_api/models/form_w21.rb +470 -0
- data/lib/fdx_v660_api/models/form_w22.rb +470 -0
- data/lib/fdx_v660_api/models/form_w24.rb +470 -0
- data/lib/fdx_v660_api/models/form_w2_c.rb +276 -0
- data/lib/fdx_v660_api/models/form_w2_c2.rb +275 -0
- data/lib/fdx_v660_api/models/form_w2_g.rb +354 -0
- data/lib/fdx_v660_api/models/form_w2_g2.rb +353 -0
- data/lib/fdx_v660_api/models/funding_source.rb +127 -0
- data/lib/fdx_v660_api/models/gain_or_loss_from_cryptocurrency_transaction.rb +173 -0
- data/lib/fdx_v660_api/models/generic_account_identification_entity.rb +107 -0
- data/lib/fdx_v660_api/models/generic_financial_institution_id_entity.rb +107 -0
- data/lib/fdx_v660_api/models/government_issued_id_type.rb +36 -0
- data/lib/fdx_v660_api/models/government_issued_id_type2.rb +36 -0
- data/lib/fdx_v660_api/models/government_issued_party_identification_entity.rb +118 -0
- data/lib/fdx_v660_api/models/hateoas_link.rb +149 -0
- data/lib/fdx_v660_api/models/hateoas_link1.rb +149 -0
- data/lib/fdx_v660_api/models/hateoas_link2.rb +149 -0
- data/lib/fdx_v660_api/models/hateoas_link3.rb +135 -0
- data/lib/fdx_v660_api/models/hateoas_link4.rb +137 -0
- data/lib/fdx_v660_api/models/hateoas_link5.rb +136 -0
- data/lib/fdx_v660_api/models/hateoas_link6.rb +135 -0
- data/lib/fdx_v660_api/models/hateoas_link7.rb +135 -0
- data/lib/fdx_v660_api/models/health_insurance_coverage.rb +115 -0
- data/lib/fdx_v660_api/models/health_insurance_covered_individual.rb +118 -0
- data/lib/fdx_v660_api/models/health_insurance_marketplace_covered_individual.rb +119 -0
- data/lib/fdx_v660_api/models/held_in_account.rb +44 -0
- data/lib/fdx_v660_api/models/held_in_account2.rb +44 -0
- data/lib/fdx_v660_api/models/holding_entity.rb +451 -0
- data/lib/fdx_v660_api/models/holding_sub_type.rb +36 -0
- data/lib/fdx_v660_api/models/holding_sub_type2.rb +36 -0
- data/lib/fdx_v660_api/models/http_action_type.rb +48 -0
- data/lib/fdx_v660_api/models/http_action_type2.rb +48 -0
- data/lib/fdx_v660_api/models/iban2007_identifier_entity.rb +86 -0
- data/lib/fdx_v660_api/models/income.rb +137 -0
- data/lib/fdx_v660_api/models/income_type.rb +40 -0
- data/lib/fdx_v660_api/models/income_type2.rb +41 -0
- data/lib/fdx_v660_api/models/incoming_and_outgoing_transfer_limits.rb +85 -0
- data/lib/fdx_v660_api/models/incoming_and_outgoing_transfer_limits2.rb +85 -0
- data/lib/fdx_v660_api/models/individual_name.rb +117 -0
- data/lib/fdx_v660_api/models/individual_name2.rb +115 -0
- data/lib/fdx_v660_api/models/individual_name4.rb +115 -0
- data/lib/fdx_v660_api/models/individual_name5.rb +115 -0
- data/lib/fdx_v660_api/models/individual_name6.rb +115 -0
- data/lib/fdx_v660_api/models/individual_name7.rb +115 -0
- data/lib/fdx_v660_api/models/industry_classification_system.rb +67 -0
- data/lib/fdx_v660_api/models/industry_classification_system2.rb +56 -0
- data/lib/fdx_v660_api/models/industry_code.rb +95 -0
- data/lib/fdx_v660_api/models/insurance_account_entity.rb +391 -0
- data/lib/fdx_v660_api/models/insurance_transaction_entity.rb +233 -0
- data/lib/fdx_v660_api/models/insurance_transaction_type.rb +44 -0
- data/lib/fdx_v660_api/models/interest_rate_entity.rb +130 -0
- data/lib/fdx_v660_api/models/interest_rate_entity1.rb +140 -0
- data/lib/fdx_v660_api/models/interest_rate_entity10.rb +140 -0
- data/lib/fdx_v660_api/models/interest_rate_entity3.rb +140 -0
- data/lib/fdx_v660_api/models/interest_rate_entity6.rb +140 -0
- data/lib/fdx_v660_api/models/interest_rate_entity7.rb +140 -0
- data/lib/fdx_v660_api/models/interest_rate_entity8.rb +140 -0
- data/lib/fdx_v660_api/models/interest_rate_tier.rb +100 -0
- data/lib/fdx_v660_api/models/interest_rate_type.rb +40 -0
- data/lib/fdx_v660_api/models/interest_rate_type1.rb +40 -0
- data/lib/fdx_v660_api/models/intermediary.rb +139 -0
- data/lib/fdx_v660_api/models/investment401_k_source_type.rb +56 -0
- data/lib/fdx_v660_api/models/investment401_k_source_type1.rb +58 -0
- data/lib/fdx_v660_api/models/investment401_k_source_type2.rb +57 -0
- data/lib/fdx_v660_api/models/investment401_k_source_type4.rb +57 -0
- data/lib/fdx_v660_api/models/investment_account_entity.rb +610 -0
- data/lib/fdx_v660_api/models/investment_asset_type.rb +81 -0
- data/lib/fdx_v660_api/models/investment_asset_type1.rb +69 -0
- data/lib/fdx_v660_api/models/investment_asset_type3.rb +69 -0
- data/lib/fdx_v660_api/models/investment_balance_entity.rb +138 -0
- data/lib/fdx_v660_api/models/investment_balance_type.rb +36 -0
- data/lib/fdx_v660_api/models/investment_balance_type2.rb +36 -0
- data/lib/fdx_v660_api/models/investment_loan_entity.rb +260 -0
- data/lib/fdx_v660_api/models/investment_sale_type.rb +56 -0
- data/lib/fdx_v660_api/models/investment_transaction_entity.rb +696 -0
- data/lib/fdx_v660_api/models/investment_transaction_type.rb +212 -0
- data/lib/fdx_v660_api/models/investment_transaction_type2.rb +212 -0
- data/lib/fdx_v660_api/models/investment_transfer_action_direction.rb +36 -0
- data/lib/fdx_v660_api/models/investment_transfer_action_direction2.rb +36 -0
- data/lib/fdx_v660_api/models/iso3166_country_code.rb +1029 -0
- data/lib/fdx_v660_api/models/iso3166_country_code1.rb +1024 -0
- data/lib/fdx_v660_api/models/iso3166_country_code2.rb +1024 -0
- data/lib/fdx_v660_api/models/iso3166_country_code4.rb +1024 -0
- data/lib/fdx_v660_api/models/iso3166_country_code5.rb +1024 -0
- data/lib/fdx_v660_api/models/iso3166_country_code7.rb +1024 -0
- data/lib/fdx_v660_api/models/iso4217_currency_code.rb +763 -0
- data/lib/fdx_v660_api/models/iso4217_currency_code1.rb +760 -0
- data/lib/fdx_v660_api/models/iso4217_currency_code2.rb +760 -0
- data/lib/fdx_v660_api/models/iso4217_currency_code3.rb +760 -0
- data/lib/fdx_v660_api/models/iso4217_currency_code5.rb +760 -0
- data/lib/fdx_v660_api/models/iso4217_currency_code6.rb +760 -0
- data/lib/fdx_v660_api/models/iso4217_currency_code7.rb +760 -0
- data/lib/fdx_v660_api/models/iso93622014_business_identifier_code_entity.rb +93 -0
- data/lib/fdx_v660_api/models/iso93622022_business_identifier_code_entity.rb +90 -0
- data/lib/fdx_v660_api/models/k1_alternative_minimum_tax.rb +121 -0
- data/lib/fdx_v660_api/models/k1_alternative_minimum_tax1.rb +120 -0
- data/lib/fdx_v660_api/models/k1_alternative_minimum_tax_drilling.rb +113 -0
- data/lib/fdx_v660_api/models/k1_alternative_minimum_tax_drilling1.rb +111 -0
- data/lib/fdx_v660_api/models/k1_alternative_minimum_tax_drilling3.rb +111 -0
- data/lib/fdx_v660_api/models/k1_interest_income.rb +122 -0
- data/lib/fdx_v660_api/models/k1_interest_income1.rb +122 -0
- data/lib/fdx_v660_api/models/k1_other_deductions.rb +110 -0
- data/lib/fdx_v660_api/models/k1_other_deductions1.rb +109 -0
- data/lib/fdx_v660_api/models/k1_other_income.rb +218 -0
- data/lib/fdx_v660_api/models/k1_other_income1.rb +217 -0
- data/lib/fdx_v660_api/models/k1_qualified_business_income_qbi_partner_specific_items.rb +199 -0
- data/lib/fdx_v660_api/models/k1_statement_a.rb +128 -0
- data/lib/fdx_v660_api/models/k1_statement_a1.rb +127 -0
- data/lib/fdx_v660_api/models/k1_statement_a2.rb +127 -0
- data/lib/fdx_v660_api/models/k1_statement_a_qualified_business_income_qbi_partner_specific_items.rb +221 -0
- data/lib/fdx_v660_api/models/k1_statement_c.rb +130 -0
- data/lib/fdx_v660_api/models/k1_statement_c1.rb +129 -0
- data/lib/fdx_v660_api/models/k1_statement_c2.rb +129 -0
- data/lib/fdx_v660_api/models/k1_statement_c_qualified_business_income_qbi_partner_specific_items.rb +208 -0
- data/lib/fdx_v660_api/models/k1_supplemental.rb +135 -0
- data/lib/fdx_v660_api/models/k1_supplemental1.rb +134 -0
- data/lib/fdx_v660_api/models/k1_supplemental2.rb +134 -0
- data/lib/fdx_v660_api/models/lifecycle_event_entity.rb +128 -0
- data/lib/fdx_v660_api/models/lifecycle_event_entity1.rb +127 -0
- data/lib/fdx_v660_api/models/line_item_entity.rb +156 -0
- data/lib/fdx_v660_api/models/line_of_business_type.rb +44 -0
- data/lib/fdx_v660_api/models/line_of_business_type2.rb +46 -0
- data/lib/fdx_v660_api/models/line_of_credit_account_entity.rb +706 -0
- data/lib/fdx_v660_api/models/line_of_credit_account_terms_and_conditions_entity.rb +368 -0
- data/lib/fdx_v660_api/models/line_of_credit_account_terms_and_conditions_entity1.rb +378 -0
- data/lib/fdx_v660_api/models/line_of_credit_account_terms_and_conditions_entity3.rb +377 -0
- data/lib/fdx_v660_api/models/line_of_credit_transaction_entity.rb +256 -0
- data/lib/fdx_v660_api/models/line_of_credit_transaction_type.rb +61 -0
- data/lib/fdx_v660_api/models/line_of_credit_transaction_type2.rb +57 -0
- data/lib/fdx_v660_api/models/loan_account_entity.rb +530 -0
- data/lib/fdx_v660_api/models/loan_transaction_entity.rb +244 -0
- data/lib/fdx_v660_api/models/loan_transaction_type.rb +68 -0
- data/lib/fdx_v660_api/models/loan_transaction_type2.rb +60 -0
- data/lib/fdx_v660_api/models/local_tax_withholding.rb +96 -0
- data/lib/fdx_v660_api/models/local_tax_withholding2.rb +96 -0
- data/lib/fdx_v660_api/models/merchant_entity.rb +159 -0
- data/lib/fdx_v660_api/models/merchant_entity1.rb +159 -0
- data/lib/fdx_v660_api/models/merchant_for_update_entity.rb +119 -0
- data/lib/fdx_v660_api/models/merchant_for_update_entity1.rb +118 -0
- data/lib/fdx_v660_api/models/message_format.rb +26 -0
- data/lib/fdx_v660_api/models/message_format2.rb +26 -0
- data/lib/fdx_v660_api/models/monetary_amount.rb +84 -0
- data/lib/fdx_v660_api/models/monetary_amount1.rb +84 -0
- data/lib/fdx_v660_api/models/monetary_amount2.rb +84 -0
- data/lib/fdx_v660_api/models/monetary_amount3.rb +84 -0
- data/lib/fdx_v660_api/models/monetary_amount4.rb +84 -0
- data/lib/fdx_v660_api/models/monetary_amount5.rb +84 -0
- data/lib/fdx_v660_api/models/monetary_amount6.rb +84 -0
- data/lib/fdx_v660_api/models/monetary_amount7.rb +84 -0
- data/lib/fdx_v660_api/models/monetary_amount9.rb +84 -0
- data/lib/fdx_v660_api/models/month_abbreviation.rb +76 -0
- data/lib/fdx_v660_api/models/month_abbreviation1.rb +76 -0
- data/lib/fdx_v660_api/models/month_and_amount.rb +85 -0
- data/lib/fdx_v660_api/models/mutual_fund_security_entity.rb +173 -0
- data/lib/fdx_v660_api/models/mutual_fund_type.rb +40 -0
- data/lib/fdx_v660_api/models/mutual_fund_type2.rb +40 -0
- data/lib/fdx_v660_api/models/name_address_and_phone.rb +193 -0
- data/lib/fdx_v660_api/models/name_address_and_phone1.rb +195 -0
- data/lib/fdx_v660_api/models/name_address_and_phone2.rb +195 -0
- data/lib/fdx_v660_api/models/name_and_address.rb +186 -0
- data/lib/fdx_v660_api/models/name_and_address1.rb +185 -0
- data/lib/fdx_v660_api/models/notification_category.rb +52 -0
- data/lib/fdx_v660_api/models/notification_category1.rb +52 -0
- data/lib/fdx_v660_api/models/notification_entity.rb +180 -0
- data/lib/fdx_v660_api/models/notification_payload_entity.rb +125 -0
- data/lib/fdx_v660_api/models/notification_payload_entity2.rb +125 -0
- data/lib/fdx_v660_api/models/notification_payload_id_type.rb +56 -0
- data/lib/fdx_v660_api/models/notification_payload_id_type2.rb +56 -0
- data/lib/fdx_v660_api/models/notification_priority.rb +40 -0
- data/lib/fdx_v660_api/models/notification_priority2.rb +40 -0
- data/lib/fdx_v660_api/models/notification_severity.rb +48 -0
- data/lib/fdx_v660_api/models/notification_severity2.rb +48 -0
- data/lib/fdx_v660_api/models/notification_subscription_entity.rb +123 -0
- data/lib/fdx_v660_api/models/notifications_entity.rb +104 -0
- data/lib/fdx_v660_api/models/oauth_provider_error.rb +62 -0
- data/lib/fdx_v660_api/models/oauth_scope_oauth_fapi1_advanced.rb +140 -0
- data/lib/fdx_v660_api/models/oauth_scope_oauth_fapi1_baseline.rb +41 -0
- data/lib/fdx_v660_api/models/oauth_token.rb +96 -0
- data/lib/fdx_v660_api/models/occurrence_based_limits_for_a_payment_network.rb +95 -0
- data/lib/fdx_v660_api/models/occurrence_based_limits_for_a_payment_network2.rb +94 -0
- data/lib/fdx_v660_api/models/offer_of_health_insurance_coverage.rb +119 -0
- data/lib/fdx_v660_api/models/open_order_entity.rb +231 -0
- data/lib/fdx_v660_api/models/operation_entity.rb +161 -0
- data/lib/fdx_v660_api/models/option_security_entity.rb +147 -0
- data/lib/fdx_v660_api/models/option_type.rb +36 -0
- data/lib/fdx_v660_api/models/option_type2.rb +36 -0
- data/lib/fdx_v660_api/models/order_duration.rb +40 -0
- data/lib/fdx_v660_api/models/order_duration2.rb +40 -0
- data/lib/fdx_v660_api/models/order_type.rb +60 -0
- data/lib/fdx_v660_api/models/order_type2.rb +61 -0
- data/lib/fdx_v660_api/models/organization_name_entity.rb +89 -0
- data/lib/fdx_v660_api/models/other_security_entity.rb +106 -0
- data/lib/fdx_v660_api/models/page_metadata.rb +134 -0
- data/lib/fdx_v660_api/models/page_metadata3.rb +124 -0
- data/lib/fdx_v660_api/models/page_metadata5.rb +125 -0
- data/lib/fdx_v660_api/models/page_metadata_links.rb +85 -0
- data/lib/fdx_v660_api/models/page_metadata_links1.rb +95 -0
- data/lib/fdx_v660_api/models/page_metadata_links3.rb +85 -0
- data/lib/fdx_v660_api/models/page_metadata_links4.rb +86 -0
- data/lib/fdx_v660_api/models/paginated_array.rb +85 -0
- data/lib/fdx_v660_api/models/party_entity.rb +139 -0
- data/lib/fdx_v660_api/models/party_entity1.rb +138 -0
- data/lib/fdx_v660_api/models/party_entity2.rb +138 -0
- data/lib/fdx_v660_api/models/party_entity3.rb +138 -0
- data/lib/fdx_v660_api/models/party_entity4.rb +140 -0
- data/lib/fdx_v660_api/models/party_group_entity.rb +86 -0
- data/lib/fdx_v660_api/models/party_status.rb +48 -0
- data/lib/fdx_v660_api/models/party_status1.rb +44 -0
- data/lib/fdx_v660_api/models/party_status3.rb +44 -0
- data/lib/fdx_v660_api/models/party_type.rb +56 -0
- data/lib/fdx_v660_api/models/party_type2.rb +56 -0
- data/lib/fdx_v660_api/models/party_type3.rb +56 -0
- data/lib/fdx_v660_api/models/party_type4.rb +56 -0
- data/lib/fdx_v660_api/models/pay_amount.rb +107 -0
- data/lib/fdx_v660_api/models/pay_amount1.rb +105 -0
- data/lib/fdx_v660_api/models/pay_amount2.rb +105 -0
- data/lib/fdx_v660_api/models/pay_period.rb +93 -0
- data/lib/fdx_v660_api/models/pay_period_withholding.rb +125 -0
- data/lib/fdx_v660_api/models/payee_entity.rb +75 -0
- data/lib/fdx_v660_api/models/payee_entity1.rb +75 -0
- data/lib/fdx_v660_api/models/payee_for_update_entity.rb +74 -0
- data/lib/fdx_v660_api/models/payee_for_update_entity1.rb +74 -0
- data/lib/fdx_v660_api/models/payees_entity.rb +113 -0
- data/lib/fdx_v660_api/models/payment_amounts.rb +134 -0
- data/lib/fdx_v660_api/models/payment_amounts2.rb +134 -0
- data/lib/fdx_v660_api/models/payment_delivery_address_entity.rb +99 -0
- data/lib/fdx_v660_api/models/payment_detail.rb +119 -0
- data/lib/fdx_v660_api/models/payment_details_entity.rb +132 -0
- data/lib/fdx_v660_api/models/payment_details_entity1.rb +142 -0
- data/lib/fdx_v660_api/models/payment_details_entity4.rb +132 -0
- data/lib/fdx_v660_api/models/payment_entity.rb +274 -0
- data/lib/fdx_v660_api/models/payment_for_update_entity.rb +125 -0
- data/lib/fdx_v660_api/models/payment_for_update_entity1.rb +125 -0
- data/lib/fdx_v660_api/models/payment_for_update_entity2.rb +125 -0
- data/lib/fdx_v660_api/models/payment_generic_account_entity.rb +138 -0
- data/lib/fdx_v660_api/models/payment_generic_account_entity1.rb +138 -0
- data/lib/fdx_v660_api/models/payment_generic_account_entity2.rb +138 -0
- data/lib/fdx_v660_api/models/payment_initiation_parties_entity.rb +108 -0
- data/lib/fdx_v660_api/models/payment_initiation_party_contact_method_entity.rb +97 -0
- data/lib/fdx_v660_api/models/payment_initiation_party_create_response_entity.rb +85 -0
- data/lib/fdx_v660_api/models/payment_initiation_party_entity.rb +292 -0
- data/lib/fdx_v660_api/models/payment_initiation_party_method_create_response_entity.rb +78 -0
- data/lib/fdx_v660_api/models/payment_initiation_party_name_entity.rb +100 -0
- data/lib/fdx_v660_api/models/payment_initiation_party_name_entity1.rb +97 -0
- data/lib/fdx_v660_api/models/payment_initiation_party_name_entity3.rb +97 -0
- data/lib/fdx_v660_api/models/payment_initiation_party_summary_entity.rb +90 -0
- data/lib/fdx_v660_api/models/payment_initiation_party_to_payment_method_entity.rb +130 -0
- data/lib/fdx_v660_api/models/payment_method.rb +42 -0
- data/lib/fdx_v660_api/models/payment_method2.rb +42 -0
- data/lib/fdx_v660_api/models/payment_method_credit_account_entity.rb +111 -0
- data/lib/fdx_v660_api/models/payment_method_debit_account_entity.rb +100 -0
- data/lib/fdx_v660_api/models/payment_method_entity.rb +139 -0
- data/lib/fdx_v660_api/models/payment_method_entity2.rb +149 -0
- data/lib/fdx_v660_api/models/payment_method_id.rb +96 -0
- data/lib/fdx_v660_api/models/payment_method_system_code.rb +90 -0
- data/lib/fdx_v660_api/models/payment_method_system_proprietary.rb +85 -0
- data/lib/fdx_v660_api/models/payment_network_identifier_type.rb +47 -0
- data/lib/fdx_v660_api/models/payment_network_identifier_type1.rb +40 -0
- data/lib/fdx_v660_api/models/payment_network_identifier_type3.rb +41 -0
- data/lib/fdx_v660_api/models/payment_network_lifecycle_event_entity.rb +140 -0
- data/lib/fdx_v660_api/models/payment_network_lifecycle_events_entity.rb +85 -0
- data/lib/fdx_v660_api/models/payment_network_type.rb +80 -0
- data/lib/fdx_v660_api/models/payment_network_type1.rb +68 -0
- data/lib/fdx_v660_api/models/payment_network_type2.rb +68 -0
- data/lib/fdx_v660_api/models/payment_network_type4.rb +68 -0
- data/lib/fdx_v660_api/models/payment_status.rb +58 -0
- data/lib/fdx_v660_api/models/payment_status1.rb +52 -0
- data/lib/fdx_v660_api/models/payment_status3.rb +52 -0
- data/lib/fdx_v660_api/models/payments_entity.rb +113 -0
- data/lib/fdx_v660_api/models/payout_mode.rb +59 -0
- data/lib/fdx_v660_api/models/payout_mode2.rb +56 -0
- data/lib/fdx_v660_api/models/payout_type.rb +39 -0
- data/lib/fdx_v660_api/models/payout_type2.rb +36 -0
- data/lib/fdx_v660_api/models/payroll_frequency_type.rb +78 -0
- data/lib/fdx_v660_api/models/payroll_frequency_type1.rb +78 -0
- data/lib/fdx_v660_api/models/payroll_rate_type.rb +83 -0
- data/lib/fdx_v660_api/models/payroll_rate_type1.rb +82 -0
- data/lib/fdx_v660_api/models/payroll_rate_type3.rb +82 -0
- data/lib/fdx_v660_api/models/payroll_report_entity.rb +162 -0
- data/lib/fdx_v660_api/models/payroll_report_entity1.rb +163 -0
- data/lib/fdx_v660_api/models/payroll_report_list_entity.rb +114 -0
- data/lib/fdx_v660_api/models/payroll_report_list_entity1.rb +115 -0
- data/lib/fdx_v660_api/models/payroll_report_summary_entity.rb +160 -0
- data/lib/fdx_v660_api/models/payroll_report_type.rb +37 -0
- data/lib/fdx_v660_api/models/payroll_report_type1.rb +36 -0
- data/lib/fdx_v660_api/models/paystub_entity.rb +264 -0
- data/lib/fdx_v660_api/models/paystub_entity1.rb +104 -0
- data/lib/fdx_v660_api/models/paystub_entity2.rb +105 -0
- data/lib/fdx_v660_api/models/paystub_list_entity.rb +104 -0
- data/lib/fdx_v660_api/models/paystub_list_entity1.rb +105 -0
- data/lib/fdx_v660_api/models/paystub_source.rb +40 -0
- data/lib/fdx_v660_api/models/paystub_source2.rb +40 -0
- data/lib/fdx_v660_api/models/pension_source_entity.rb +136 -0
- data/lib/fdx_v660_api/models/period_certain_type.rb +52 -0
- data/lib/fdx_v660_api/models/period_certain_type2.rb +49 -0
- data/lib/fdx_v660_api/models/person_entity.rb +156 -0
- data/lib/fdx_v660_api/models/planned_availability_entity.rb +122 -0
- data/lib/fdx_v660_api/models/policy_premium_term_type.rb +36 -0
- data/lib/fdx_v660_api/models/policy_premium_term_type2.rb +36 -0
- data/lib/fdx_v660_api/models/policy_product_type.rb +39 -0
- data/lib/fdx_v660_api/models/policy_product_type2.rb +36 -0
- data/lib/fdx_v660_api/models/policy_status.rb +71 -0
- data/lib/fdx_v660_api/models/policy_status2.rb +60 -0
- data/lib/fdx_v660_api/models/portion_entity.rb +95 -0
- data/lib/fdx_v660_api/models/position_type.rb +36 -0
- data/lib/fdx_v660_api/models/position_type1.rb +36 -0
- data/lib/fdx_v660_api/models/promotion_entity.rb +231 -0
- data/lib/fdx_v660_api/models/proprietary_account_id_scheme_entity.rb +88 -0
- data/lib/fdx_v660_api/models/proprietary_financial_institution_id_scheme_entity.rb +86 -0
- data/lib/fdx_v660_api/models/recipient_provider.rb +313 -0
- data/lib/fdx_v660_api/models/recipient_record_at_ecosystem_registry.rb +238 -0
- data/lib/fdx_v660_api/models/recipient_records_at_ecosystem_registry.rb +105 -0
- data/lib/fdx_v660_api/models/recipient_request.rb +229 -0
- data/lib/fdx_v660_api/models/recurring_payment_duration_entity.rb +96 -0
- data/lib/fdx_v660_api/models/recurring_payment_duration_entity2.rb +96 -0
- data/lib/fdx_v660_api/models/recurring_payment_duration_type.rb +41 -0
- data/lib/fdx_v660_api/models/recurring_payment_duration_type2.rb +40 -0
- data/lib/fdx_v660_api/models/recurring_payment_entity.rb +241 -0
- data/lib/fdx_v660_api/models/recurring_payment_for_update_entity.rb +144 -0
- data/lib/fdx_v660_api/models/recurring_payment_for_update_entity1.rb +143 -0
- data/lib/fdx_v660_api/models/recurring_payment_for_update_entity2.rb +143 -0
- data/lib/fdx_v660_api/models/recurring_payment_status.rb +48 -0
- data/lib/fdx_v660_api/models/recurring_payment_status2.rb +44 -0
- data/lib/fdx_v660_api/models/recurring_payments_entity.rb +113 -0
- data/lib/fdx_v660_api/models/regional_tax_withholding.rb +136 -0
- data/lib/fdx_v660_api/models/registry.rb +44 -0
- data/lib/fdx_v660_api/models/registry2.rb +44 -0
- data/lib/fdx_v660_api/models/registry3.rb +45 -0
- data/lib/fdx_v660_api/models/registry_reference.rb +102 -0
- data/lib/fdx_v660_api/models/remittance.rb +175 -0
- data/lib/fdx_v660_api/models/remittance2.rb +185 -0
- data/lib/fdx_v660_api/models/remittance_party.rb +87 -0
- data/lib/fdx_v660_api/models/remittance_party1.rb +99 -0
- data/lib/fdx_v660_api/models/remittance_party3.rb +98 -0
- data/lib/fdx_v660_api/models/remittance_status.rb +48 -0
- data/lib/fdx_v660_api/models/remittance_status2.rb +49 -0
- data/lib/fdx_v660_api/models/rental_income_statement.rb +436 -0
- data/lib/fdx_v660_api/models/request_for_payment_entity.rb +205 -0
- data/lib/fdx_v660_api/models/request_for_payment_status.rb +74 -0
- data/lib/fdx_v660_api/models/request_for_payment_status2.rb +64 -0
- data/lib/fdx_v660_api/models/request_for_payment_summary_entity.rb +158 -0
- data/lib/fdx_v660_api/models/request_for_payments_entity.rb +113 -0
- data/lib/fdx_v660_api/models/result_type.rb +39 -0
- data/lib/fdx_v660_api/models/result_type1.rb +37 -0
- data/lib/fdx_v660_api/models/retirement_plan_type.rb +57 -0
- data/lib/fdx_v660_api/models/retirement_plan_type2.rb +56 -0
- data/lib/fdx_v660_api/models/revocation_request_entity.rb +96 -0
- data/lib/fdx_v660_api/models/reward_balance_entity.rb +154 -0
- data/lib/fdx_v660_api/models/reward_categories_entity.rb +104 -0
- data/lib/fdx_v660_api/models/reward_category_entity.rb +136 -0
- data/lib/fdx_v660_api/models/reward_program_entity.rb +136 -0
- data/lib/fdx_v660_api/models/reward_program_membership_entity.rb +158 -0
- data/lib/fdx_v660_api/models/reward_programs_entity.rb +104 -0
- data/lib/fdx_v660_api/models/reward_transactions_entity.rb +105 -0
- data/lib/fdx_v660_api/models/reward_type.rb +44 -0
- data/lib/fdx_v660_api/models/reward_type1.rb +40 -0
- data/lib/fdx_v660_api/models/rewards_terms_and_conditions_entity.rb +258 -0
- data/lib/fdx_v660_api/models/rewards_terms_and_conditions_entity2.rb +269 -0
- data/lib/fdx_v660_api/models/royalty_income_statement.rb +436 -0
- data/lib/fdx_v660_api/models/sale_proceeds_type.rb +36 -0
- data/lib/fdx_v660_api/models/sale_proceeds_type1.rb +36 -0
- data/lib/fdx_v660_api/models/sale_proceeds_type3.rb +36 -0
- data/lib/fdx_v660_api/models/sale_term_type.rb +36 -0
- data/lib/fdx_v660_api/models/sale_term_type1.rb +36 -0
- data/lib/fdx_v660_api/models/sale_term_type2.rb +36 -0
- data/lib/fdx_v660_api/models/sale_term_type4.rb +36 -0
- data/lib/fdx_v660_api/models/scheduled_payment_entity.rb +116 -0
- data/lib/fdx_v660_api/models/scheduled_payment_type.rb +40 -0
- data/lib/fdx_v660_api/models/scheduled_payment_type2.rb +40 -0
- data/lib/fdx_v660_api/models/secured.rb +36 -0
- data/lib/fdx_v660_api/models/secured2.rb +36 -0
- data/lib/fdx_v660_api/models/security_category.rb +68 -0
- data/lib/fdx_v660_api/models/security_category1.rb +26 -0
- data/lib/fdx_v660_api/models/security_category11.rb +26 -0
- data/lib/fdx_v660_api/models/security_category2.rb +26 -0
- data/lib/fdx_v660_api/models/security_category3.rb +26 -0
- data/lib/fdx_v660_api/models/security_category4.rb +26 -0
- data/lib/fdx_v660_api/models/security_category5.rb +26 -0
- data/lib/fdx_v660_api/models/security_category6.rb +26 -0
- data/lib/fdx_v660_api/models/security_category7.rb +26 -0
- data/lib/fdx_v660_api/models/security_category8.rb +26 -0
- data/lib/fdx_v660_api/models/security_category9.rb +26 -0
- data/lib/fdx_v660_api/models/security_detail_irs_form1099_b.rb +437 -0
- data/lib/fdx_v660_api/models/security_entity.rb +118 -0
- data/lib/fdx_v660_api/models/security_id_entity.rb +95 -0
- data/lib/fdx_v660_api/models/security_id_type.rb +87 -0
- data/lib/fdx_v660_api/models/security_id_type1.rb +76 -0
- data/lib/fdx_v660_api/models/state_and_local_tax_withholding.rb +95 -0
- data/lib/fdx_v660_api/models/state_and_local_tax_withholding1.rb +95 -0
- data/lib/fdx_v660_api/models/state_and_local_tax_withholding2.rb +95 -0
- data/lib/fdx_v660_api/models/state_code.rb +286 -0
- data/lib/fdx_v660_api/models/state_code1.rb +276 -0
- data/lib/fdx_v660_api/models/state_exempt_income.rb +95 -0
- data/lib/fdx_v660_api/models/state_tax_withholding.rb +95 -0
- data/lib/fdx_v660_api/models/state_tax_withholding2.rb +95 -0
- data/lib/fdx_v660_api/models/statement_encoded_entity.rb +160 -0
- data/lib/fdx_v660_api/models/statement_encoded_entity1.rb +161 -0
- data/lib/fdx_v660_api/models/statement_entity.rb +135 -0
- data/lib/fdx_v660_api/models/stock_security_entity.rb +159 -0
- data/lib/fdx_v660_api/models/stock_type.rb +44 -0
- data/lib/fdx_v660_api/models/stock_type2.rb +44 -0
- data/lib/fdx_v660_api/models/sub_account_type.rb +44 -0
- data/lib/fdx_v660_api/models/sub_account_type1.rb +44 -0
- data/lib/fdx_v660_api/models/sub_account_type2.rb +44 -0
- data/lib/fdx_v660_api/models/sub_account_type4.rb +44 -0
- data/lib/fdx_v660_api/models/supplemental_status.rb +64 -0
- data/lib/fdx_v660_api/models/supplemental_status2.rb +64 -0
- data/lib/fdx_v660_api/models/suspected_fraud_incident_entity.rb +133 -0
- data/lib/fdx_v660_api/models/sweep_security_entity.rb +147 -0
- data/lib/fdx_v660_api/models/synchronizable_array_entity.rb +96 -0
- data/lib/fdx_v660_api/models/synchronizable_array_links_entity.rb +95 -0
- data/lib/fdx_v660_api/models/synchronizable_array_links_entity2.rb +95 -0
- data/lib/fdx_v660_api/models/tax.rb +218 -0
- data/lib/fdx_v660_api/models/tax_data.rb +706 -0
- data/lib/fdx_v660_api/models/tax_data_for_qr.rb +726 -0
- data/lib/fdx_v660_api/models/tax_exempt_income_state_allocation.rb +106 -0
- data/lib/fdx_v660_api/models/tax_form_address.rb +166 -0
- data/lib/fdx_v660_api/models/tax_form_address1.rb +165 -0
- data/lib/fdx_v660_api/models/tax_form_address3.rb +165 -0
- data/lib/fdx_v660_api/models/tax_form_address5.rb +165 -0
- data/lib/fdx_v660_api/models/tax_form_attribute.rb +106 -0
- data/lib/fdx_v660_api/models/tax_lot_entity.rb +140 -0
- data/lib/fdx_v660_api/models/tax_party.rb +141 -0
- data/lib/fdx_v660_api/models/tax_party1.rb +143 -0
- data/lib/fdx_v660_api/models/tax_party2.rb +141 -0
- data/lib/fdx_v660_api/models/tax_party3.rb +141 -0
- data/lib/fdx_v660_api/models/tax_party4.rb +141 -0
- data/lib/fdx_v660_api/models/tax_party5.rb +141 -0
- data/lib/fdx_v660_api/models/tax_party6.rb +142 -0
- data/lib/fdx_v660_api/models/tax_party8.rb +142 -0
- data/lib/fdx_v660_api/models/tax_party_type.rb +36 -0
- data/lib/fdx_v660_api/models/tax_party_type2.rb +37 -0
- data/lib/fdx_v660_api/models/tax_refund_direct_deposit.rb +108 -0
- data/lib/fdx_v660_api/models/tax_refund_direct_deposit2.rb +108 -0
- data/lib/fdx_v660_api/models/tax_statement.rb +274 -0
- data/lib/fdx_v660_api/models/tax_statement1.rb +275 -0
- data/lib/fdx_v660_api/models/tax_statement2.rb +275 -0
- data/lib/fdx_v660_api/models/tax_statement4.rb +275 -0
- data/lib/fdx_v660_api/models/tax_statement6.rb +275 -0
- data/lib/fdx_v660_api/models/tax_statement_list.rb +85 -0
- data/lib/fdx_v660_api/models/telephone_network.rb +49 -0
- data/lib/fdx_v660_api/models/telephone_number.rb +130 -0
- data/lib/fdx_v660_api/models/telephone_number2.rb +130 -0
- data/lib/fdx_v660_api/models/telephone_number3.rb +130 -0
- data/lib/fdx_v660_api/models/telephone_number_plus_extension.rb +141 -0
- data/lib/fdx_v660_api/models/telephone_number_plus_extension1.rb +130 -0
- data/lib/fdx_v660_api/models/telephone_number_plus_extension2.rb +130 -0
- data/lib/fdx_v660_api/models/telephone_number_plus_extension3.rb +130 -0
- data/lib/fdx_v660_api/models/telephone_number_purpose.rb +54 -0
- data/lib/fdx_v660_api/models/telephone_number_purpose2.rb +54 -0
- data/lib/fdx_v660_api/models/terms_and_conditions_common_elements.rb +238 -0
- data/lib/fdx_v660_api/models/terms_and_conditions_uri_entity.rb +142 -0
- data/lib/fdx_v660_api/models/time_and_occurrence_based_transfer_limits.rb +115 -0
- data/lib/fdx_v660_api/models/time_and_occurrence_based_transfer_limits1.rb +115 -0
- data/lib/fdx_v660_api/models/time_and_occurrence_based_transfer_limits3.rb +115 -0
- data/lib/fdx_v660_api/models/timeframe_based_limits_for_a_payment_network.rb +139 -0
- data/lib/fdx_v660_api/models/timeframe_based_limits_for_a_payment_network1.rb +138 -0
- data/lib/fdx_v660_api/models/timeframe_based_limits_for_a_payment_network2.rb +138 -0
- data/lib/fdx_v660_api/models/timeframe_based_limits_for_a_payment_network3.rb +138 -0
- data/lib/fdx_v660_api/models/timeframe_based_limits_for_a_payment_network5.rb +138 -0
- data/lib/fdx_v660_api/models/transaction.rb +449 -0
- data/lib/fdx_v660_api/models/transaction_limit.rb +97 -0
- data/lib/fdx_v660_api/models/transaction_payee_entity.rb +120 -0
- data/lib/fdx_v660_api/models/transaction_payee_entity1.rb +129 -0
- data/lib/fdx_v660_api/models/transaction_payee_entity3.rb +129 -0
- data/lib/fdx_v660_api/models/transaction_reason.rb +40 -0
- data/lib/fdx_v660_api/models/transaction_reason2.rb +41 -0
- data/lib/fdx_v660_api/models/transaction_reward_entity.rb +117 -0
- data/lib/fdx_v660_api/models/transaction_status.rb +44 -0
- data/lib/fdx_v660_api/models/transaction_status2.rb +44 -0
- data/lib/fdx_v660_api/models/transaction_summary.rb +258 -0
- data/lib/fdx_v660_api/models/transactions_entity.rb +109 -0
- data/lib/fdx_v660_api/models/transfer_entity.rb +182 -0
- data/lib/fdx_v660_api/models/transfer_for_create_entity.rb +141 -0
- data/lib/fdx_v660_api/models/transfer_for_create_entity1.rb +141 -0
- data/lib/fdx_v660_api/models/transfer_for_create_entity2.rb +141 -0
- data/lib/fdx_v660_api/models/transfer_out_use_case.rb +36 -0
- data/lib/fdx_v660_api/models/transfers_entity.rb +113 -0
- data/lib/fdx_v660_api/models/treasury_management_type.rb +45 -0
- data/lib/fdx_v660_api/models/type_data_type.rb +39 -0
- data/lib/fdx_v660_api/models/type_data_type2.rb +37 -0
- data/lib/fdx_v660_api/models/type_form_type.rb +260 -0
- data/lib/fdx_v660_api/models/type_form_type1.rb +260 -0
- data/lib/fdx_v660_api/models/unit_type.rb +36 -0
- data/lib/fdx_v660_api/models/unit_type1.rb +36 -0
- data/lib/fdx_v660_api/models/unit_type3.rb +36 -0
- data/lib/fdx_v660_api/models/update_reason.rb +44 -0
- data/lib/fdx_v660_api/models/update_reason2.rb +45 -0
- data/lib/fdx_v660_api/models/updates_metadata_entity.rb +77 -0
- data/lib/fdx_v660_api/models/updates_metadata_entity2.rb +77 -0
- data/lib/fdx_v660_api/models/uri_content_type.rb +39 -0
- data/lib/fdx_v660_api/models/uri_content_type2.rb +36 -0
- data/lib/fdx_v660_api/models/us_agency_type.rb +53 -0
- data/lib/fdx_v660_api/models/us_agency_type2.rb +52 -0
- data/lib/fdx_v660_api/models/us_government_security_income.rb +106 -0
- data/lib/fdx_v660_api/models/us_government_security_income1.rb +97 -0
- data/lib/fdx_v660_api/models/vesting_entity.rb +186 -0
- data/lib/fdx_v660_api/utilities/date_time_helper.rb +11 -0
- data/lib/fdx_v660_api/utilities/file_wrapper.rb +28 -0
- data/lib/fdx_v660_api/utilities/union_type_lookup.rb +263 -0
- data/lib/fdx_v660_api.rb +957 -0
- metadata +984 -0
|
@@ -0,0 +1,411 @@
|
|
|
1
|
+
# fdx_v660_api
|
|
2
|
+
#
|
|
3
|
+
# This file was automatically generated by APIMATIC v3.0 (
|
|
4
|
+
# https://www.apimatic.io ).
|
|
5
|
+
|
|
6
|
+
module FdxV660Api
|
|
7
|
+
# RecurringPaymentsController
|
|
8
|
+
class RecurringPaymentsController < BaseController
|
|
9
|
+
# Search for recurring payments
|
|
10
|
+
# @param [UUID | String] x_fapi_interaction_id Required parameter: Unique
|
|
11
|
+
# identifier for this interaction, as defined by [FAPI 2.0 Implementation
|
|
12
|
+
# Advice, 2.2.1
|
|
13
|
+
# x-fapi-interaction-id](https://openid.bitbucket.io/fapi/fapi-2_0-implement
|
|
14
|
+
# ation_advice.html#name-x-fapi-interaction-id)
|
|
15
|
+
# @param [FdxApiActorType] fdx_api_actor_type Optional parameter: Identifies
|
|
16
|
+
# whether the customer is present (USER) or it is a BATCH operation
|
|
17
|
+
# @param [String] fdx_api_data_provider_id Optional parameter: ID for the
|
|
18
|
+
# financial institution responding to the request
|
|
19
|
+
# @param [Array[String]] fdx_api_data_recipient_id Optional parameter: ID(s)
|
|
20
|
+
# for the data recipient(s) on whose behalf the request is being made
|
|
21
|
+
# @param [String] updated_since Optional parameter: Return items that have
|
|
22
|
+
# been created or updated since the nextUpdateId
|
|
23
|
+
# @param [String] offset Optional parameter: Opaque cursor used by the
|
|
24
|
+
# provider to send the next set of records. Deprecated in favor of
|
|
25
|
+
# PageKeyQuery, will be removed with a future major release
|
|
26
|
+
# @param [String] page_key Optional parameter: Opaque cursor used by the
|
|
27
|
+
# provider to send the next set of records. Pagination can be implemented
|
|
28
|
+
# per provider's preference
|
|
29
|
+
# @param [Integer] limit Optional parameter: Number of elements that the
|
|
30
|
+
# consumer wishes to receive. Providers should implement reasonable
|
|
31
|
+
# default/maximum/minimum values based on their internal architecture and
|
|
32
|
+
# update their documentation accordingly
|
|
33
|
+
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
34
|
+
def search_for_recurring_payments(x_fapi_interaction_id,
|
|
35
|
+
fdx_api_actor_type: nil,
|
|
36
|
+
fdx_api_data_provider_id: nil,
|
|
37
|
+
fdx_api_data_recipient_id: nil,
|
|
38
|
+
updated_since: nil,
|
|
39
|
+
offset: nil,
|
|
40
|
+
page_key: nil,
|
|
41
|
+
limit: nil)
|
|
42
|
+
@api_call
|
|
43
|
+
.request(new_request_builder(HttpMethodEnum::GET,
|
|
44
|
+
'/recurring-payments',
|
|
45
|
+
Server::DEFAULT)
|
|
46
|
+
.header_param(new_parameter(x_fapi_interaction_id, key: 'x-fapi-interaction-id')
|
|
47
|
+
.is_required(true))
|
|
48
|
+
.header_param(new_parameter(fdx_api_actor_type, key: 'FDX-API-Actor-Type'))
|
|
49
|
+
.header_param(new_parameter(fdx_api_data_provider_id, key: 'FDX-API-Data-Provider-Id'))
|
|
50
|
+
.header_param(new_parameter(fdx_api_data_recipient_id, key: 'FDX-API-Data-Recipient-Id'))
|
|
51
|
+
.query_param(new_parameter(updated_since, key: 'updatedSince'))
|
|
52
|
+
.query_param(new_parameter(offset, key: 'offset'))
|
|
53
|
+
.query_param(new_parameter(page_key, key: 'pageKey'))
|
|
54
|
+
.query_param(new_parameter(limit, key: 'limit'))
|
|
55
|
+
.header_param(new_parameter('application/json', key: 'accept')))
|
|
56
|
+
.response(new_response_handler
|
|
57
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
|
58
|
+
.deserialize_into(RecurringPaymentsEntity.method(:from_hash))
|
|
59
|
+
.is_api_response(true)
|
|
60
|
+
.local_error('404',
|
|
61
|
+
'Data not found for request parameters',
|
|
62
|
+
ErrorException)
|
|
63
|
+
.local_error('500',
|
|
64
|
+
'Catch-all exception where request was not processed due to an'\
|
|
65
|
+
' internal outage/issue. Consider other more specific errors'\
|
|
66
|
+
' before using this error',
|
|
67
|
+
ErrorException)
|
|
68
|
+
.local_error('501',
|
|
69
|
+
'Error when FdxVersion in Header is not one of those'\
|
|
70
|
+
' implemented at backend',
|
|
71
|
+
ErrorException)
|
|
72
|
+
.local_error('503',
|
|
73
|
+
'System is down for maintenance',
|
|
74
|
+
ErrorException))
|
|
75
|
+
.execute
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
# Schedule a recurring payment
|
|
79
|
+
# @param [UUID | String] x_fapi_interaction_id Required parameter: Unique
|
|
80
|
+
# identifier for this interaction, as defined by [FAPI 2.0 Implementation
|
|
81
|
+
# Advice, 2.2.1
|
|
82
|
+
# x-fapi-interaction-id](https://openid.bitbucket.io/fapi/fapi-2_0-implement
|
|
83
|
+
# ation_advice.html#name-x-fapi-interaction-id)
|
|
84
|
+
# @param [String] idempotency_key Required parameter: Used to de-duplicate
|
|
85
|
+
# requests
|
|
86
|
+
# @param [FdxApiActorType] fdx_api_actor_type Optional parameter: Identifies
|
|
87
|
+
# whether the customer is present (USER) or it is a BATCH operation
|
|
88
|
+
# @param [String] fdx_api_data_provider_id Optional parameter: ID for the
|
|
89
|
+
# financial institution responding to the request
|
|
90
|
+
# @param [Array[String]] fdx_api_data_recipient_id Optional parameter: ID(s)
|
|
91
|
+
# for the data recipient(s) on whose behalf the request is being made
|
|
92
|
+
# @param [RecurringPaymentForUpdateEntity1] body Optional parameter: TODO:
|
|
93
|
+
# type description here
|
|
94
|
+
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
95
|
+
def schedule_recurring_payment(x_fapi_interaction_id,
|
|
96
|
+
idempotency_key,
|
|
97
|
+
fdx_api_actor_type: nil,
|
|
98
|
+
fdx_api_data_provider_id: nil,
|
|
99
|
+
fdx_api_data_recipient_id: nil,
|
|
100
|
+
body: nil)
|
|
101
|
+
@api_call
|
|
102
|
+
.request(new_request_builder(HttpMethodEnum::POST,
|
|
103
|
+
'/recurring-payments',
|
|
104
|
+
Server::DEFAULT)
|
|
105
|
+
.header_param(new_parameter(x_fapi_interaction_id, key: 'x-fapi-interaction-id')
|
|
106
|
+
.is_required(true))
|
|
107
|
+
.header_param(new_parameter(idempotency_key, key: 'idempotency-key')
|
|
108
|
+
.is_required(true))
|
|
109
|
+
.header_param(new_parameter('application/json', key: 'Content-Type'))
|
|
110
|
+
.header_param(new_parameter(fdx_api_actor_type, key: 'FDX-API-Actor-Type'))
|
|
111
|
+
.header_param(new_parameter(fdx_api_data_provider_id, key: 'FDX-API-Data-Provider-Id'))
|
|
112
|
+
.header_param(new_parameter(fdx_api_data_recipient_id, key: 'FDX-API-Data-Recipient-Id'))
|
|
113
|
+
.body_param(new_parameter(body))
|
|
114
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
|
115
|
+
.body_serializer(proc do |param| param.to_json unless param.nil? end))
|
|
116
|
+
.response(new_response_handler
|
|
117
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
|
118
|
+
.deserialize_into(RecurringPaymentEntity.method(:from_hash))
|
|
119
|
+
.is_api_response(true)
|
|
120
|
+
.local_error('400',
|
|
121
|
+
'Request is invalid',
|
|
122
|
+
ErrorException)
|
|
123
|
+
.local_error('404',
|
|
124
|
+
'Requested payment is invalid',
|
|
125
|
+
ErrorException)
|
|
126
|
+
.local_error('409',
|
|
127
|
+
'Duplicate Request',
|
|
128
|
+
RecurringPaymentEntityErrorException)
|
|
129
|
+
.local_error('422',
|
|
130
|
+
'Account type not supported',
|
|
131
|
+
ErrorException)
|
|
132
|
+
.local_error('500',
|
|
133
|
+
'Catch-all exception where request was not processed due to an'\
|
|
134
|
+
' internal outage/issue. Consider other more specific errors'\
|
|
135
|
+
' before using this error',
|
|
136
|
+
ErrorException)
|
|
137
|
+
.local_error('501',
|
|
138
|
+
'Error when FdxVersion in Header is not one of those'\
|
|
139
|
+
' implemented at backend',
|
|
140
|
+
ErrorException)
|
|
141
|
+
.local_error('503',
|
|
142
|
+
'System is down for maintenance',
|
|
143
|
+
ErrorException))
|
|
144
|
+
.execute
|
|
145
|
+
end
|
|
146
|
+
|
|
147
|
+
# Get a recurring payment
|
|
148
|
+
# @param [UUID | String] x_fapi_interaction_id Required parameter: Unique
|
|
149
|
+
# identifier for this interaction, as defined by [FAPI 2.0 Implementation
|
|
150
|
+
# Advice, 2.2.1
|
|
151
|
+
# x-fapi-interaction-id](https://openid.bitbucket.io/fapi/fapi-2_0-implement
|
|
152
|
+
# ation_advice.html#name-x-fapi-interaction-id)
|
|
153
|
+
# @param [String] recurring_payment_id Required parameter: Recurring Payment
|
|
154
|
+
# Identifier. Uniquely identifies a recurring payment
|
|
155
|
+
# @param [FdxApiActorType] fdx_api_actor_type Optional parameter: Identifies
|
|
156
|
+
# whether the customer is present (USER) or it is a BATCH operation
|
|
157
|
+
# @param [String] fdx_api_data_provider_id Optional parameter: ID for the
|
|
158
|
+
# financial institution responding to the request
|
|
159
|
+
# @param [Array[String]] fdx_api_data_recipient_id Optional parameter: ID(s)
|
|
160
|
+
# for the data recipient(s) on whose behalf the request is being made
|
|
161
|
+
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
162
|
+
def get_recurring_payment(x_fapi_interaction_id,
|
|
163
|
+
recurring_payment_id,
|
|
164
|
+
fdx_api_actor_type: nil,
|
|
165
|
+
fdx_api_data_provider_id: nil,
|
|
166
|
+
fdx_api_data_recipient_id: nil)
|
|
167
|
+
@api_call
|
|
168
|
+
.request(new_request_builder(HttpMethodEnum::GET,
|
|
169
|
+
'/recurring-payments/{recurringPaymentId}',
|
|
170
|
+
Server::DEFAULT)
|
|
171
|
+
.header_param(new_parameter(x_fapi_interaction_id, key: 'x-fapi-interaction-id')
|
|
172
|
+
.is_required(true))
|
|
173
|
+
.template_param(new_parameter(recurring_payment_id, key: 'recurringPaymentId')
|
|
174
|
+
.is_required(true)
|
|
175
|
+
.should_encode(true))
|
|
176
|
+
.header_param(new_parameter(fdx_api_actor_type, key: 'FDX-API-Actor-Type'))
|
|
177
|
+
.header_param(new_parameter(fdx_api_data_provider_id, key: 'FDX-API-Data-Provider-Id'))
|
|
178
|
+
.header_param(new_parameter(fdx_api_data_recipient_id, key: 'FDX-API-Data-Recipient-Id'))
|
|
179
|
+
.header_param(new_parameter('application/json', key: 'accept')))
|
|
180
|
+
.response(new_response_handler
|
|
181
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
|
182
|
+
.deserialize_into(RecurringPaymentEntity.method(:from_hash))
|
|
183
|
+
.is_api_response(true)
|
|
184
|
+
.local_error('404',
|
|
185
|
+
'A recurring payment with provided ID was not found',
|
|
186
|
+
ErrorException)
|
|
187
|
+
.local_error('500',
|
|
188
|
+
'Catch-all exception where request was not processed due to an'\
|
|
189
|
+
' internal outage/issue. Consider other more specific errors'\
|
|
190
|
+
' before using this error',
|
|
191
|
+
ErrorException)
|
|
192
|
+
.local_error('501',
|
|
193
|
+
'Error when FdxVersion in Header is not one of those'\
|
|
194
|
+
' implemented at backend',
|
|
195
|
+
ErrorException)
|
|
196
|
+
.local_error('503',
|
|
197
|
+
'System is down for maintenance',
|
|
198
|
+
ErrorException))
|
|
199
|
+
.execute
|
|
200
|
+
end
|
|
201
|
+
|
|
202
|
+
# Update a recurring payment
|
|
203
|
+
# @param [UUID | String] x_fapi_interaction_id Required parameter: Unique
|
|
204
|
+
# identifier for this interaction, as defined by [FAPI 2.0 Implementation
|
|
205
|
+
# Advice, 2.2.1
|
|
206
|
+
# x-fapi-interaction-id](https://openid.bitbucket.io/fapi/fapi-2_0-implement
|
|
207
|
+
# ation_advice.html#name-x-fapi-interaction-id)
|
|
208
|
+
# @param [String] recurring_payment_id Required parameter: Recurring Payment
|
|
209
|
+
# Identifier. Uniquely identifies a recurring payment
|
|
210
|
+
# @param [String] idempotency_key Required parameter: Used to de-duplicate
|
|
211
|
+
# requests
|
|
212
|
+
# @param [FdxApiActorType] fdx_api_actor_type Optional parameter: Identifies
|
|
213
|
+
# whether the customer is present (USER) or it is a BATCH operation
|
|
214
|
+
# @param [String] fdx_api_data_provider_id Optional parameter: ID for the
|
|
215
|
+
# financial institution responding to the request
|
|
216
|
+
# @param [Array[String]] fdx_api_data_recipient_id Optional parameter: ID(s)
|
|
217
|
+
# for the data recipient(s) on whose behalf the request is being made
|
|
218
|
+
# @param [RecurringPaymentForUpdateEntity2] body Optional parameter: TODO:
|
|
219
|
+
# type description here
|
|
220
|
+
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
221
|
+
def update_recurring_payment(x_fapi_interaction_id,
|
|
222
|
+
recurring_payment_id,
|
|
223
|
+
idempotency_key,
|
|
224
|
+
fdx_api_actor_type: nil,
|
|
225
|
+
fdx_api_data_provider_id: nil,
|
|
226
|
+
fdx_api_data_recipient_id: nil,
|
|
227
|
+
body: nil)
|
|
228
|
+
@api_call
|
|
229
|
+
.request(new_request_builder(HttpMethodEnum::PATCH,
|
|
230
|
+
'/recurring-payments/{recurringPaymentId}',
|
|
231
|
+
Server::DEFAULT)
|
|
232
|
+
.header_param(new_parameter(x_fapi_interaction_id, key: 'x-fapi-interaction-id')
|
|
233
|
+
.is_required(true))
|
|
234
|
+
.template_param(new_parameter(recurring_payment_id, key: 'recurringPaymentId')
|
|
235
|
+
.is_required(true)
|
|
236
|
+
.should_encode(true))
|
|
237
|
+
.header_param(new_parameter(idempotency_key, key: 'idempotency-key')
|
|
238
|
+
.is_required(true))
|
|
239
|
+
.header_param(new_parameter('application/json', key: 'Content-Type'))
|
|
240
|
+
.header_param(new_parameter(fdx_api_actor_type, key: 'FDX-API-Actor-Type'))
|
|
241
|
+
.header_param(new_parameter(fdx_api_data_provider_id, key: 'FDX-API-Data-Provider-Id'))
|
|
242
|
+
.header_param(new_parameter(fdx_api_data_recipient_id, key: 'FDX-API-Data-Recipient-Id'))
|
|
243
|
+
.body_param(new_parameter(body))
|
|
244
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
|
245
|
+
.body_serializer(proc do |param| param.to_json unless param.nil? end))
|
|
246
|
+
.response(new_response_handler
|
|
247
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
|
248
|
+
.deserialize_into(RecurringPaymentEntity.method(:from_hash))
|
|
249
|
+
.is_api_response(true)
|
|
250
|
+
.local_error('400',
|
|
251
|
+
'Request is invalid',
|
|
252
|
+
ErrorException)
|
|
253
|
+
.local_error('404',
|
|
254
|
+
'Requested recurring payment change is invalid',
|
|
255
|
+
ErrorException)
|
|
256
|
+
.local_error('409',
|
|
257
|
+
'Duplicate Request',
|
|
258
|
+
RecurringPaymentEntityErrorException)
|
|
259
|
+
.local_error('422',
|
|
260
|
+
'Account type not supported',
|
|
261
|
+
ErrorException)
|
|
262
|
+
.local_error('500',
|
|
263
|
+
'Catch-all exception where request was not processed due to an'\
|
|
264
|
+
' internal outage/issue. Consider other more specific errors'\
|
|
265
|
+
' before using this error',
|
|
266
|
+
ErrorException)
|
|
267
|
+
.local_error('501',
|
|
268
|
+
'Error when FdxVersion in Header is not one of those'\
|
|
269
|
+
' implemented at backend',
|
|
270
|
+
ErrorException)
|
|
271
|
+
.local_error('503',
|
|
272
|
+
'System is down for maintenance',
|
|
273
|
+
ErrorException))
|
|
274
|
+
.execute
|
|
275
|
+
end
|
|
276
|
+
|
|
277
|
+
# Cancel a recurring payment
|
|
278
|
+
# @param [UUID | String] x_fapi_interaction_id Required parameter: Unique
|
|
279
|
+
# identifier for this interaction, as defined by [FAPI 2.0 Implementation
|
|
280
|
+
# Advice, 2.2.1
|
|
281
|
+
# x-fapi-interaction-id](https://openid.bitbucket.io/fapi/fapi-2_0-implement
|
|
282
|
+
# ation_advice.html#name-x-fapi-interaction-id)
|
|
283
|
+
# @param [String] recurring_payment_id Required parameter: Recurring Payment
|
|
284
|
+
# Identifier. Uniquely identifies a recurring payment
|
|
285
|
+
# @param [FdxApiActorType] fdx_api_actor_type Optional parameter: Identifies
|
|
286
|
+
# whether the customer is present (USER) or it is a BATCH operation
|
|
287
|
+
# @param [String] fdx_api_data_provider_id Optional parameter: ID for the
|
|
288
|
+
# financial institution responding to the request
|
|
289
|
+
# @param [Array[String]] fdx_api_data_recipient_id Optional parameter: ID(s)
|
|
290
|
+
# for the data recipient(s) on whose behalf the request is being made
|
|
291
|
+
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
292
|
+
def cancel_recurring_payment(x_fapi_interaction_id,
|
|
293
|
+
recurring_payment_id,
|
|
294
|
+
fdx_api_actor_type: nil,
|
|
295
|
+
fdx_api_data_provider_id: nil,
|
|
296
|
+
fdx_api_data_recipient_id: nil)
|
|
297
|
+
@api_call
|
|
298
|
+
.request(new_request_builder(HttpMethodEnum::DELETE,
|
|
299
|
+
'/recurring-payments/{recurringPaymentId}',
|
|
300
|
+
Server::DEFAULT)
|
|
301
|
+
.header_param(new_parameter(x_fapi_interaction_id, key: 'x-fapi-interaction-id')
|
|
302
|
+
.is_required(true))
|
|
303
|
+
.template_param(new_parameter(recurring_payment_id, key: 'recurringPaymentId')
|
|
304
|
+
.is_required(true)
|
|
305
|
+
.should_encode(true))
|
|
306
|
+
.header_param(new_parameter(fdx_api_actor_type, key: 'FDX-API-Actor-Type'))
|
|
307
|
+
.header_param(new_parameter(fdx_api_data_provider_id, key: 'FDX-API-Data-Provider-Id'))
|
|
308
|
+
.header_param(new_parameter(fdx_api_data_recipient_id, key: 'FDX-API-Data-Recipient-Id'))
|
|
309
|
+
.header_param(new_parameter('application/json', key: 'accept')))
|
|
310
|
+
.response(new_response_handler
|
|
311
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
|
312
|
+
.deserialize_into(RecurringPaymentEntity.method(:from_hash))
|
|
313
|
+
.is_api_response(true)
|
|
314
|
+
.local_error('400',
|
|
315
|
+
'Recurring payment cannot be modified or cancelled at this time'\
|
|
316
|
+
'. Likely due to the state that it is in',
|
|
317
|
+
ErrorException)
|
|
318
|
+
.local_error('404',
|
|
319
|
+
'A recurring payment with provided ID was not found',
|
|
320
|
+
ErrorException)
|
|
321
|
+
.local_error('500',
|
|
322
|
+
'Catch-all exception where request was not processed due to an'\
|
|
323
|
+
' internal outage/issue. Consider other more specific errors'\
|
|
324
|
+
' before using this error',
|
|
325
|
+
ErrorException)
|
|
326
|
+
.local_error('501',
|
|
327
|
+
'Error when FdxVersion in Header is not one of those'\
|
|
328
|
+
' implemented at backend',
|
|
329
|
+
ErrorException)
|
|
330
|
+
.local_error('503',
|
|
331
|
+
'System is down for maintenance',
|
|
332
|
+
ErrorException))
|
|
333
|
+
.execute
|
|
334
|
+
end
|
|
335
|
+
|
|
336
|
+
# Search for payments associated with the recurring payment
|
|
337
|
+
# @param [UUID | String] x_fapi_interaction_id Required parameter: Unique
|
|
338
|
+
# identifier for this interaction, as defined by [FAPI 2.0 Implementation
|
|
339
|
+
# Advice, 2.2.1
|
|
340
|
+
# x-fapi-interaction-id](https://openid.bitbucket.io/fapi/fapi-2_0-implement
|
|
341
|
+
# ation_advice.html#name-x-fapi-interaction-id)
|
|
342
|
+
# @param [String] recurring_payment_id Required parameter: Recurring Payment
|
|
343
|
+
# Identifier. Uniquely identifies a recurring payment
|
|
344
|
+
# @param [FdxApiActorType] fdx_api_actor_type Optional parameter: Identifies
|
|
345
|
+
# whether the customer is present (USER) or it is a BATCH operation
|
|
346
|
+
# @param [String] fdx_api_data_provider_id Optional parameter: ID for the
|
|
347
|
+
# financial institution responding to the request
|
|
348
|
+
# @param [Array[String]] fdx_api_data_recipient_id Optional parameter: ID(s)
|
|
349
|
+
# for the data recipient(s) on whose behalf the request is being made
|
|
350
|
+
# @param [String] updated_since Optional parameter: Return items that have
|
|
351
|
+
# been created or updated since the nextUpdateId
|
|
352
|
+
# @param [String] offset Optional parameter: Opaque cursor used by the
|
|
353
|
+
# provider to send the next set of records. Deprecated in favor of
|
|
354
|
+
# PageKeyQuery, will be removed with a future major release
|
|
355
|
+
# @param [String] page_key Optional parameter: Opaque cursor used by the
|
|
356
|
+
# provider to send the next set of records. Pagination can be implemented
|
|
357
|
+
# per provider's preference
|
|
358
|
+
# @param [Integer] limit Optional parameter: Number of elements that the
|
|
359
|
+
# consumer wishes to receive. Providers should implement reasonable
|
|
360
|
+
# default/maximum/minimum values based on their internal architecture and
|
|
361
|
+
# update their documentation accordingly
|
|
362
|
+
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
363
|
+
def get_payments_for_recurring_payment(x_fapi_interaction_id,
|
|
364
|
+
recurring_payment_id,
|
|
365
|
+
fdx_api_actor_type: nil,
|
|
366
|
+
fdx_api_data_provider_id: nil,
|
|
367
|
+
fdx_api_data_recipient_id: nil,
|
|
368
|
+
updated_since: nil,
|
|
369
|
+
offset: nil,
|
|
370
|
+
page_key: nil,
|
|
371
|
+
limit: nil)
|
|
372
|
+
@api_call
|
|
373
|
+
.request(new_request_builder(HttpMethodEnum::GET,
|
|
374
|
+
'/recurring-payments/{recurringPaymentId}/payments',
|
|
375
|
+
Server::DEFAULT)
|
|
376
|
+
.header_param(new_parameter(x_fapi_interaction_id, key: 'x-fapi-interaction-id')
|
|
377
|
+
.is_required(true))
|
|
378
|
+
.template_param(new_parameter(recurring_payment_id, key: 'recurringPaymentId')
|
|
379
|
+
.is_required(true)
|
|
380
|
+
.should_encode(true))
|
|
381
|
+
.header_param(new_parameter(fdx_api_actor_type, key: 'FDX-API-Actor-Type'))
|
|
382
|
+
.header_param(new_parameter(fdx_api_data_provider_id, key: 'FDX-API-Data-Provider-Id'))
|
|
383
|
+
.header_param(new_parameter(fdx_api_data_recipient_id, key: 'FDX-API-Data-Recipient-Id'))
|
|
384
|
+
.query_param(new_parameter(updated_since, key: 'updatedSince'))
|
|
385
|
+
.query_param(new_parameter(offset, key: 'offset'))
|
|
386
|
+
.query_param(new_parameter(page_key, key: 'pageKey'))
|
|
387
|
+
.query_param(new_parameter(limit, key: 'limit'))
|
|
388
|
+
.header_param(new_parameter('application/json', key: 'accept')))
|
|
389
|
+
.response(new_response_handler
|
|
390
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
|
391
|
+
.deserialize_into(PaymentsEntity.method(:from_hash))
|
|
392
|
+
.is_api_response(true)
|
|
393
|
+
.local_error('404',
|
|
394
|
+
'A recurring payment with provided ID was not found',
|
|
395
|
+
ErrorException)
|
|
396
|
+
.local_error('500',
|
|
397
|
+
'Catch-all exception where request was not processed due to an'\
|
|
398
|
+
' internal outage/issue. Consider other more specific errors'\
|
|
399
|
+
' before using this error',
|
|
400
|
+
ErrorException)
|
|
401
|
+
.local_error('501',
|
|
402
|
+
'Error when FdxVersion in Header is not one of those'\
|
|
403
|
+
' implemented at backend',
|
|
404
|
+
ErrorException)
|
|
405
|
+
.local_error('503',
|
|
406
|
+
'System is down for maintenance',
|
|
407
|
+
ErrorException))
|
|
408
|
+
.execute
|
|
409
|
+
end
|
|
410
|
+
end
|
|
411
|
+
end
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
# fdx_v660_api
|
|
2
|
+
#
|
|
3
|
+
# This file was automatically generated by APIMATIC v3.0 (
|
|
4
|
+
# https://www.apimatic.io ).
|
|
5
|
+
|
|
6
|
+
module FdxV660Api
|
|
7
|
+
# RequestForPaymentsController
|
|
8
|
+
class RequestForPaymentsController < BaseController
|
|
9
|
+
# Search for request for payments
|
|
10
|
+
# @param [UUID | String] x_fapi_interaction_id Required parameter: Unique
|
|
11
|
+
# identifier for this interaction, as defined by [FAPI 2.0 Implementation
|
|
12
|
+
# Advice, 2.2.1
|
|
13
|
+
# x-fapi-interaction-id](https://openid.bitbucket.io/fapi/fapi-2_0-implement
|
|
14
|
+
# ation_advice.html#name-x-fapi-interaction-id)
|
|
15
|
+
# @param [FdxApiActorType] fdx_api_actor_type Optional parameter: Identifies
|
|
16
|
+
# whether the customer is present (USER) or it is a BATCH operation
|
|
17
|
+
# @param [String] fdx_api_data_provider_id Optional parameter: ID for the
|
|
18
|
+
# financial institution responding to the request
|
|
19
|
+
# @param [Array[String]] fdx_api_data_recipient_id Optional parameter: ID(s)
|
|
20
|
+
# for the data recipient(s) on whose behalf the request is being made
|
|
21
|
+
# @param [String] account_id Optional parameter: Account Identifier for use
|
|
22
|
+
# in searching or authorization. Optional
|
|
23
|
+
# @param [Date] start_date Optional parameter: Start date for use in
|
|
24
|
+
# retrieval of elements (ISO 8601 format). Provider to define the date
|
|
25
|
+
# ranges and behaviors they will support. Example of defined behavior: -
|
|
26
|
+
# Recipients need to either specify both start date and end date or neither.
|
|
27
|
+
# If both start date and end date are not specified; default provided.
|
|
28
|
+
# Default range: 7 Days of past data. (Today's date - 6 days both dates
|
|
29
|
+
# are inclusive) - Recipient can specify the same start date and end date.
|
|
30
|
+
# The returned data will reflect transactions from that date - If
|
|
31
|
+
# start date and end date both are specified and if start date is later than
|
|
32
|
+
# end date, return 'invalid date range' error code: 703, HTTPS 400 per
|
|
33
|
+
# the FDX spec - If start Date and end date both are specified and if
|
|
34
|
+
# start date is older than what the Data Provider supports, then the
|
|
35
|
+
# Data Provider should return 'invalid date range' error code: 703, HTTPS
|
|
36
|
+
# 400 per the FDX spec. Example: If today is 5/14/2024 and the DP
|
|
37
|
+
# supports 24 months, the start date should be 5/14/2022 and newer; it
|
|
38
|
+
# should not be 5/13/2022 or older - If start date is specified but end
|
|
39
|
+
# date is not specified or vice versa; Data Provider should return
|
|
40
|
+
# 'invalid date range' error code: 703, HTTPS 400 per the FDX spec
|
|
41
|
+
# @param [Date] end_date Optional parameter: End date for use in retrieval
|
|
42
|
+
# of elements (ISO 8601 format). Provider to define the date ranges and
|
|
43
|
+
# behaviors they will support. Example of defined behavior: - Recipients
|
|
44
|
+
# need to either specify both start date and end date or neither. If
|
|
45
|
+
# both start date and end date are not specified; default provided.
|
|
46
|
+
# Default range: 7 Days of past data. (Today's date - 6 days both dates are
|
|
47
|
+
# inclusive) - Recipient can specify the same start date and end date. The
|
|
48
|
+
# returned data will reflect transactions from that date - If start date
|
|
49
|
+
# and end date both are specified and if start date is later than end date,
|
|
50
|
+
# return 'invalid date range' error code: 703, HTTPS 400 per the FDX spec
|
|
51
|
+
# - If start Date and end date both are specified and if start date is
|
|
52
|
+
# older than what the Data Provider supports, then the Data Provider
|
|
53
|
+
# should return 'invalid date range' error code: 703, HTTPS 400 per the FDX
|
|
54
|
+
# spec. Example: If today is 5/14/2024 and the DP supports 24 months,
|
|
55
|
+
# the start date should be 5/14/2022 and newer; it should not be
|
|
56
|
+
# 5/13/2022 or older - If start date is specified but end date is not
|
|
57
|
+
# specified or vice versa; Data Provider should return 'invalid date
|
|
58
|
+
# range' error code: 703, HTTPS 400 per the FDX spec - If end date is
|
|
59
|
+
# today's date, the most recent transactions from the time the request is
|
|
60
|
+
# received will be returned
|
|
61
|
+
# @param [Array[RequestForPaymentStatus]] status Optional parameter: One or
|
|
62
|
+
# more request for payment status enums to filter the payments being
|
|
63
|
+
# requested. Comma separated
|
|
64
|
+
# @param [String] updated_since Optional parameter: Return items that have
|
|
65
|
+
# been created or updated since the nextUpdateId
|
|
66
|
+
# @param [String] page_key Optional parameter: Opaque cursor used by the
|
|
67
|
+
# provider to send the next set of records. Pagination can be implemented
|
|
68
|
+
# per provider's preference
|
|
69
|
+
# @param [Integer] limit Optional parameter: Number of elements that the
|
|
70
|
+
# consumer wishes to receive. Providers should implement reasonable
|
|
71
|
+
# default/maximum/minimum values based on their internal architecture and
|
|
72
|
+
# update their documentation accordingly
|
|
73
|
+
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
74
|
+
def search_for_request_for_payments(x_fapi_interaction_id,
|
|
75
|
+
fdx_api_actor_type: nil,
|
|
76
|
+
fdx_api_data_provider_id: nil,
|
|
77
|
+
fdx_api_data_recipient_id: nil,
|
|
78
|
+
account_id: nil,
|
|
79
|
+
start_date: nil,
|
|
80
|
+
end_date: nil,
|
|
81
|
+
status: nil,
|
|
82
|
+
updated_since: nil,
|
|
83
|
+
page_key: nil,
|
|
84
|
+
limit: nil)
|
|
85
|
+
@api_call
|
|
86
|
+
.request(new_request_builder(HttpMethodEnum::GET,
|
|
87
|
+
'/request-for-payments',
|
|
88
|
+
Server::DEFAULT)
|
|
89
|
+
.header_param(new_parameter(x_fapi_interaction_id, key: 'x-fapi-interaction-id')
|
|
90
|
+
.is_required(true))
|
|
91
|
+
.header_param(new_parameter(fdx_api_actor_type, key: 'FDX-API-Actor-Type'))
|
|
92
|
+
.header_param(new_parameter(fdx_api_data_provider_id, key: 'FDX-API-Data-Provider-Id'))
|
|
93
|
+
.header_param(new_parameter(fdx_api_data_recipient_id, key: 'FDX-API-Data-Recipient-Id'))
|
|
94
|
+
.query_param(new_parameter(account_id, key: 'accountId'))
|
|
95
|
+
.query_param(new_parameter(start_date, key: 'startDate'))
|
|
96
|
+
.query_param(new_parameter(end_date, key: 'endDate'))
|
|
97
|
+
.query_param(new_parameter(status, key: 'status'))
|
|
98
|
+
.query_param(new_parameter(updated_since, key: 'updatedSince'))
|
|
99
|
+
.query_param(new_parameter(page_key, key: 'pageKey'))
|
|
100
|
+
.query_param(new_parameter(limit, key: 'limit'))
|
|
101
|
+
.header_param(new_parameter('application/json', key: 'accept')))
|
|
102
|
+
.response(new_response_handler
|
|
103
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
|
104
|
+
.deserialize_into(RequestForPaymentsEntity.method(:from_hash))
|
|
105
|
+
.is_api_response(true)
|
|
106
|
+
.local_error('404',
|
|
107
|
+
'Data not found for request parameters',
|
|
108
|
+
ErrorException)
|
|
109
|
+
.local_error('500',
|
|
110
|
+
'Catch-all exception where request was not processed due to an'\
|
|
111
|
+
' internal outage/issue. Consider other more specific errors'\
|
|
112
|
+
' before using this error',
|
|
113
|
+
ErrorException)
|
|
114
|
+
.local_error('501',
|
|
115
|
+
'Error when FdxVersion in Header is not one of those'\
|
|
116
|
+
' implemented at backend',
|
|
117
|
+
ErrorException)
|
|
118
|
+
.local_error('503',
|
|
119
|
+
'System is down for maintenance',
|
|
120
|
+
ErrorException))
|
|
121
|
+
.execute
|
|
122
|
+
end
|
|
123
|
+
|
|
124
|
+
# Get the details for a request for payment
|
|
125
|
+
# @param [UUID | String] x_fapi_interaction_id Required parameter: Unique
|
|
126
|
+
# identifier for this interaction, as defined by [FAPI 2.0 Implementation
|
|
127
|
+
# Advice, 2.2.1
|
|
128
|
+
# x-fapi-interaction-id](https://openid.bitbucket.io/fapi/fapi-2_0-implement
|
|
129
|
+
# ation_advice.html#name-x-fapi-interaction-id)
|
|
130
|
+
# @param [String] rfp_id Required parameter: Request for payment identifier.
|
|
131
|
+
# Uniquely identifies a request for payment
|
|
132
|
+
# @param [FdxApiActorType] fdx_api_actor_type Optional parameter: Identifies
|
|
133
|
+
# whether the customer is present (USER) or it is a BATCH operation
|
|
134
|
+
# @param [String] fdx_api_data_provider_id Optional parameter: ID for the
|
|
135
|
+
# financial institution responding to the request
|
|
136
|
+
# @param [Array[String]] fdx_api_data_recipient_id Optional parameter: ID(s)
|
|
137
|
+
# for the data recipient(s) on whose behalf the request is being made
|
|
138
|
+
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
139
|
+
def get_request_for_payment(x_fapi_interaction_id,
|
|
140
|
+
rfp_id,
|
|
141
|
+
fdx_api_actor_type: nil,
|
|
142
|
+
fdx_api_data_provider_id: nil,
|
|
143
|
+
fdx_api_data_recipient_id: nil)
|
|
144
|
+
@api_call
|
|
145
|
+
.request(new_request_builder(HttpMethodEnum::GET,
|
|
146
|
+
'/request-for-payments/{rfpId}',
|
|
147
|
+
Server::DEFAULT)
|
|
148
|
+
.header_param(new_parameter(x_fapi_interaction_id, key: 'x-fapi-interaction-id')
|
|
149
|
+
.is_required(true))
|
|
150
|
+
.template_param(new_parameter(rfp_id, key: 'rfpId')
|
|
151
|
+
.is_required(true)
|
|
152
|
+
.should_encode(true))
|
|
153
|
+
.header_param(new_parameter(fdx_api_actor_type, key: 'FDX-API-Actor-Type'))
|
|
154
|
+
.header_param(new_parameter(fdx_api_data_provider_id, key: 'FDX-API-Data-Provider-Id'))
|
|
155
|
+
.header_param(new_parameter(fdx_api_data_recipient_id, key: 'FDX-API-Data-Recipient-Id'))
|
|
156
|
+
.header_param(new_parameter('application/json', key: 'accept')))
|
|
157
|
+
.response(new_response_handler
|
|
158
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
|
159
|
+
.deserialize_into(RequestForPaymentEntity.method(:from_hash))
|
|
160
|
+
.is_api_response(true)
|
|
161
|
+
.local_error('404',
|
|
162
|
+
'Request for payment with provided ID was not found',
|
|
163
|
+
ErrorException)
|
|
164
|
+
.local_error('500',
|
|
165
|
+
'Catch-all exception where request was not processed due to an'\
|
|
166
|
+
' internal outage/issue. Consider other more specific errors'\
|
|
167
|
+
' before using this error',
|
|
168
|
+
ErrorException)
|
|
169
|
+
.local_error('501',
|
|
170
|
+
'Error when FdxVersion in Header is not one of those'\
|
|
171
|
+
' implemented at backend',
|
|
172
|
+
ErrorException)
|
|
173
|
+
.local_error('503',
|
|
174
|
+
'System is down for maintenance',
|
|
175
|
+
ErrorException))
|
|
176
|
+
.execute
|
|
177
|
+
end
|
|
178
|
+
end
|
|
179
|
+
end
|