pinelabs-python 0.1.0__py3-none-any.whl
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.
- pinelabs/__init__.py +1679 -0
- pinelabs/_default_clients.py +30 -0
- pinelabs/affordability_suite/__init__.py +325 -0
- pinelabs/affordability_suite/client.py +1007 -0
- pinelabs/affordability_suite/raw_client.py +1095 -0
- pinelabs/affordability_suite/types/__init__.py +477 -0
- pinelabs/affordability_suite/types/downpayment_details_request_issuer.py +26 -0
- pinelabs/affordability_suite/types/imei_validation_request_request_type.py +5 -0
- pinelabs/affordability_suite/types/offer_discovery_cardless_request_payment_option.py +29 -0
- pinelabs/affordability_suite/types/offer_discovery_cardless_request_payment_option_cardless_details.py +31 -0
- pinelabs/affordability_suite/types/offer_discovery_request_cart_coupon_discount_amount.py +31 -0
- pinelabs/affordability_suite/types/offer_discovery_request_customer_details.py +26 -0
- pinelabs/affordability_suite/types/offer_discovery_request_downpayment_details.py +31 -0
- pinelabs/affordability_suite/types/offer_discovery_request_downpayment_details_downpayment_amount.py +31 -0
- pinelabs/affordability_suite/types/offer_discovery_request_issuer.py +42 -0
- pinelabs/affordability_suite/types/offer_discovery_request_issuer_issuer_type.py +10 -0
- pinelabs/affordability_suite/types/offer_discovery_request_order_amount.py +31 -0
- pinelabs/affordability_suite/types/offer_discovery_request_payment_options.py +37 -0
- pinelabs/affordability_suite/types/offer_discovery_request_payment_options_card_details.py +26 -0
- pinelabs/affordability_suite/types/offer_discovery_request_payment_options_card_token_details.py +31 -0
- pinelabs/affordability_suite/types/offer_discovery_request_product_details_item.py +40 -0
- pinelabs/affordability_suite/types/offer_discovery_request_product_details_item_product_amount.py +31 -0
- pinelabs/affordability_suite/types/offer_discovery_request_product_details_item_product_coupon_discount_amount.py +31 -0
- pinelabs/affordability_suite/types/offer_validation_request_customer_details.py +26 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data.py +27 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details.py +52 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure.py +146 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_auth_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_cart_coupon_discount_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_convenience_fee_breakdown.py +60 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_convenience_fee_breakdown_additional_fee_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_convenience_fee_breakdown_applicable_fee_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_convenience_fee_breakdown_fee_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_convenience_fee_breakdown_fee_calculated_on_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_convenience_fee_breakdown_maximum_fee_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_convenience_fee_breakdown_subvented_fee_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_convenience_fee_breakdown_tax_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_details_item.py +119 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_details_item_after_downpayment_reduced_product_amount.py +22 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_details_item_cart_coupon_discount_product_share.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_details_item_discount.py +48 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_details_item_discount_breakup.py +36 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_details_item_discount_breakup_brand.py +24 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_details_item_discount_breakup_brand_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_details_item_discount_breakup_dealer.py +24 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_details_item_discount_breakup_dealer_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_details_item_discount_breakup_issuer.py +24 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_details_item_discount_breakup_issuer_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_details_item_discount_breakup_merchant.py +24 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_details_item_discount_breakup_merchant_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_details_item_discount_max_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_details_item_discount_min_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_details_item_downpayment_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_details_item_interest_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_details_item_product_amount.py +31 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_details_item_product_coupon_discount_amount.py +24 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_details_item_product_offer_parameters_item.py +32 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_details_item_subvention.py +40 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_details_item_subvention_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_details_item_subvention_breakup.py +36 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_details_item_subvention_breakup_brand.py +24 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_details_item_subvention_breakup_brand_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_details_item_subvention_breakup_dealer.py +24 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_details_item_subvention_breakup_dealer_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_details_item_subvention_breakup_issuer.py +24 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_details_item_subvention_breakup_issuer_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_details_item_subvention_breakup_merchant.py +24 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_details_item_subvention_breakup_merchant_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_details_item_subvention_max_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_details_item_subvention_min_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_discount.py +40 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_discount_breakup.py +34 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_discount_breakup_brand.py +22 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_discount_breakup_brand_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_discount_breakup_dealer.py +22 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_discount_breakup_dealer_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_discount_breakup_issuer.py +22 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_discount_breakup_issuer_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_discount_breakup_merchant.py +22 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_discount_breakup_merchant_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_discount_max_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_discount_min_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_downpayment_details.py +28 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_downpayment_details_downpayment_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_interest_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_loan_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_monthly_emi_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_net_payment_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_processing_fee_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_processing_fee_details.py +22 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_processing_fee_details_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_split_emi_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_total_coupon_discount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_total_discount_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_total_emi_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_offer_data_offer_details_tenure_total_subvention_amount.py +20 -0
- pinelabs/affordability_suite/types/offer_validation_request_order_amount.py +31 -0
- pinelabs/affordability_suite/types/offer_validation_request_payment_amount.py +31 -0
- pinelabs/affordability_suite/types/offer_validation_request_payment_option.py +43 -0
- pinelabs/affordability_suite/types/offer_validation_request_payment_option_card_details.py +31 -0
- pinelabs/affordability_suite/types/offer_validation_request_payment_option_card_token_details.py +46 -0
- pinelabs/affordability_suite/types/offer_validation_request_payment_option_cardless_details.py +31 -0
- pinelabs/apple_pay/__init__.py +49 -0
- pinelabs/apple_pay/client.py +190 -0
- pinelabs/apple_pay/raw_client.py +283 -0
- pinelabs/apple_pay/types/__init__.py +53 -0
- pinelabs/apple_pay/types/authorize_payment_request_decrypted_card_details.py +62 -0
- pinelabs/apple_pay/types/authorize_payment_request_decrypted_card_details_card_meta_data.py +37 -0
- pinelabs/apple_pay/types/authorize_payment_request_decrypted_card_details_card_meta_data_card_type.py +7 -0
- pinelabs/apple_pay/types/authorize_payment_request_decrypted_card_details_card_meta_data_network_name.py +7 -0
- pinelabs/authentication/__init__.py +4 -0
- pinelabs/authentication/client.py +155 -0
- pinelabs/authentication/raw_client.py +226 -0
- pinelabs/bnpl/__init__.py +46 -0
- pinelabs/bnpl/client.py +200 -0
- pinelabs/bnpl/raw_client.py +273 -0
- pinelabs/bnpl/types/__init__.py +46 -0
- pinelabs/bnpl/types/bnpl_check_eligibility_request_device_info.py +56 -0
- pinelabs/bnpl/types/bnpl_check_eligibility_request_device_info_operating_system.py +7 -0
- pinelabs/bnpl/types/bnpl_check_eligibility_request_pay_code.py +5 -0
- pinelabs/card_payments/__init__.py +4 -0
- pinelabs/card_payments/client.py +547 -0
- pinelabs/card_payments/raw_client.py +1085 -0
- pinelabs/checkout/__init__.py +37 -0
- pinelabs/checkout/client.py +225 -0
- pinelabs/checkout/raw_client.py +318 -0
- pinelabs/checkout/types/__init__.py +40 -0
- pinelabs/checkout/types/generate_checkout_link_request_allowed_payment_methods_item.py +7 -0
- pinelabs/checkout/types/generate_checkout_link_request_integration_mode.py +5 -0
- pinelabs/client.py +612 -0
- pinelabs/convenience_fee/__init__.py +4 -0
- pinelabs/convenience_fee/client.py +156 -0
- pinelabs/convenience_fee/raw_client.py +247 -0
- pinelabs/core/__init__.py +127 -0
- pinelabs/core/api_error.py +23 -0
- pinelabs/core/client_wrapper.py +132 -0
- pinelabs/core/datetime_utils.py +70 -0
- pinelabs/core/file.py +67 -0
- pinelabs/core/force_multipart.py +18 -0
- pinelabs/core/http_client.py +840 -0
- pinelabs/core/http_response.py +59 -0
- pinelabs/core/http_sse/__init__.py +42 -0
- pinelabs/core/http_sse/_api.py +112 -0
- pinelabs/core/http_sse/_decoders.py +61 -0
- pinelabs/core/http_sse/_exceptions.py +7 -0
- pinelabs/core/http_sse/_models.py +17 -0
- pinelabs/core/jsonable_encoder.py +120 -0
- pinelabs/core/logging.py +107 -0
- pinelabs/core/parse_error.py +36 -0
- pinelabs/core/pydantic_utilities.py +634 -0
- pinelabs/core/query_encoder.py +58 -0
- pinelabs/core/remove_none_from_dict.py +11 -0
- pinelabs/core/request_options.py +35 -0
- pinelabs/core/serialization.py +276 -0
- pinelabs/customers/__init__.py +34 -0
- pinelabs/customers/client.py +590 -0
- pinelabs/customers/raw_client.py +1061 -0
- pinelabs/customers/types/__init__.py +34 -0
- pinelabs/customers/types/update_customer_request_status.py +5 -0
- pinelabs/e_challans/__init__.py +55 -0
- pinelabs/e_challans/client.py +323 -0
- pinelabs/e_challans/raw_client.py +386 -0
- pinelabs/e_challans/types/__init__.py +63 -0
- pinelabs/e_challans/types/create_challan_request_convenience_fee_breakdown.py +67 -0
- pinelabs/e_challans/types/create_challan_request_convenience_fee_breakdown_additional_fee_amount.py +32 -0
- pinelabs/e_challans/types/create_challan_request_convenience_fee_breakdown_applicable_fee_amount.py +32 -0
- pinelabs/e_challans/types/create_challan_request_convenience_fee_breakdown_fee_amount.py +32 -0
- pinelabs/e_challans/types/create_challan_request_convenience_fee_breakdown_maximum_fee_amount.py +32 -0
- pinelabs/e_challans/types/create_challan_request_convenience_fee_breakdown_tax_amount.py +32 -0
- pinelabs/environment.py +7 -0
- pinelabs/errors/__init__.py +62 -0
- pinelabs/errors/bad_request_error.py +10 -0
- pinelabs/errors/conflict_error.py +11 -0
- pinelabs/errors/forbidden_error.py +11 -0
- pinelabs/errors/internal_server_error.py +11 -0
- pinelabs/errors/method_not_allowed_error.py +11 -0
- pinelabs/errors/not_found_error.py +11 -0
- pinelabs/errors/service_unavailable_error.py +11 -0
- pinelabs/errors/unauthorized_error.py +11 -0
- pinelabs/errors/unprocessable_entity_error.py +10 -0
- pinelabs/international_payments/__init__.py +4 -0
- pinelabs/international_payments/client.py +187 -0
- pinelabs/international_payments/raw_client.py +201 -0
- pinelabs/orders/__init__.py +37 -0
- pinelabs/orders/client.py +613 -0
- pinelabs/orders/raw_client.py +1132 -0
- pinelabs/orders/types/__init__.py +38 -0
- pinelabs/orders/types/create_order_request_allowed_payment_methods_item.py +8 -0
- pinelabs/orders/types/create_order_request_purchase_details.py +28 -0
- pinelabs/pay_by_points/__init__.py +49 -0
- pinelabs/pay_by_points/client.py +177 -0
- pinelabs/pay_by_points/raw_client.py +246 -0
- pinelabs/pay_by_points/types/__init__.py +49 -0
- pinelabs/pay_by_points/types/check_point_balance_request_order_details.py +27 -0
- pinelabs/pay_by_points/types/check_point_balance_request_order_details_order_amount.py +31 -0
- pinelabs/pay_by_points/types/check_point_balance_request_payment_option.py +26 -0
- pinelabs/pay_by_points/types/check_point_balance_request_payment_option_points_card_details.py +32 -0
- pinelabs/payment_links/__init__.py +34 -0
- pinelabs/payment_links/client.py +642 -0
- pinelabs/payment_links/raw_client.py +797 -0
- pinelabs/payment_links/types/__init__.py +38 -0
- pinelabs/payment_links/types/create_payment_link_request_allowed_payment_methods_item.py +7 -0
- pinelabs/payouts/__init__.py +38 -0
- pinelabs/payouts/client.py +810 -0
- pinelabs/payouts/raw_client.py +1427 -0
- pinelabs/payouts/types/__init__.py +40 -0
- pinelabs/payouts/types/create_payout_request_mode.py +5 -0
- pinelabs/payouts/types/list_payouts_request_mode.py +5 -0
- pinelabs/payouts/types/list_payouts_request_status.py +7 -0
- pinelabs/refunds/__init__.py +52 -0
- pinelabs/refunds/client.py +211 -0
- pinelabs/refunds/raw_client.py +324 -0
- pinelabs/refunds/types/__init__.py +52 -0
- pinelabs/refunds/types/create_refund_request_order_amount.py +31 -0
- pinelabs/refunds/types/create_refund_request_products_item.py +27 -0
- pinelabs/refunds/types/create_refund_request_split_info.py +29 -0
- pinelabs/refunds/types/create_refund_request_split_info_split_details_item.py +32 -0
- pinelabs/refunds/types/create_refund_request_split_info_split_details_item_amount.py +20 -0
- pinelabs/settlements/__init__.py +4 -0
- pinelabs/settlements/client.py +283 -0
- pinelabs/settlements/raw_client.py +421 -0
- pinelabs/split_settlements/__init__.py +34 -0
- pinelabs/split_settlements/client.py +254 -0
- pinelabs/split_settlements/raw_client.py +414 -0
- pinelabs/split_settlements/types/__init__.py +36 -0
- pinelabs/split_settlements/types/release_settlement_request_release_amount.py +31 -0
- pinelabs/subscriptions_plans/__init__.py +37 -0
- pinelabs/subscriptions_plans/client.py +872 -0
- pinelabs/subscriptions_plans/raw_client.py +1111 -0
- pinelabs/subscriptions_plans/types/__init__.py +38 -0
- pinelabs/subscriptions_plans/types/create_plan_request_frequency.py +10 -0
- pinelabs/subscriptions_plans/types/list_plans_request_amount_range.py +5 -0
- pinelabs/subscriptions_presentations/__init__.py +4 -0
- pinelabs/subscriptions_presentations/client.py +886 -0
- pinelabs/subscriptions_presentations/raw_client.py +1168 -0
- pinelabs/subscriptions_subscriptions/__init__.py +46 -0
- pinelabs/subscriptions_subscriptions/client.py +1014 -0
- pinelabs/subscriptions_subscriptions/raw_client.py +1281 -0
- pinelabs/subscriptions_subscriptions/types/__init__.py +46 -0
- pinelabs/subscriptions_subscriptions/types/create_subscription_request_allowed_payment_methods_item.py +7 -0
- pinelabs/subscriptions_subscriptions/types/create_subscription_request_integration_mode.py +5 -0
- pinelabs/subscriptions_subscriptions/types/list_subscriptions_request_amount_range.py +5 -0
- pinelabs/tokenization/__init__.py +37 -0
- pinelabs/tokenization/client.py +809 -0
- pinelabs/tokenization/raw_client.py +1643 -0
- pinelabs/tokenization/types/__init__.py +38 -0
- pinelabs/tokenization/types/generate_card_token_request_payment_method.py +5 -0
- pinelabs/tokenization/types/get_service_provider_token_response.py +8 -0
- pinelabs/types/__init__.py +1320 -0
- pinelabs/types/acquirer_data.py +41 -0
- pinelabs/types/address.py +72 -0
- pinelabs/types/address_address_category.py +5 -0
- pinelabs/types/amount.py +31 -0
- pinelabs/types/authorize_payment_response.py +24 -0
- pinelabs/types/authorize_payment_response_data.py +45 -0
- pinelabs/types/authorize_payment_response_data_integration_mode.py +5 -0
- pinelabs/types/authorize_payment_response_data_order_amount.py +20 -0
- pinelabs/types/authorize_payment_response_data_payments_item.py +41 -0
- pinelabs/types/authorize_payment_response_data_payments_item_acquirer_data.py +23 -0
- pinelabs/types/authorize_payment_response_data_payments_item_payment_amount.py +20 -0
- pinelabs/types/authorize_payment_response_data_payments_item_payment_method.py +7 -0
- pinelabs/types/authorize_payment_response_data_payments_item_payment_option.py +22 -0
- pinelabs/types/authorize_payment_response_data_payments_item_payment_option_wallet_data.py +25 -0
- pinelabs/types/authorize_payment_response_data_payments_item_payment_option_wallet_data_wallet_card_data.py +38 -0
- pinelabs/types/authorize_payment_response_data_payments_item_payment_option_wallet_data_wallet_card_data_card_type.py +7 -0
- pinelabs/types/authorize_payment_response_data_payments_item_payment_option_wallet_data_wallet_card_data_token_txn_type.py +7 -0
- pinelabs/types/authorize_payment_response_data_payments_item_status.py +7 -0
- pinelabs/types/authorize_payment_response_data_purchase_details.py +24 -0
- pinelabs/types/authorize_payment_response_data_purchase_details_customer.py +27 -0
- pinelabs/types/authorize_payment_response_data_status.py +18 -0
- pinelabs/types/authorize_payment_response_data_type.py +5 -0
- pinelabs/types/bank_account.py +36 -0
- pinelabs/types/bnpl_check_eligibility_response.py +32 -0
- pinelabs/types/bnpl_check_eligibility_response_metadata.py +36 -0
- pinelabs/types/bnpl_check_eligibility_response_metadata_installments_item.py +33 -0
- pinelabs/types/bnpl_resend_otp_response.py +37 -0
- pinelabs/types/bnpl_resend_otp_response_meta_data.py +26 -0
- pinelabs/types/bnpl_submit_otp_response.py +26 -0
- pinelabs/types/calculate_convenience_fee_response.py +27 -0
- pinelabs/types/calculate_convenience_fee_response_data_item.py +50 -0
- pinelabs/types/calculate_convenience_fee_response_data_item_convenience_fee_breakdown.py +28 -0
- pinelabs/types/calculate_convenience_fee_response_data_item_payment_method_metadata.py +31 -0
- pinelabs/types/capture_data_item.py +34 -0
- pinelabs/types/card_data.py +76 -0
- pinelabs/types/card_data_card_category.py +22 -0
- pinelabs/types/card_data_card_type.py +21 -0
- pinelabs/types/card_data_token_txn_type.py +5 -0
- pinelabs/types/card_detail_lookup_item.py +35 -0
- pinelabs/types/card_detail_lookup_item_payment_reference_type.py +7 -0
- pinelabs/types/card_payment_detail_item.py +66 -0
- pinelabs/types/card_token_response.py +49 -0
- pinelabs/types/cart_details.py +27 -0
- pinelabs/types/cart_item.py +66 -0
- pinelabs/types/challan_response.py +77 -0
- pinelabs/types/check_point_balance_response.py +43 -0
- pinelabs/types/check_point_balance_response_balance.py +28 -0
- pinelabs/types/check_point_balance_response_redeemable_amount.py +28 -0
- pinelabs/types/checkout_customer.py +55 -0
- pinelabs/types/checkout_product.py +29 -0
- pinelabs/types/checkout_purchase_details.py +29 -0
- pinelabs/types/create_bulk_payout_response.py +48 -0
- pinelabs/types/create_bulk_payout_response_status.py +7 -0
- pinelabs/types/create_debit_response.py +56 -0
- pinelabs/types/create_debit_response_status.py +7 -0
- pinelabs/types/create_payout_response.py +100 -0
- pinelabs/types/create_payout_response_mode.py +5 -0
- pinelabs/types/create_payout_response_status.py +7 -0
- pinelabs/types/create_presentation_response.py +58 -0
- pinelabs/types/create_presentation_response_status.py +10 -0
- pinelabs/types/create_subscription_response.py +146 -0
- pinelabs/types/create_subscription_response_allowed_payment_methods_item.py +7 -0
- pinelabs/types/create_subscription_response_integration_mode.py +5 -0
- pinelabs/types/create_subscription_response_payment_mode.py +5 -0
- pinelabs/types/create_subscription_response_status.py +23 -0
- pinelabs/types/cryptogram_response.py +39 -0
- pinelabs/types/currency_conversion_response.py +56 -0
- pinelabs/types/customer_details.py +59 -0
- pinelabs/types/customer_response.py +83 -0
- pinelabs/types/customer_response_status.py +5 -0
- pinelabs/types/customer_token_detail.py +74 -0
- pinelabs/types/customer_token_detail_payment_method.py +5 -0
- pinelabs/types/customer_tokens_response.py +48 -0
- pinelabs/types/delete_customer_token_response.py +41 -0
- pinelabs/types/delete_token_by_token_id_response.py +31 -0
- pinelabs/types/downpayment_details_response.py +27 -0
- pinelabs/types/downpayment_details_response_downpayment_details.py +47 -0
- pinelabs/types/downpayment_details_response_downpayment_details_allowed_payment_methods_item.py +7 -0
- pinelabs/types/downpayment_details_response_downpayment_details_amount_range.py +25 -0
- pinelabs/types/error_response.py +41 -0
- pinelabs/types/error_response_additional_error_details.py +36 -0
- pinelabs/types/generate_checkout_link_response.py +46 -0
- pinelabs/types/generate_token_response.py +32 -0
- pinelabs/types/get_account_balance_response.py +36 -0
- pinelabs/types/get_card_details_response.py +27 -0
- pinelabs/types/get_payouts_payment_item.py +98 -0
- pinelabs/types/get_payouts_payment_item_mode.py +5 -0
- pinelabs/types/get_payouts_payment_item_status.py +7 -0
- pinelabs/types/get_payouts_response.py +51 -0
- pinelabs/types/imei_product.py +41 -0
- pinelabs/types/imei_validation_response.py +37 -0
- pinelabs/types/imei_validation_response_products_item.py +57 -0
- pinelabs/types/imei_validation_response_products_item_product_brand_response.py +31 -0
- pinelabs/types/imei_validation_response_products_item_product_imei_status.py +5 -0
- pinelabs/types/issuer_offer.py +59 -0
- pinelabs/types/issuer_offer_issuer_data.py +79 -0
- pinelabs/types/issuer_offer_issuer_data_auth_type.py +5 -0
- pinelabs/types/issuer_offer_issuer_data_penny_transaction_amount.py +20 -0
- pinelabs/types/issuer_offer_issuer_type.py +10 -0
- pinelabs/types/list_plans_response.py +31 -0
- pinelabs/types/list_presentations_response.py +31 -0
- pinelabs/types/list_settlements_response.py +42 -0
- pinelabs/types/list_subscriptions_response.py +31 -0
- pinelabs/types/merchant_metadata.py +8 -0
- pinelabs/types/net_banking_data_response.py +32 -0
- pinelabs/types/net_banking_data_response_txn_mode.py +5 -0
- pinelabs/types/offer_discovery_error_response.py +34 -0
- pinelabs/types/offer_discovery_error_response_additional_error_details.py +22 -0
- pinelabs/types/offer_discovery_response.py +27 -0
- pinelabs/types/offer_validation_error_response.py +22 -0
- pinelabs/types/offer_validation_error_response_additional_error_details.py +22 -0
- pinelabs/types/offer_validation_response.py +24 -0
- pinelabs/types/order_response.py +24 -0
- pinelabs/types/order_response_data.py +127 -0
- pinelabs/types/order_response_data_integration_mode.py +5 -0
- pinelabs/types/order_response_data_purchase_details.py +26 -0
- pinelabs/types/order_response_data_status.py +18 -0
- pinelabs/types/order_response_data_type.py +5 -0
- pinelabs/types/otp_generate_response.py +33 -0
- pinelabs/types/otp_generate_response_meta_data.py +26 -0
- pinelabs/types/otp_generate_response_next_item.py +5 -0
- pinelabs/types/page_info.py +41 -0
- pinelabs/types/pagination_links.py +34 -0
- pinelabs/types/pagination_links_first.py +22 -0
- pinelabs/types/pagination_links_last.py +22 -0
- pinelabs/types/pagination_links_next.py +22 -0
- pinelabs/types/pagination_links_self.py +22 -0
- pinelabs/types/pagination_meta.py +41 -0
- pinelabs/types/payment_item.py +87 -0
- pinelabs/types/payment_item_error_detail.py +31 -0
- pinelabs/types/payment_item_payment_method.py +8 -0
- pinelabs/types/payment_item_payment_option.py +28 -0
- pinelabs/types/payment_item_status.py +7 -0
- pinelabs/types/payment_link_account_details.py +24 -0
- pinelabs/types/payment_link_address.py +56 -0
- pinelabs/types/payment_link_bank_details.py +36 -0
- pinelabs/types/payment_link_cart_details.py +27 -0
- pinelabs/types/payment_link_cart_item.py +29 -0
- pinelabs/types/payment_link_customer.py +64 -0
- pinelabs/types/payment_link_product_detail.py +30 -0
- pinelabs/types/payment_link_response.py +113 -0
- pinelabs/types/payment_link_response_allowed_payment_methods_item.py +7 -0
- pinelabs/types/payment_link_response_status.py +8 -0
- pinelabs/types/payment_link_split_detail.py +57 -0
- pinelabs/types/payment_link_split_detail_status.py +5 -0
- pinelabs/types/payment_link_split_info.py +32 -0
- pinelabs/types/payment_object.py +51 -0
- pinelabs/types/payment_object_acquirer_data.py +23 -0
- pinelabs/types/payment_object_payment_amount.py +20 -0
- pinelabs/types/payment_object_payment_method.py +5 -0
- pinelabs/types/payment_object_status.py +7 -0
- pinelabs/types/payment_request_item.py +54 -0
- pinelabs/types/payment_request_item_device_info.py +53 -0
- pinelabs/types/payment_request_item_device_info_operating_system.py +7 -0
- pinelabs/types/payment_request_item_offer_data.py +27 -0
- pinelabs/types/payment_request_item_offer_data_offer_details.py +52 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure.py +136 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_auth_amount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_cart_coupon_discount_amount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_convenience_fee_breakdown.py +56 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_convenience_fee_breakdown_additional_fee_amount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_convenience_fee_breakdown_applicable_fee_amount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_convenience_fee_breakdown_fee_amount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_convenience_fee_breakdown_fee_calculated_on_amount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_convenience_fee_breakdown_maximum_fee_amount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_convenience_fee_breakdown_subvented_fee_amount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_convenience_fee_breakdown_tax_amount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_details_item.py +73 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_details_item_after_downpayment_reduced_product_amount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_details_item_cart_coupon_discount_product_share.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_details_item_discount.py +36 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_details_item_discount_breakup.py +34 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_details_item_discount_breakup_brand.py +22 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_details_item_discount_breakup_brand_amount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_details_item_discount_breakup_dealer.py +22 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_details_item_discount_breakup_dealer_amount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_details_item_discount_breakup_issuer.py +22 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_details_item_discount_breakup_issuer_amount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_details_item_discount_breakup_merchant.py +24 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_details_item_discount_breakup_merchant_amount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_details_item_discount_max_amount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_details_item_discount_min_amount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_details_item_downpayment_amount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_details_item_interest_amount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_details_item_product_amount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_details_item_product_coupon_discount_amount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_details_item_product_offer_parameters_item.py +21 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_details_item_subvention.py +36 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_details_item_subvention_amount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_details_item_subvention_breakup.py +34 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_details_item_subvention_breakup_brand.py +22 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_details_item_subvention_breakup_brand_amount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_details_item_subvention_breakup_dealer.py +24 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_details_item_subvention_breakup_dealer_amount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_details_item_subvention_breakup_issuer.py +24 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_details_item_subvention_breakup_issuer_amount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_details_item_subvention_breakup_merchant.py +24 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_details_item_subvention_breakup_merchant_amount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_details_item_subvention_max_amount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_details_item_subvention_min_amount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_downpayment_details.py +28 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_downpayment_details_downpayment_amount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_intrest_amount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_loan_amount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_monthly_emi_amount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_net_payment_amount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_processing_fee_details.py +22 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_processing_fee_details_amount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_split_emi_amount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_total_coupon_discount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_total_discount_amount.py +20 -0
- pinelabs/types/payment_request_item_offer_data_offer_details_tenure_total_emi_amount.py +20 -0
- pinelabs/types/payment_request_item_payment_method.py +8 -0
- pinelabs/types/payment_request_item_payment_option.py +53 -0
- pinelabs/types/payment_request_item_payment_option_bnpl_details.py +34 -0
- pinelabs/types/payment_request_item_payment_option_bnpl_details_bnpl_pay_code.py +5 -0
- pinelabs/types/payment_request_item_payment_option_card_details.py +51 -0
- pinelabs/types/payment_request_item_payment_option_card_token_details.py +61 -0
- pinelabs/types/payment_request_item_payment_option_cardless_details.py +31 -0
- pinelabs/types/payment_request_item_payment_option_points_card_details.py +36 -0
- pinelabs/types/payout_amount.py +31 -0
- pinelabs/types/payout_detail.py +117 -0
- pinelabs/types/payout_detail_mode.py +5 -0
- pinelabs/types/payout_detail_status.py +7 -0
- pinelabs/types/payout_link.py +31 -0
- pinelabs/types/plan_response.py +96 -0
- pinelabs/types/plan_response_frequency.py +10 -0
- pinelabs/types/plan_response_status.py +5 -0
- pinelabs/types/presentation_detail.py +82 -0
- pinelabs/types/presentation_detail_pdn_status.py +7 -0
- pinelabs/types/presentation_detail_status.py +18 -0
- pinelabs/types/product_detail.py +38 -0
- pinelabs/types/refund_response.py +24 -0
- pinelabs/types/refund_response_data.py +77 -0
- pinelabs/types/refund_response_data_integration_mode.py +5 -0
- pinelabs/types/refund_response_data_order_amount.py +20 -0
- pinelabs/types/refund_response_data_purchase_details.py +24 -0
- pinelabs/types/refund_response_data_purchase_details_customer.py +31 -0
- pinelabs/types/refund_response_data_purchase_details_split_info.py +21 -0
- pinelabs/types/refund_response_data_status.py +5 -0
- pinelabs/types/refund_response_data_type.py +5 -0
- pinelabs/types/resend_otp_error_response.py +36 -0
- pinelabs/types/service_provider_token_response.py +62 -0
- pinelabs/types/service_provider_token_response_payment_method.py +5 -0
- pinelabs/types/service_provider_tokens_list_response.py +32 -0
- pinelabs/types/settlement_by_utr_response.py +146 -0
- pinelabs/types/settlement_by_utr_response_pagination.py +27 -0
- pinelabs/types/settlement_summary.py +76 -0
- pinelabs/types/settlement_transaction.py +96 -0
- pinelabs/types/simple_amount.py +31 -0
- pinelabs/types/split_detail.py +55 -0
- pinelabs/types/split_detail_refund.py +51 -0
- pinelabs/types/split_detail_refund_amount.py +20 -0
- pinelabs/types/split_detail_refund_status.py +5 -0
- pinelabs/types/split_detail_status.py +5 -0
- pinelabs/types/split_info.py +32 -0
- pinelabs/types/split_payment_object.py +49 -0
- pinelabs/types/split_payment_object_acquirer_data.py +22 -0
- pinelabs/types/split_payment_object_additional_detail.py +26 -0
- pinelabs/types/split_payment_object_capture_data_item.py +23 -0
- pinelabs/types/split_payment_object_capture_data_item_capture_amount.py +20 -0
- pinelabs/types/split_payment_object_payment_amount.py +20 -0
- pinelabs/types/split_payment_object_payment_method.py +7 -0
- pinelabs/types/split_payment_object_payment_option.py +20 -0
- pinelabs/types/split_payment_object_payment_option_card_data.py +40 -0
- pinelabs/types/split_payment_object_payment_option_card_data_card_type.py +5 -0
- pinelabs/types/split_payment_object_payment_option_card_data_token_txn_type.py +7 -0
- pinelabs/types/split_payment_object_status.py +7 -0
- pinelabs/types/split_settlement_detail.py +52 -0
- pinelabs/types/split_settlement_detail_amount.py +20 -0
- pinelabs/types/split_settlement_detail_release_amount.py +24 -0
- pinelabs/types/split_settlement_detail_status.py +5 -0
- pinelabs/types/split_settlement_response.py +24 -0
- pinelabs/types/split_settlement_response_data.py +43 -0
- pinelabs/types/split_settlement_response_data_allowed_payment_methods_item.py +7 -0
- pinelabs/types/split_settlement_response_data_integration_mode.py +5 -0
- pinelabs/types/split_settlement_response_data_order_amount.py +20 -0
- pinelabs/types/split_settlement_response_data_purchase_details.py +26 -0
- pinelabs/types/split_settlement_response_data_purchase_details_customer.py +28 -0
- pinelabs/types/split_settlement_response_data_purchase_details_split_info.py +21 -0
- pinelabs/types/split_settlement_response_data_status.py +18 -0
- pinelabs/types/split_settlement_response_data_type.py +5 -0
- pinelabs/types/submit_otp_error_response.py +42 -0
- pinelabs/types/submit_otp_error_response_meta_data.py +26 -0
- pinelabs/types/subscription_amount.py +31 -0
- pinelabs/types/subscription_detail.py +115 -0
- pinelabs/types/subscription_detail_allowed_payment_methods_item.py +7 -0
- pinelabs/types/subscription_detail_integration_mode.py +5 -0
- pinelabs/types/subscription_detail_payment_mode.py +5 -0
- pinelabs/types/subscription_detail_status.py +23 -0
- pinelabs/types/subscription_notification_response.py +56 -0
- pinelabs/types/subscription_notification_response_pdn_status.py +7 -0
- pinelabs/types/subscription_notification_response_status.py +10 -0
- pinelabs/types/tenure.py +127 -0
- pinelabs/types/tenure_auth_amount.py +20 -0
- pinelabs/types/tenure_cart_coupon_discount_amount.py +20 -0
- pinelabs/types/tenure_convenience_fee_breakdown.py +38 -0
- pinelabs/types/tenure_convenience_fee_breakdown_additional_fee_amount.py +20 -0
- pinelabs/types/tenure_convenience_fee_breakdown_applicable_fee_amount.py +20 -0
- pinelabs/types/tenure_convenience_fee_breakdown_fee_amount.py +20 -0
- pinelabs/types/tenure_convenience_fee_breakdown_fee_calculated_on_amount.py +20 -0
- pinelabs/types/tenure_convenience_fee_breakdown_maximum_fee_amount.py +20 -0
- pinelabs/types/tenure_convenience_fee_breakdown_subvented_fee_amount.py +20 -0
- pinelabs/types/tenure_convenience_fee_breakdown_tax_amount.py +20 -0
- pinelabs/types/tenure_details_item.py +49 -0
- pinelabs/types/tenure_details_item_after_downpayment_reduced_product_amount.py +20 -0
- pinelabs/types/tenure_details_item_cart_coupon_discount_product_share.py +20 -0
- pinelabs/types/tenure_details_item_discount.py +33 -0
- pinelabs/types/tenure_details_item_discount_amount.py +20 -0
- pinelabs/types/tenure_details_item_discount_breakup.py +22 -0
- pinelabs/types/tenure_details_item_discount_breakup_brand.py +20 -0
- pinelabs/types/tenure_details_item_discount_breakup_brand_amount.py +20 -0
- pinelabs/types/tenure_details_item_discount_breakup_merchant.py +20 -0
- pinelabs/types/tenure_details_item_discount_breakup_merchant_amount.py +20 -0
- pinelabs/types/tenure_details_item_discount_discount_deferred_duration_type.py +5 -0
- pinelabs/types/tenure_details_item_discount_discount_type.py +5 -0
- pinelabs/types/tenure_details_item_discount_max_amount.py +20 -0
- pinelabs/types/tenure_details_item_downpayment_amount.py +20 -0
- pinelabs/types/tenure_details_item_interest_amount.py +20 -0
- pinelabs/types/tenure_details_item_product_amount.py +20 -0
- pinelabs/types/tenure_details_item_product_coupon_discount_amount.py +20 -0
- pinelabs/types/tenure_details_item_product_offer_parameters_item.py +21 -0
- pinelabs/types/tenure_details_item_subvention.py +31 -0
- pinelabs/types/tenure_details_item_subvention_amount.py +20 -0
- pinelabs/types/tenure_details_item_subvention_breakup.py +20 -0
- pinelabs/types/tenure_details_item_subvention_breakup_brand.py +20 -0
- pinelabs/types/tenure_details_item_subvention_breakup_brand_amount.py +20 -0
- pinelabs/types/tenure_details_item_subvention_max_amount.py +20 -0
- pinelabs/types/tenure_details_item_subvention_min_amount.py +20 -0
- pinelabs/types/tenure_details_item_subvention_offer_type.py +5 -0
- pinelabs/types/tenure_details_item_subvention_subvention_type.py +5 -0
- pinelabs/types/tenure_discount.py +35 -0
- pinelabs/types/tenure_discount_amount.py +20 -0
- pinelabs/types/tenure_discount_breakup.py +26 -0
- pinelabs/types/tenure_discount_breakup_brand.py +20 -0
- pinelabs/types/tenure_discount_breakup_brand_amount.py +20 -0
- pinelabs/types/tenure_discount_breakup_dealer.py +20 -0
- pinelabs/types/tenure_discount_breakup_dealer_amount.py +20 -0
- pinelabs/types/tenure_discount_breakup_issuer.py +20 -0
- pinelabs/types/tenure_discount_breakup_issuer_amount.py +20 -0
- pinelabs/types/tenure_discount_breakup_merchant.py +20 -0
- pinelabs/types/tenure_discount_breakup_merchant_amount.py +20 -0
- pinelabs/types/tenure_discount_discount_deferred_duration_type.py +5 -0
- pinelabs/types/tenure_discount_discount_type.py +5 -0
- pinelabs/types/tenure_discount_max_amount.py +20 -0
- pinelabs/types/tenure_downpayment_details.py +24 -0
- pinelabs/types/tenure_downpayment_details_downpayment_amount.py +20 -0
- pinelabs/types/tenure_emi_type.py +5 -0
- pinelabs/types/tenure_interest_amount.py +20 -0
- pinelabs/types/tenure_issuer_offer_parameters_item.py +32 -0
- pinelabs/types/tenure_loan_amount.py +20 -0
- pinelabs/types/tenure_monthly_emi_amount.py +20 -0
- pinelabs/types/tenure_net_payment_amount.py +20 -0
- pinelabs/types/tenure_processing_fee_amount.py +20 -0
- pinelabs/types/tenure_processing_fee_details.py +25 -0
- pinelabs/types/tenure_processing_fee_details_amount.py +20 -0
- pinelabs/types/tenure_split_emi_amount.py +20 -0
- pinelabs/types/tenure_tenure_type.py +5 -0
- pinelabs/types/tenure_total_coupon_discount.py +20 -0
- pinelabs/types/tenure_total_discount_amount.py +20 -0
- pinelabs/types/tenure_total_down_payment_amount.py +20 -0
- pinelabs/types/tenure_total_emi_amount.py +20 -0
- pinelabs/types/tenure_total_subvention_amount.py +20 -0
- pinelabs/types/token_card_data.py +69 -0
- pinelabs/types/token_card_data_card_type.py +5 -0
- pinelabs/types/token_payment.py +27 -0
- pinelabs/types/token_payment_acquirer_data.py +41 -0
- pinelabs/types/token_payment_option.py +26 -0
- pinelabs/types/token_status.py +5 -0
- pinelabs/types/token_transactional_data.py +46 -0
- pinelabs/types/upi_details_response.py +30 -0
- pinelabs/types/upi_details_response_payer.py +22 -0
- pinelabs/types/upi_details_response_txn_mode.py +5 -0
- pinelabs_python-0.1.0.dist-info/METADATA +213 -0
- pinelabs_python-0.1.0.dist-info/RECORD +626 -0
- pinelabs_python-0.1.0.dist-info/WHEEL +4 -0
- pinelabs_python-0.1.0.dist-info/licenses/LICENSE +21 -0
|
@@ -0,0 +1,1320 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
# isort: skip_file
|
|
4
|
+
|
|
5
|
+
import typing
|
|
6
|
+
from importlib import import_module
|
|
7
|
+
|
|
8
|
+
if typing.TYPE_CHECKING:
|
|
9
|
+
from .acquirer_data import AcquirerData
|
|
10
|
+
from .address import Address
|
|
11
|
+
from .address_address_category import AddressAddressCategory
|
|
12
|
+
from .amount import Amount
|
|
13
|
+
from .authorize_payment_response import AuthorizePaymentResponse
|
|
14
|
+
from .authorize_payment_response_data import AuthorizePaymentResponseData
|
|
15
|
+
from .authorize_payment_response_data_integration_mode import AuthorizePaymentResponseDataIntegrationMode
|
|
16
|
+
from .authorize_payment_response_data_order_amount import AuthorizePaymentResponseDataOrderAmount
|
|
17
|
+
from .authorize_payment_response_data_payments_item import AuthorizePaymentResponseDataPaymentsItem
|
|
18
|
+
from .authorize_payment_response_data_payments_item_acquirer_data import (
|
|
19
|
+
AuthorizePaymentResponseDataPaymentsItemAcquirerData,
|
|
20
|
+
)
|
|
21
|
+
from .authorize_payment_response_data_payments_item_payment_amount import (
|
|
22
|
+
AuthorizePaymentResponseDataPaymentsItemPaymentAmount,
|
|
23
|
+
)
|
|
24
|
+
from .authorize_payment_response_data_payments_item_payment_method import (
|
|
25
|
+
AuthorizePaymentResponseDataPaymentsItemPaymentMethod,
|
|
26
|
+
)
|
|
27
|
+
from .authorize_payment_response_data_payments_item_payment_option import (
|
|
28
|
+
AuthorizePaymentResponseDataPaymentsItemPaymentOption,
|
|
29
|
+
)
|
|
30
|
+
from .authorize_payment_response_data_payments_item_payment_option_wallet_data import (
|
|
31
|
+
AuthorizePaymentResponseDataPaymentsItemPaymentOptionWalletData,
|
|
32
|
+
)
|
|
33
|
+
from .authorize_payment_response_data_payments_item_payment_option_wallet_data_wallet_card_data import (
|
|
34
|
+
AuthorizePaymentResponseDataPaymentsItemPaymentOptionWalletDataWalletCardData,
|
|
35
|
+
)
|
|
36
|
+
from .authorize_payment_response_data_payments_item_payment_option_wallet_data_wallet_card_data_card_type import (
|
|
37
|
+
AuthorizePaymentResponseDataPaymentsItemPaymentOptionWalletDataWalletCardDataCardType,
|
|
38
|
+
)
|
|
39
|
+
from .authorize_payment_response_data_payments_item_payment_option_wallet_data_wallet_card_data_token_txn_type import (
|
|
40
|
+
AuthorizePaymentResponseDataPaymentsItemPaymentOptionWalletDataWalletCardDataTokenTxnType,
|
|
41
|
+
)
|
|
42
|
+
from .authorize_payment_response_data_payments_item_status import AuthorizePaymentResponseDataPaymentsItemStatus
|
|
43
|
+
from .authorize_payment_response_data_purchase_details import AuthorizePaymentResponseDataPurchaseDetails
|
|
44
|
+
from .authorize_payment_response_data_purchase_details_customer import (
|
|
45
|
+
AuthorizePaymentResponseDataPurchaseDetailsCustomer,
|
|
46
|
+
)
|
|
47
|
+
from .authorize_payment_response_data_status import AuthorizePaymentResponseDataStatus
|
|
48
|
+
from .authorize_payment_response_data_type import AuthorizePaymentResponseDataType
|
|
49
|
+
from .bank_account import BankAccount
|
|
50
|
+
from .bnpl_check_eligibility_response import BnplCheckEligibilityResponse
|
|
51
|
+
from .bnpl_check_eligibility_response_metadata import BnplCheckEligibilityResponseMetadata
|
|
52
|
+
from .bnpl_check_eligibility_response_metadata_installments_item import (
|
|
53
|
+
BnplCheckEligibilityResponseMetadataInstallmentsItem,
|
|
54
|
+
)
|
|
55
|
+
from .bnpl_resend_otp_response import BnplResendOtpResponse
|
|
56
|
+
from .bnpl_resend_otp_response_meta_data import BnplResendOtpResponseMetaData
|
|
57
|
+
from .bnpl_submit_otp_response import BnplSubmitOtpResponse
|
|
58
|
+
from .calculate_convenience_fee_response import CalculateConvenienceFeeResponse
|
|
59
|
+
from .calculate_convenience_fee_response_data_item import CalculateConvenienceFeeResponseDataItem
|
|
60
|
+
from .calculate_convenience_fee_response_data_item_convenience_fee_breakdown import (
|
|
61
|
+
CalculateConvenienceFeeResponseDataItemConvenienceFeeBreakdown,
|
|
62
|
+
)
|
|
63
|
+
from .calculate_convenience_fee_response_data_item_payment_method_metadata import (
|
|
64
|
+
CalculateConvenienceFeeResponseDataItemPaymentMethodMetadata,
|
|
65
|
+
)
|
|
66
|
+
from .capture_data_item import CaptureDataItem
|
|
67
|
+
from .card_data import CardData
|
|
68
|
+
from .card_data_card_category import CardDataCardCategory
|
|
69
|
+
from .card_data_card_type import CardDataCardType
|
|
70
|
+
from .card_data_token_txn_type import CardDataTokenTxnType
|
|
71
|
+
from .card_detail_lookup_item import CardDetailLookupItem
|
|
72
|
+
from .card_detail_lookup_item_payment_reference_type import CardDetailLookupItemPaymentReferenceType
|
|
73
|
+
from .card_payment_detail_item import CardPaymentDetailItem
|
|
74
|
+
from .card_token_response import CardTokenResponse
|
|
75
|
+
from .cart_details import CartDetails
|
|
76
|
+
from .cart_item import CartItem
|
|
77
|
+
from .challan_response import ChallanResponse
|
|
78
|
+
from .check_point_balance_response import CheckPointBalanceResponse
|
|
79
|
+
from .check_point_balance_response_balance import CheckPointBalanceResponseBalance
|
|
80
|
+
from .check_point_balance_response_redeemable_amount import CheckPointBalanceResponseRedeemableAmount
|
|
81
|
+
from .checkout_customer import CheckoutCustomer
|
|
82
|
+
from .checkout_product import CheckoutProduct
|
|
83
|
+
from .checkout_purchase_details import CheckoutPurchaseDetails
|
|
84
|
+
from .create_bulk_payout_response import CreateBulkPayoutResponse
|
|
85
|
+
from .create_bulk_payout_response_status import CreateBulkPayoutResponseStatus
|
|
86
|
+
from .create_debit_response import CreateDebitResponse
|
|
87
|
+
from .create_debit_response_status import CreateDebitResponseStatus
|
|
88
|
+
from .create_payout_response import CreatePayoutResponse
|
|
89
|
+
from .create_payout_response_mode import CreatePayoutResponseMode
|
|
90
|
+
from .create_payout_response_status import CreatePayoutResponseStatus
|
|
91
|
+
from .create_presentation_response import CreatePresentationResponse
|
|
92
|
+
from .create_presentation_response_status import CreatePresentationResponseStatus
|
|
93
|
+
from .create_subscription_response import CreateSubscriptionResponse
|
|
94
|
+
from .create_subscription_response_allowed_payment_methods_item import (
|
|
95
|
+
CreateSubscriptionResponseAllowedPaymentMethodsItem,
|
|
96
|
+
)
|
|
97
|
+
from .create_subscription_response_integration_mode import CreateSubscriptionResponseIntegrationMode
|
|
98
|
+
from .create_subscription_response_payment_mode import CreateSubscriptionResponsePaymentMode
|
|
99
|
+
from .create_subscription_response_status import CreateSubscriptionResponseStatus
|
|
100
|
+
from .cryptogram_response import CryptogramResponse
|
|
101
|
+
from .currency_conversion_response import CurrencyConversionResponse
|
|
102
|
+
from .customer_details import CustomerDetails
|
|
103
|
+
from .customer_response import CustomerResponse
|
|
104
|
+
from .customer_response_status import CustomerResponseStatus
|
|
105
|
+
from .customer_token_detail import CustomerTokenDetail
|
|
106
|
+
from .customer_token_detail_payment_method import CustomerTokenDetailPaymentMethod
|
|
107
|
+
from .customer_tokens_response import CustomerTokensResponse
|
|
108
|
+
from .delete_customer_token_response import DeleteCustomerTokenResponse
|
|
109
|
+
from .delete_token_by_token_id_response import DeleteTokenByTokenIdResponse
|
|
110
|
+
from .downpayment_details_response import DownpaymentDetailsResponse
|
|
111
|
+
from .downpayment_details_response_downpayment_details import DownpaymentDetailsResponseDownpaymentDetails
|
|
112
|
+
from .downpayment_details_response_downpayment_details_allowed_payment_methods_item import (
|
|
113
|
+
DownpaymentDetailsResponseDownpaymentDetailsAllowedPaymentMethodsItem,
|
|
114
|
+
)
|
|
115
|
+
from .downpayment_details_response_downpayment_details_amount_range import (
|
|
116
|
+
DownpaymentDetailsResponseDownpaymentDetailsAmountRange,
|
|
117
|
+
)
|
|
118
|
+
from .error_response import ErrorResponse
|
|
119
|
+
from .error_response_additional_error_details import ErrorResponseAdditionalErrorDetails
|
|
120
|
+
from .generate_checkout_link_response import GenerateCheckoutLinkResponse
|
|
121
|
+
from .generate_token_response import GenerateTokenResponse
|
|
122
|
+
from .get_account_balance_response import GetAccountBalanceResponse
|
|
123
|
+
from .get_card_details_response import GetCardDetailsResponse
|
|
124
|
+
from .get_payouts_payment_item import GetPayoutsPaymentItem
|
|
125
|
+
from .get_payouts_payment_item_mode import GetPayoutsPaymentItemMode
|
|
126
|
+
from .get_payouts_payment_item_status import GetPayoutsPaymentItemStatus
|
|
127
|
+
from .get_payouts_response import GetPayoutsResponse
|
|
128
|
+
from .imei_product import ImeiProduct
|
|
129
|
+
from .imei_validation_response import ImeiValidationResponse
|
|
130
|
+
from .imei_validation_response_products_item import ImeiValidationResponseProductsItem
|
|
131
|
+
from .imei_validation_response_products_item_product_brand_response import (
|
|
132
|
+
ImeiValidationResponseProductsItemProductBrandResponse,
|
|
133
|
+
)
|
|
134
|
+
from .imei_validation_response_products_item_product_imei_status import (
|
|
135
|
+
ImeiValidationResponseProductsItemProductImeiStatus,
|
|
136
|
+
)
|
|
137
|
+
from .issuer_offer import IssuerOffer
|
|
138
|
+
from .issuer_offer_issuer_data import IssuerOfferIssuerData
|
|
139
|
+
from .issuer_offer_issuer_data_auth_type import IssuerOfferIssuerDataAuthType
|
|
140
|
+
from .issuer_offer_issuer_data_penny_transaction_amount import IssuerOfferIssuerDataPennyTransactionAmount
|
|
141
|
+
from .issuer_offer_issuer_type import IssuerOfferIssuerType
|
|
142
|
+
from .list_plans_response import ListPlansResponse
|
|
143
|
+
from .list_presentations_response import ListPresentationsResponse
|
|
144
|
+
from .list_settlements_response import ListSettlementsResponse
|
|
145
|
+
from .list_subscriptions_response import ListSubscriptionsResponse
|
|
146
|
+
from .merchant_metadata import MerchantMetadata
|
|
147
|
+
from .net_banking_data_response import NetBankingDataResponse
|
|
148
|
+
from .net_banking_data_response_txn_mode import NetBankingDataResponseTxnMode
|
|
149
|
+
from .offer_discovery_error_response import OfferDiscoveryErrorResponse
|
|
150
|
+
from .offer_discovery_error_response_additional_error_details import (
|
|
151
|
+
OfferDiscoveryErrorResponseAdditionalErrorDetails,
|
|
152
|
+
)
|
|
153
|
+
from .offer_discovery_response import OfferDiscoveryResponse
|
|
154
|
+
from .offer_validation_error_response import OfferValidationErrorResponse
|
|
155
|
+
from .offer_validation_error_response_additional_error_details import (
|
|
156
|
+
OfferValidationErrorResponseAdditionalErrorDetails,
|
|
157
|
+
)
|
|
158
|
+
from .offer_validation_response import OfferValidationResponse
|
|
159
|
+
from .order_response import OrderResponse
|
|
160
|
+
from .order_response_data import OrderResponseData
|
|
161
|
+
from .order_response_data_integration_mode import OrderResponseDataIntegrationMode
|
|
162
|
+
from .order_response_data_purchase_details import OrderResponseDataPurchaseDetails
|
|
163
|
+
from .order_response_data_status import OrderResponseDataStatus
|
|
164
|
+
from .order_response_data_type import OrderResponseDataType
|
|
165
|
+
from .otp_generate_response import OtpGenerateResponse
|
|
166
|
+
from .otp_generate_response_meta_data import OtpGenerateResponseMetaData
|
|
167
|
+
from .otp_generate_response_next_item import OtpGenerateResponseNextItem
|
|
168
|
+
from .page_info import PageInfo
|
|
169
|
+
from .pagination_links import PaginationLinks
|
|
170
|
+
from .pagination_links_first import PaginationLinksFirst
|
|
171
|
+
from .pagination_links_last import PaginationLinksLast
|
|
172
|
+
from .pagination_links_next import PaginationLinksNext
|
|
173
|
+
from .pagination_links_self import PaginationLinksSelf
|
|
174
|
+
from .pagination_meta import PaginationMeta
|
|
175
|
+
from .payment_item import PaymentItem
|
|
176
|
+
from .payment_item_error_detail import PaymentItemErrorDetail
|
|
177
|
+
from .payment_item_payment_method import PaymentItemPaymentMethod
|
|
178
|
+
from .payment_item_payment_option import PaymentItemPaymentOption
|
|
179
|
+
from .payment_item_status import PaymentItemStatus
|
|
180
|
+
from .payment_link_account_details import PaymentLinkAccountDetails
|
|
181
|
+
from .payment_link_address import PaymentLinkAddress
|
|
182
|
+
from .payment_link_bank_details import PaymentLinkBankDetails
|
|
183
|
+
from .payment_link_cart_details import PaymentLinkCartDetails
|
|
184
|
+
from .payment_link_cart_item import PaymentLinkCartItem
|
|
185
|
+
from .payment_link_customer import PaymentLinkCustomer
|
|
186
|
+
from .payment_link_product_detail import PaymentLinkProductDetail
|
|
187
|
+
from .payment_link_response import PaymentLinkResponse
|
|
188
|
+
from .payment_link_response_allowed_payment_methods_item import PaymentLinkResponseAllowedPaymentMethodsItem
|
|
189
|
+
from .payment_link_response_status import PaymentLinkResponseStatus
|
|
190
|
+
from .payment_link_split_detail import PaymentLinkSplitDetail
|
|
191
|
+
from .payment_link_split_detail_status import PaymentLinkSplitDetailStatus
|
|
192
|
+
from .payment_link_split_info import PaymentLinkSplitInfo
|
|
193
|
+
from .payment_object import PaymentObject
|
|
194
|
+
from .payment_object_acquirer_data import PaymentObjectAcquirerData
|
|
195
|
+
from .payment_object_payment_amount import PaymentObjectPaymentAmount
|
|
196
|
+
from .payment_object_payment_method import PaymentObjectPaymentMethod
|
|
197
|
+
from .payment_object_status import PaymentObjectStatus
|
|
198
|
+
from .payment_request_item import PaymentRequestItem
|
|
199
|
+
from .payment_request_item_device_info import PaymentRequestItemDeviceInfo
|
|
200
|
+
from .payment_request_item_device_info_operating_system import PaymentRequestItemDeviceInfoOperatingSystem
|
|
201
|
+
from .payment_request_item_offer_data import PaymentRequestItemOfferData
|
|
202
|
+
from .payment_request_item_offer_data_offer_details import PaymentRequestItemOfferDataOfferDetails
|
|
203
|
+
from .payment_request_item_offer_data_offer_details_tenure import PaymentRequestItemOfferDataOfferDetailsTenure
|
|
204
|
+
from .payment_request_item_offer_data_offer_details_tenure_auth_amount import (
|
|
205
|
+
PaymentRequestItemOfferDataOfferDetailsTenureAuthAmount,
|
|
206
|
+
)
|
|
207
|
+
from .payment_request_item_offer_data_offer_details_tenure_cart_coupon_discount_amount import (
|
|
208
|
+
PaymentRequestItemOfferDataOfferDetailsTenureCartCouponDiscountAmount,
|
|
209
|
+
)
|
|
210
|
+
from .payment_request_item_offer_data_offer_details_tenure_convenience_fee_breakdown import (
|
|
211
|
+
PaymentRequestItemOfferDataOfferDetailsTenureConvenienceFeeBreakdown,
|
|
212
|
+
)
|
|
213
|
+
from .payment_request_item_offer_data_offer_details_tenure_convenience_fee_breakdown_additional_fee_amount import (
|
|
214
|
+
PaymentRequestItemOfferDataOfferDetailsTenureConvenienceFeeBreakdownAdditionalFeeAmount,
|
|
215
|
+
)
|
|
216
|
+
from .payment_request_item_offer_data_offer_details_tenure_convenience_fee_breakdown_applicable_fee_amount import (
|
|
217
|
+
PaymentRequestItemOfferDataOfferDetailsTenureConvenienceFeeBreakdownApplicableFeeAmount,
|
|
218
|
+
)
|
|
219
|
+
from .payment_request_item_offer_data_offer_details_tenure_convenience_fee_breakdown_fee_amount import (
|
|
220
|
+
PaymentRequestItemOfferDataOfferDetailsTenureConvenienceFeeBreakdownFeeAmount,
|
|
221
|
+
)
|
|
222
|
+
from .payment_request_item_offer_data_offer_details_tenure_convenience_fee_breakdown_fee_calculated_on_amount import (
|
|
223
|
+
PaymentRequestItemOfferDataOfferDetailsTenureConvenienceFeeBreakdownFeeCalculatedOnAmount,
|
|
224
|
+
)
|
|
225
|
+
from .payment_request_item_offer_data_offer_details_tenure_convenience_fee_breakdown_maximum_fee_amount import (
|
|
226
|
+
PaymentRequestItemOfferDataOfferDetailsTenureConvenienceFeeBreakdownMaximumFeeAmount,
|
|
227
|
+
)
|
|
228
|
+
from .payment_request_item_offer_data_offer_details_tenure_convenience_fee_breakdown_subvented_fee_amount import (
|
|
229
|
+
PaymentRequestItemOfferDataOfferDetailsTenureConvenienceFeeBreakdownSubventedFeeAmount,
|
|
230
|
+
)
|
|
231
|
+
from .payment_request_item_offer_data_offer_details_tenure_convenience_fee_breakdown_tax_amount import (
|
|
232
|
+
PaymentRequestItemOfferDataOfferDetailsTenureConvenienceFeeBreakdownTaxAmount,
|
|
233
|
+
)
|
|
234
|
+
from .payment_request_item_offer_data_offer_details_tenure_details_item import (
|
|
235
|
+
PaymentRequestItemOfferDataOfferDetailsTenureDetailsItem,
|
|
236
|
+
)
|
|
237
|
+
from .payment_request_item_offer_data_offer_details_tenure_details_item_after_downpayment_reduced_product_amount import (
|
|
238
|
+
PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemAfterDownpaymentReducedProductAmount,
|
|
239
|
+
)
|
|
240
|
+
from .payment_request_item_offer_data_offer_details_tenure_details_item_cart_coupon_discount_product_share import (
|
|
241
|
+
PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemCartCouponDiscountProductShare,
|
|
242
|
+
)
|
|
243
|
+
from .payment_request_item_offer_data_offer_details_tenure_details_item_discount import (
|
|
244
|
+
PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscount,
|
|
245
|
+
)
|
|
246
|
+
from .payment_request_item_offer_data_offer_details_tenure_details_item_discount_breakup import (
|
|
247
|
+
PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscountBreakup,
|
|
248
|
+
)
|
|
249
|
+
from .payment_request_item_offer_data_offer_details_tenure_details_item_discount_breakup_brand import (
|
|
250
|
+
PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscountBreakupBrand,
|
|
251
|
+
)
|
|
252
|
+
from .payment_request_item_offer_data_offer_details_tenure_details_item_discount_breakup_brand_amount import (
|
|
253
|
+
PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscountBreakupBrandAmount,
|
|
254
|
+
)
|
|
255
|
+
from .payment_request_item_offer_data_offer_details_tenure_details_item_discount_breakup_dealer import (
|
|
256
|
+
PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscountBreakupDealer,
|
|
257
|
+
)
|
|
258
|
+
from .payment_request_item_offer_data_offer_details_tenure_details_item_discount_breakup_dealer_amount import (
|
|
259
|
+
PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscountBreakupDealerAmount,
|
|
260
|
+
)
|
|
261
|
+
from .payment_request_item_offer_data_offer_details_tenure_details_item_discount_breakup_issuer import (
|
|
262
|
+
PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscountBreakupIssuer,
|
|
263
|
+
)
|
|
264
|
+
from .payment_request_item_offer_data_offer_details_tenure_details_item_discount_breakup_issuer_amount import (
|
|
265
|
+
PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscountBreakupIssuerAmount,
|
|
266
|
+
)
|
|
267
|
+
from .payment_request_item_offer_data_offer_details_tenure_details_item_discount_breakup_merchant import (
|
|
268
|
+
PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscountBreakupMerchant,
|
|
269
|
+
)
|
|
270
|
+
from .payment_request_item_offer_data_offer_details_tenure_details_item_discount_breakup_merchant_amount import (
|
|
271
|
+
PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscountBreakupMerchantAmount,
|
|
272
|
+
)
|
|
273
|
+
from .payment_request_item_offer_data_offer_details_tenure_details_item_discount_max_amount import (
|
|
274
|
+
PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscountMaxAmount,
|
|
275
|
+
)
|
|
276
|
+
from .payment_request_item_offer_data_offer_details_tenure_details_item_discount_min_amount import (
|
|
277
|
+
PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscountMinAmount,
|
|
278
|
+
)
|
|
279
|
+
from .payment_request_item_offer_data_offer_details_tenure_details_item_downpayment_amount import (
|
|
280
|
+
PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDownpaymentAmount,
|
|
281
|
+
)
|
|
282
|
+
from .payment_request_item_offer_data_offer_details_tenure_details_item_interest_amount import (
|
|
283
|
+
PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemInterestAmount,
|
|
284
|
+
)
|
|
285
|
+
from .payment_request_item_offer_data_offer_details_tenure_details_item_product_amount import (
|
|
286
|
+
PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemProductAmount,
|
|
287
|
+
)
|
|
288
|
+
from .payment_request_item_offer_data_offer_details_tenure_details_item_product_coupon_discount_amount import (
|
|
289
|
+
PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemProductCouponDiscountAmount,
|
|
290
|
+
)
|
|
291
|
+
from .payment_request_item_offer_data_offer_details_tenure_details_item_product_offer_parameters_item import (
|
|
292
|
+
PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemProductOfferParametersItem,
|
|
293
|
+
)
|
|
294
|
+
from .payment_request_item_offer_data_offer_details_tenure_details_item_subvention import (
|
|
295
|
+
PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubvention,
|
|
296
|
+
)
|
|
297
|
+
from .payment_request_item_offer_data_offer_details_tenure_details_item_subvention_amount import (
|
|
298
|
+
PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionAmount,
|
|
299
|
+
)
|
|
300
|
+
from .payment_request_item_offer_data_offer_details_tenure_details_item_subvention_breakup import (
|
|
301
|
+
PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionBreakup,
|
|
302
|
+
)
|
|
303
|
+
from .payment_request_item_offer_data_offer_details_tenure_details_item_subvention_breakup_brand import (
|
|
304
|
+
PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionBreakupBrand,
|
|
305
|
+
)
|
|
306
|
+
from .payment_request_item_offer_data_offer_details_tenure_details_item_subvention_breakup_brand_amount import (
|
|
307
|
+
PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionBreakupBrandAmount,
|
|
308
|
+
)
|
|
309
|
+
from .payment_request_item_offer_data_offer_details_tenure_details_item_subvention_breakup_dealer import (
|
|
310
|
+
PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionBreakupDealer,
|
|
311
|
+
)
|
|
312
|
+
from .payment_request_item_offer_data_offer_details_tenure_details_item_subvention_breakup_dealer_amount import (
|
|
313
|
+
PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionBreakupDealerAmount,
|
|
314
|
+
)
|
|
315
|
+
from .payment_request_item_offer_data_offer_details_tenure_details_item_subvention_breakup_issuer import (
|
|
316
|
+
PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionBreakupIssuer,
|
|
317
|
+
)
|
|
318
|
+
from .payment_request_item_offer_data_offer_details_tenure_details_item_subvention_breakup_issuer_amount import (
|
|
319
|
+
PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionBreakupIssuerAmount,
|
|
320
|
+
)
|
|
321
|
+
from .payment_request_item_offer_data_offer_details_tenure_details_item_subvention_breakup_merchant import (
|
|
322
|
+
PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionBreakupMerchant,
|
|
323
|
+
)
|
|
324
|
+
from .payment_request_item_offer_data_offer_details_tenure_details_item_subvention_breakup_merchant_amount import (
|
|
325
|
+
PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionBreakupMerchantAmount,
|
|
326
|
+
)
|
|
327
|
+
from .payment_request_item_offer_data_offer_details_tenure_details_item_subvention_max_amount import (
|
|
328
|
+
PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionMaxAmount,
|
|
329
|
+
)
|
|
330
|
+
from .payment_request_item_offer_data_offer_details_tenure_details_item_subvention_min_amount import (
|
|
331
|
+
PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionMinAmount,
|
|
332
|
+
)
|
|
333
|
+
from .payment_request_item_offer_data_offer_details_tenure_downpayment_details import (
|
|
334
|
+
PaymentRequestItemOfferDataOfferDetailsTenureDownpaymentDetails,
|
|
335
|
+
)
|
|
336
|
+
from .payment_request_item_offer_data_offer_details_tenure_downpayment_details_downpayment_amount import (
|
|
337
|
+
PaymentRequestItemOfferDataOfferDetailsTenureDownpaymentDetailsDownpaymentAmount,
|
|
338
|
+
)
|
|
339
|
+
from .payment_request_item_offer_data_offer_details_tenure_intrest_amount import (
|
|
340
|
+
PaymentRequestItemOfferDataOfferDetailsTenureIntrestAmount,
|
|
341
|
+
)
|
|
342
|
+
from .payment_request_item_offer_data_offer_details_tenure_loan_amount import (
|
|
343
|
+
PaymentRequestItemOfferDataOfferDetailsTenureLoanAmount,
|
|
344
|
+
)
|
|
345
|
+
from .payment_request_item_offer_data_offer_details_tenure_monthly_emi_amount import (
|
|
346
|
+
PaymentRequestItemOfferDataOfferDetailsTenureMonthlyEmiAmount,
|
|
347
|
+
)
|
|
348
|
+
from .payment_request_item_offer_data_offer_details_tenure_net_payment_amount import (
|
|
349
|
+
PaymentRequestItemOfferDataOfferDetailsTenureNetPaymentAmount,
|
|
350
|
+
)
|
|
351
|
+
from .payment_request_item_offer_data_offer_details_tenure_processing_fee_details import (
|
|
352
|
+
PaymentRequestItemOfferDataOfferDetailsTenureProcessingFeeDetails,
|
|
353
|
+
)
|
|
354
|
+
from .payment_request_item_offer_data_offer_details_tenure_processing_fee_details_amount import (
|
|
355
|
+
PaymentRequestItemOfferDataOfferDetailsTenureProcessingFeeDetailsAmount,
|
|
356
|
+
)
|
|
357
|
+
from .payment_request_item_offer_data_offer_details_tenure_split_emi_amount import (
|
|
358
|
+
PaymentRequestItemOfferDataOfferDetailsTenureSplitEmiAmount,
|
|
359
|
+
)
|
|
360
|
+
from .payment_request_item_offer_data_offer_details_tenure_total_coupon_discount import (
|
|
361
|
+
PaymentRequestItemOfferDataOfferDetailsTenureTotalCouponDiscount,
|
|
362
|
+
)
|
|
363
|
+
from .payment_request_item_offer_data_offer_details_tenure_total_discount_amount import (
|
|
364
|
+
PaymentRequestItemOfferDataOfferDetailsTenureTotalDiscountAmount,
|
|
365
|
+
)
|
|
366
|
+
from .payment_request_item_offer_data_offer_details_tenure_total_emi_amount import (
|
|
367
|
+
PaymentRequestItemOfferDataOfferDetailsTenureTotalEmiAmount,
|
|
368
|
+
)
|
|
369
|
+
from .payment_request_item_payment_method import PaymentRequestItemPaymentMethod
|
|
370
|
+
from .payment_request_item_payment_option import PaymentRequestItemPaymentOption
|
|
371
|
+
from .payment_request_item_payment_option_bnpl_details import PaymentRequestItemPaymentOptionBnplDetails
|
|
372
|
+
from .payment_request_item_payment_option_bnpl_details_bnpl_pay_code import (
|
|
373
|
+
PaymentRequestItemPaymentOptionBnplDetailsBnplPayCode,
|
|
374
|
+
)
|
|
375
|
+
from .payment_request_item_payment_option_card_details import PaymentRequestItemPaymentOptionCardDetails
|
|
376
|
+
from .payment_request_item_payment_option_card_token_details import PaymentRequestItemPaymentOptionCardTokenDetails
|
|
377
|
+
from .payment_request_item_payment_option_cardless_details import PaymentRequestItemPaymentOptionCardlessDetails
|
|
378
|
+
from .payment_request_item_payment_option_points_card_details import (
|
|
379
|
+
PaymentRequestItemPaymentOptionPointsCardDetails,
|
|
380
|
+
)
|
|
381
|
+
from .payout_amount import PayoutAmount
|
|
382
|
+
from .payout_detail import PayoutDetail
|
|
383
|
+
from .payout_detail_mode import PayoutDetailMode
|
|
384
|
+
from .payout_detail_status import PayoutDetailStatus
|
|
385
|
+
from .payout_link import PayoutLink
|
|
386
|
+
from .plan_response import PlanResponse
|
|
387
|
+
from .plan_response_frequency import PlanResponseFrequency
|
|
388
|
+
from .plan_response_status import PlanResponseStatus
|
|
389
|
+
from .presentation_detail import PresentationDetail
|
|
390
|
+
from .presentation_detail_pdn_status import PresentationDetailPdnStatus
|
|
391
|
+
from .presentation_detail_status import PresentationDetailStatus
|
|
392
|
+
from .product_detail import ProductDetail
|
|
393
|
+
from .refund_response import RefundResponse
|
|
394
|
+
from .refund_response_data import RefundResponseData
|
|
395
|
+
from .refund_response_data_integration_mode import RefundResponseDataIntegrationMode
|
|
396
|
+
from .refund_response_data_order_amount import RefundResponseDataOrderAmount
|
|
397
|
+
from .refund_response_data_purchase_details import RefundResponseDataPurchaseDetails
|
|
398
|
+
from .refund_response_data_purchase_details_customer import RefundResponseDataPurchaseDetailsCustomer
|
|
399
|
+
from .refund_response_data_purchase_details_split_info import RefundResponseDataPurchaseDetailsSplitInfo
|
|
400
|
+
from .refund_response_data_status import RefundResponseDataStatus
|
|
401
|
+
from .refund_response_data_type import RefundResponseDataType
|
|
402
|
+
from .resend_otp_error_response import ResendOtpErrorResponse
|
|
403
|
+
from .service_provider_token_response import ServiceProviderTokenResponse
|
|
404
|
+
from .service_provider_token_response_payment_method import ServiceProviderTokenResponsePaymentMethod
|
|
405
|
+
from .service_provider_tokens_list_response import ServiceProviderTokensListResponse
|
|
406
|
+
from .settlement_by_utr_response import SettlementByUtrResponse
|
|
407
|
+
from .settlement_by_utr_response_pagination import SettlementByUtrResponsePagination
|
|
408
|
+
from .settlement_summary import SettlementSummary
|
|
409
|
+
from .settlement_transaction import SettlementTransaction
|
|
410
|
+
from .simple_amount import SimpleAmount
|
|
411
|
+
from .split_detail import SplitDetail
|
|
412
|
+
from .split_detail_refund import SplitDetailRefund
|
|
413
|
+
from .split_detail_refund_amount import SplitDetailRefundAmount
|
|
414
|
+
from .split_detail_refund_status import SplitDetailRefundStatus
|
|
415
|
+
from .split_detail_status import SplitDetailStatus
|
|
416
|
+
from .split_info import SplitInfo
|
|
417
|
+
from .split_payment_object import SplitPaymentObject
|
|
418
|
+
from .split_payment_object_acquirer_data import SplitPaymentObjectAcquirerData
|
|
419
|
+
from .split_payment_object_additional_detail import SplitPaymentObjectAdditionalDetail
|
|
420
|
+
from .split_payment_object_capture_data_item import SplitPaymentObjectCaptureDataItem
|
|
421
|
+
from .split_payment_object_capture_data_item_capture_amount import SplitPaymentObjectCaptureDataItemCaptureAmount
|
|
422
|
+
from .split_payment_object_payment_amount import SplitPaymentObjectPaymentAmount
|
|
423
|
+
from .split_payment_object_payment_method import SplitPaymentObjectPaymentMethod
|
|
424
|
+
from .split_payment_object_payment_option import SplitPaymentObjectPaymentOption
|
|
425
|
+
from .split_payment_object_payment_option_card_data import SplitPaymentObjectPaymentOptionCardData
|
|
426
|
+
from .split_payment_object_payment_option_card_data_card_type import SplitPaymentObjectPaymentOptionCardDataCardType
|
|
427
|
+
from .split_payment_object_payment_option_card_data_token_txn_type import (
|
|
428
|
+
SplitPaymentObjectPaymentOptionCardDataTokenTxnType,
|
|
429
|
+
)
|
|
430
|
+
from .split_payment_object_status import SplitPaymentObjectStatus
|
|
431
|
+
from .split_settlement_detail import SplitSettlementDetail
|
|
432
|
+
from .split_settlement_detail_amount import SplitSettlementDetailAmount
|
|
433
|
+
from .split_settlement_detail_release_amount import SplitSettlementDetailReleaseAmount
|
|
434
|
+
from .split_settlement_detail_status import SplitSettlementDetailStatus
|
|
435
|
+
from .split_settlement_response import SplitSettlementResponse
|
|
436
|
+
from .split_settlement_response_data import SplitSettlementResponseData
|
|
437
|
+
from .split_settlement_response_data_allowed_payment_methods_item import (
|
|
438
|
+
SplitSettlementResponseDataAllowedPaymentMethodsItem,
|
|
439
|
+
)
|
|
440
|
+
from .split_settlement_response_data_integration_mode import SplitSettlementResponseDataIntegrationMode
|
|
441
|
+
from .split_settlement_response_data_order_amount import SplitSettlementResponseDataOrderAmount
|
|
442
|
+
from .split_settlement_response_data_purchase_details import SplitSettlementResponseDataPurchaseDetails
|
|
443
|
+
from .split_settlement_response_data_purchase_details_customer import (
|
|
444
|
+
SplitSettlementResponseDataPurchaseDetailsCustomer,
|
|
445
|
+
)
|
|
446
|
+
from .split_settlement_response_data_purchase_details_split_info import (
|
|
447
|
+
SplitSettlementResponseDataPurchaseDetailsSplitInfo,
|
|
448
|
+
)
|
|
449
|
+
from .split_settlement_response_data_status import SplitSettlementResponseDataStatus
|
|
450
|
+
from .split_settlement_response_data_type import SplitSettlementResponseDataType
|
|
451
|
+
from .submit_otp_error_response import SubmitOtpErrorResponse
|
|
452
|
+
from .submit_otp_error_response_meta_data import SubmitOtpErrorResponseMetaData
|
|
453
|
+
from .subscription_amount import SubscriptionAmount
|
|
454
|
+
from .subscription_detail import SubscriptionDetail
|
|
455
|
+
from .subscription_detail_allowed_payment_methods_item import SubscriptionDetailAllowedPaymentMethodsItem
|
|
456
|
+
from .subscription_detail_integration_mode import SubscriptionDetailIntegrationMode
|
|
457
|
+
from .subscription_detail_payment_mode import SubscriptionDetailPaymentMode
|
|
458
|
+
from .subscription_detail_status import SubscriptionDetailStatus
|
|
459
|
+
from .subscription_notification_response import SubscriptionNotificationResponse
|
|
460
|
+
from .subscription_notification_response_pdn_status import SubscriptionNotificationResponsePdnStatus
|
|
461
|
+
from .subscription_notification_response_status import SubscriptionNotificationResponseStatus
|
|
462
|
+
from .tenure import Tenure
|
|
463
|
+
from .tenure_auth_amount import TenureAuthAmount
|
|
464
|
+
from .tenure_cart_coupon_discount_amount import TenureCartCouponDiscountAmount
|
|
465
|
+
from .tenure_convenience_fee_breakdown import TenureConvenienceFeeBreakdown
|
|
466
|
+
from .tenure_convenience_fee_breakdown_additional_fee_amount import TenureConvenienceFeeBreakdownAdditionalFeeAmount
|
|
467
|
+
from .tenure_convenience_fee_breakdown_applicable_fee_amount import TenureConvenienceFeeBreakdownApplicableFeeAmount
|
|
468
|
+
from .tenure_convenience_fee_breakdown_fee_amount import TenureConvenienceFeeBreakdownFeeAmount
|
|
469
|
+
from .tenure_convenience_fee_breakdown_fee_calculated_on_amount import (
|
|
470
|
+
TenureConvenienceFeeBreakdownFeeCalculatedOnAmount,
|
|
471
|
+
)
|
|
472
|
+
from .tenure_convenience_fee_breakdown_maximum_fee_amount import TenureConvenienceFeeBreakdownMaximumFeeAmount
|
|
473
|
+
from .tenure_convenience_fee_breakdown_subvented_fee_amount import TenureConvenienceFeeBreakdownSubventedFeeAmount
|
|
474
|
+
from .tenure_convenience_fee_breakdown_tax_amount import TenureConvenienceFeeBreakdownTaxAmount
|
|
475
|
+
from .tenure_details_item import TenureDetailsItem
|
|
476
|
+
from .tenure_details_item_after_downpayment_reduced_product_amount import (
|
|
477
|
+
TenureDetailsItemAfterDownpaymentReducedProductAmount,
|
|
478
|
+
)
|
|
479
|
+
from .tenure_details_item_cart_coupon_discount_product_share import TenureDetailsItemCartCouponDiscountProductShare
|
|
480
|
+
from .tenure_details_item_discount import TenureDetailsItemDiscount
|
|
481
|
+
from .tenure_details_item_discount_amount import TenureDetailsItemDiscountAmount
|
|
482
|
+
from .tenure_details_item_discount_breakup import TenureDetailsItemDiscountBreakup
|
|
483
|
+
from .tenure_details_item_discount_breakup_brand import TenureDetailsItemDiscountBreakupBrand
|
|
484
|
+
from .tenure_details_item_discount_breakup_brand_amount import TenureDetailsItemDiscountBreakupBrandAmount
|
|
485
|
+
from .tenure_details_item_discount_breakup_merchant import TenureDetailsItemDiscountBreakupMerchant
|
|
486
|
+
from .tenure_details_item_discount_breakup_merchant_amount import TenureDetailsItemDiscountBreakupMerchantAmount
|
|
487
|
+
from .tenure_details_item_discount_discount_deferred_duration_type import (
|
|
488
|
+
TenureDetailsItemDiscountDiscountDeferredDurationType,
|
|
489
|
+
)
|
|
490
|
+
from .tenure_details_item_discount_discount_type import TenureDetailsItemDiscountDiscountType
|
|
491
|
+
from .tenure_details_item_discount_max_amount import TenureDetailsItemDiscountMaxAmount
|
|
492
|
+
from .tenure_details_item_downpayment_amount import TenureDetailsItemDownpaymentAmount
|
|
493
|
+
from .tenure_details_item_interest_amount import TenureDetailsItemInterestAmount
|
|
494
|
+
from .tenure_details_item_product_amount import TenureDetailsItemProductAmount
|
|
495
|
+
from .tenure_details_item_product_coupon_discount_amount import TenureDetailsItemProductCouponDiscountAmount
|
|
496
|
+
from .tenure_details_item_product_offer_parameters_item import TenureDetailsItemProductOfferParametersItem
|
|
497
|
+
from .tenure_details_item_subvention import TenureDetailsItemSubvention
|
|
498
|
+
from .tenure_details_item_subvention_amount import TenureDetailsItemSubventionAmount
|
|
499
|
+
from .tenure_details_item_subvention_breakup import TenureDetailsItemSubventionBreakup
|
|
500
|
+
from .tenure_details_item_subvention_breakup_brand import TenureDetailsItemSubventionBreakupBrand
|
|
501
|
+
from .tenure_details_item_subvention_breakup_brand_amount import TenureDetailsItemSubventionBreakupBrandAmount
|
|
502
|
+
from .tenure_details_item_subvention_max_amount import TenureDetailsItemSubventionMaxAmount
|
|
503
|
+
from .tenure_details_item_subvention_min_amount import TenureDetailsItemSubventionMinAmount
|
|
504
|
+
from .tenure_details_item_subvention_offer_type import TenureDetailsItemSubventionOfferType
|
|
505
|
+
from .tenure_details_item_subvention_subvention_type import TenureDetailsItemSubventionSubventionType
|
|
506
|
+
from .tenure_discount import TenureDiscount
|
|
507
|
+
from .tenure_discount_amount import TenureDiscountAmount
|
|
508
|
+
from .tenure_discount_breakup import TenureDiscountBreakup
|
|
509
|
+
from .tenure_discount_breakup_brand import TenureDiscountBreakupBrand
|
|
510
|
+
from .tenure_discount_breakup_brand_amount import TenureDiscountBreakupBrandAmount
|
|
511
|
+
from .tenure_discount_breakup_dealer import TenureDiscountBreakupDealer
|
|
512
|
+
from .tenure_discount_breakup_dealer_amount import TenureDiscountBreakupDealerAmount
|
|
513
|
+
from .tenure_discount_breakup_issuer import TenureDiscountBreakupIssuer
|
|
514
|
+
from .tenure_discount_breakup_issuer_amount import TenureDiscountBreakupIssuerAmount
|
|
515
|
+
from .tenure_discount_breakup_merchant import TenureDiscountBreakupMerchant
|
|
516
|
+
from .tenure_discount_breakup_merchant_amount import TenureDiscountBreakupMerchantAmount
|
|
517
|
+
from .tenure_discount_discount_deferred_duration_type import TenureDiscountDiscountDeferredDurationType
|
|
518
|
+
from .tenure_discount_discount_type import TenureDiscountDiscountType
|
|
519
|
+
from .tenure_discount_max_amount import TenureDiscountMaxAmount
|
|
520
|
+
from .tenure_downpayment_details import TenureDownpaymentDetails
|
|
521
|
+
from .tenure_downpayment_details_downpayment_amount import TenureDownpaymentDetailsDownpaymentAmount
|
|
522
|
+
from .tenure_emi_type import TenureEmiType
|
|
523
|
+
from .tenure_interest_amount import TenureInterestAmount
|
|
524
|
+
from .tenure_issuer_offer_parameters_item import TenureIssuerOfferParametersItem
|
|
525
|
+
from .tenure_loan_amount import TenureLoanAmount
|
|
526
|
+
from .tenure_monthly_emi_amount import TenureMonthlyEmiAmount
|
|
527
|
+
from .tenure_net_payment_amount import TenureNetPaymentAmount
|
|
528
|
+
from .tenure_processing_fee_amount import TenureProcessingFeeAmount
|
|
529
|
+
from .tenure_processing_fee_details import TenureProcessingFeeDetails
|
|
530
|
+
from .tenure_processing_fee_details_amount import TenureProcessingFeeDetailsAmount
|
|
531
|
+
from .tenure_split_emi_amount import TenureSplitEmiAmount
|
|
532
|
+
from .tenure_tenure_type import TenureTenureType
|
|
533
|
+
from .tenure_total_coupon_discount import TenureTotalCouponDiscount
|
|
534
|
+
from .tenure_total_discount_amount import TenureTotalDiscountAmount
|
|
535
|
+
from .tenure_total_down_payment_amount import TenureTotalDownPaymentAmount
|
|
536
|
+
from .tenure_total_emi_amount import TenureTotalEmiAmount
|
|
537
|
+
from .tenure_total_subvention_amount import TenureTotalSubventionAmount
|
|
538
|
+
from .token_card_data import TokenCardData
|
|
539
|
+
from .token_card_data_card_type import TokenCardDataCardType
|
|
540
|
+
from .token_payment import TokenPayment
|
|
541
|
+
from .token_payment_acquirer_data import TokenPaymentAcquirerData
|
|
542
|
+
from .token_payment_option import TokenPaymentOption
|
|
543
|
+
from .token_status import TokenStatus
|
|
544
|
+
from .token_transactional_data import TokenTransactionalData
|
|
545
|
+
from .upi_details_response import UpiDetailsResponse
|
|
546
|
+
from .upi_details_response_payer import UpiDetailsResponsePayer
|
|
547
|
+
from .upi_details_response_txn_mode import UpiDetailsResponseTxnMode
|
|
548
|
+
_dynamic_imports: typing.Dict[str, str] = {
|
|
549
|
+
"AcquirerData": ".acquirer_data",
|
|
550
|
+
"Address": ".address",
|
|
551
|
+
"AddressAddressCategory": ".address_address_category",
|
|
552
|
+
"Amount": ".amount",
|
|
553
|
+
"AuthorizePaymentResponse": ".authorize_payment_response",
|
|
554
|
+
"AuthorizePaymentResponseData": ".authorize_payment_response_data",
|
|
555
|
+
"AuthorizePaymentResponseDataIntegrationMode": ".authorize_payment_response_data_integration_mode",
|
|
556
|
+
"AuthorizePaymentResponseDataOrderAmount": ".authorize_payment_response_data_order_amount",
|
|
557
|
+
"AuthorizePaymentResponseDataPaymentsItem": ".authorize_payment_response_data_payments_item",
|
|
558
|
+
"AuthorizePaymentResponseDataPaymentsItemAcquirerData": ".authorize_payment_response_data_payments_item_acquirer_data",
|
|
559
|
+
"AuthorizePaymentResponseDataPaymentsItemPaymentAmount": ".authorize_payment_response_data_payments_item_payment_amount",
|
|
560
|
+
"AuthorizePaymentResponseDataPaymentsItemPaymentMethod": ".authorize_payment_response_data_payments_item_payment_method",
|
|
561
|
+
"AuthorizePaymentResponseDataPaymentsItemPaymentOption": ".authorize_payment_response_data_payments_item_payment_option",
|
|
562
|
+
"AuthorizePaymentResponseDataPaymentsItemPaymentOptionWalletData": ".authorize_payment_response_data_payments_item_payment_option_wallet_data",
|
|
563
|
+
"AuthorizePaymentResponseDataPaymentsItemPaymentOptionWalletDataWalletCardData": ".authorize_payment_response_data_payments_item_payment_option_wallet_data_wallet_card_data",
|
|
564
|
+
"AuthorizePaymentResponseDataPaymentsItemPaymentOptionWalletDataWalletCardDataCardType": ".authorize_payment_response_data_payments_item_payment_option_wallet_data_wallet_card_data_card_type",
|
|
565
|
+
"AuthorizePaymentResponseDataPaymentsItemPaymentOptionWalletDataWalletCardDataTokenTxnType": ".authorize_payment_response_data_payments_item_payment_option_wallet_data_wallet_card_data_token_txn_type",
|
|
566
|
+
"AuthorizePaymentResponseDataPaymentsItemStatus": ".authorize_payment_response_data_payments_item_status",
|
|
567
|
+
"AuthorizePaymentResponseDataPurchaseDetails": ".authorize_payment_response_data_purchase_details",
|
|
568
|
+
"AuthorizePaymentResponseDataPurchaseDetailsCustomer": ".authorize_payment_response_data_purchase_details_customer",
|
|
569
|
+
"AuthorizePaymentResponseDataStatus": ".authorize_payment_response_data_status",
|
|
570
|
+
"AuthorizePaymentResponseDataType": ".authorize_payment_response_data_type",
|
|
571
|
+
"BankAccount": ".bank_account",
|
|
572
|
+
"BnplCheckEligibilityResponse": ".bnpl_check_eligibility_response",
|
|
573
|
+
"BnplCheckEligibilityResponseMetadata": ".bnpl_check_eligibility_response_metadata",
|
|
574
|
+
"BnplCheckEligibilityResponseMetadataInstallmentsItem": ".bnpl_check_eligibility_response_metadata_installments_item",
|
|
575
|
+
"BnplResendOtpResponse": ".bnpl_resend_otp_response",
|
|
576
|
+
"BnplResendOtpResponseMetaData": ".bnpl_resend_otp_response_meta_data",
|
|
577
|
+
"BnplSubmitOtpResponse": ".bnpl_submit_otp_response",
|
|
578
|
+
"CalculateConvenienceFeeResponse": ".calculate_convenience_fee_response",
|
|
579
|
+
"CalculateConvenienceFeeResponseDataItem": ".calculate_convenience_fee_response_data_item",
|
|
580
|
+
"CalculateConvenienceFeeResponseDataItemConvenienceFeeBreakdown": ".calculate_convenience_fee_response_data_item_convenience_fee_breakdown",
|
|
581
|
+
"CalculateConvenienceFeeResponseDataItemPaymentMethodMetadata": ".calculate_convenience_fee_response_data_item_payment_method_metadata",
|
|
582
|
+
"CaptureDataItem": ".capture_data_item",
|
|
583
|
+
"CardData": ".card_data",
|
|
584
|
+
"CardDataCardCategory": ".card_data_card_category",
|
|
585
|
+
"CardDataCardType": ".card_data_card_type",
|
|
586
|
+
"CardDataTokenTxnType": ".card_data_token_txn_type",
|
|
587
|
+
"CardDetailLookupItem": ".card_detail_lookup_item",
|
|
588
|
+
"CardDetailLookupItemPaymentReferenceType": ".card_detail_lookup_item_payment_reference_type",
|
|
589
|
+
"CardPaymentDetailItem": ".card_payment_detail_item",
|
|
590
|
+
"CardTokenResponse": ".card_token_response",
|
|
591
|
+
"CartDetails": ".cart_details",
|
|
592
|
+
"CartItem": ".cart_item",
|
|
593
|
+
"ChallanResponse": ".challan_response",
|
|
594
|
+
"CheckPointBalanceResponse": ".check_point_balance_response",
|
|
595
|
+
"CheckPointBalanceResponseBalance": ".check_point_balance_response_balance",
|
|
596
|
+
"CheckPointBalanceResponseRedeemableAmount": ".check_point_balance_response_redeemable_amount",
|
|
597
|
+
"CheckoutCustomer": ".checkout_customer",
|
|
598
|
+
"CheckoutProduct": ".checkout_product",
|
|
599
|
+
"CheckoutPurchaseDetails": ".checkout_purchase_details",
|
|
600
|
+
"CreateBulkPayoutResponse": ".create_bulk_payout_response",
|
|
601
|
+
"CreateBulkPayoutResponseStatus": ".create_bulk_payout_response_status",
|
|
602
|
+
"CreateDebitResponse": ".create_debit_response",
|
|
603
|
+
"CreateDebitResponseStatus": ".create_debit_response_status",
|
|
604
|
+
"CreatePayoutResponse": ".create_payout_response",
|
|
605
|
+
"CreatePayoutResponseMode": ".create_payout_response_mode",
|
|
606
|
+
"CreatePayoutResponseStatus": ".create_payout_response_status",
|
|
607
|
+
"CreatePresentationResponse": ".create_presentation_response",
|
|
608
|
+
"CreatePresentationResponseStatus": ".create_presentation_response_status",
|
|
609
|
+
"CreateSubscriptionResponse": ".create_subscription_response",
|
|
610
|
+
"CreateSubscriptionResponseAllowedPaymentMethodsItem": ".create_subscription_response_allowed_payment_methods_item",
|
|
611
|
+
"CreateSubscriptionResponseIntegrationMode": ".create_subscription_response_integration_mode",
|
|
612
|
+
"CreateSubscriptionResponsePaymentMode": ".create_subscription_response_payment_mode",
|
|
613
|
+
"CreateSubscriptionResponseStatus": ".create_subscription_response_status",
|
|
614
|
+
"CryptogramResponse": ".cryptogram_response",
|
|
615
|
+
"CurrencyConversionResponse": ".currency_conversion_response",
|
|
616
|
+
"CustomerDetails": ".customer_details",
|
|
617
|
+
"CustomerResponse": ".customer_response",
|
|
618
|
+
"CustomerResponseStatus": ".customer_response_status",
|
|
619
|
+
"CustomerTokenDetail": ".customer_token_detail",
|
|
620
|
+
"CustomerTokenDetailPaymentMethod": ".customer_token_detail_payment_method",
|
|
621
|
+
"CustomerTokensResponse": ".customer_tokens_response",
|
|
622
|
+
"DeleteCustomerTokenResponse": ".delete_customer_token_response",
|
|
623
|
+
"DeleteTokenByTokenIdResponse": ".delete_token_by_token_id_response",
|
|
624
|
+
"DownpaymentDetailsResponse": ".downpayment_details_response",
|
|
625
|
+
"DownpaymentDetailsResponseDownpaymentDetails": ".downpayment_details_response_downpayment_details",
|
|
626
|
+
"DownpaymentDetailsResponseDownpaymentDetailsAllowedPaymentMethodsItem": ".downpayment_details_response_downpayment_details_allowed_payment_methods_item",
|
|
627
|
+
"DownpaymentDetailsResponseDownpaymentDetailsAmountRange": ".downpayment_details_response_downpayment_details_amount_range",
|
|
628
|
+
"ErrorResponse": ".error_response",
|
|
629
|
+
"ErrorResponseAdditionalErrorDetails": ".error_response_additional_error_details",
|
|
630
|
+
"GenerateCheckoutLinkResponse": ".generate_checkout_link_response",
|
|
631
|
+
"GenerateTokenResponse": ".generate_token_response",
|
|
632
|
+
"GetAccountBalanceResponse": ".get_account_balance_response",
|
|
633
|
+
"GetCardDetailsResponse": ".get_card_details_response",
|
|
634
|
+
"GetPayoutsPaymentItem": ".get_payouts_payment_item",
|
|
635
|
+
"GetPayoutsPaymentItemMode": ".get_payouts_payment_item_mode",
|
|
636
|
+
"GetPayoutsPaymentItemStatus": ".get_payouts_payment_item_status",
|
|
637
|
+
"GetPayoutsResponse": ".get_payouts_response",
|
|
638
|
+
"ImeiProduct": ".imei_product",
|
|
639
|
+
"ImeiValidationResponse": ".imei_validation_response",
|
|
640
|
+
"ImeiValidationResponseProductsItem": ".imei_validation_response_products_item",
|
|
641
|
+
"ImeiValidationResponseProductsItemProductBrandResponse": ".imei_validation_response_products_item_product_brand_response",
|
|
642
|
+
"ImeiValidationResponseProductsItemProductImeiStatus": ".imei_validation_response_products_item_product_imei_status",
|
|
643
|
+
"IssuerOffer": ".issuer_offer",
|
|
644
|
+
"IssuerOfferIssuerData": ".issuer_offer_issuer_data",
|
|
645
|
+
"IssuerOfferIssuerDataAuthType": ".issuer_offer_issuer_data_auth_type",
|
|
646
|
+
"IssuerOfferIssuerDataPennyTransactionAmount": ".issuer_offer_issuer_data_penny_transaction_amount",
|
|
647
|
+
"IssuerOfferIssuerType": ".issuer_offer_issuer_type",
|
|
648
|
+
"ListPlansResponse": ".list_plans_response",
|
|
649
|
+
"ListPresentationsResponse": ".list_presentations_response",
|
|
650
|
+
"ListSettlementsResponse": ".list_settlements_response",
|
|
651
|
+
"ListSubscriptionsResponse": ".list_subscriptions_response",
|
|
652
|
+
"MerchantMetadata": ".merchant_metadata",
|
|
653
|
+
"NetBankingDataResponse": ".net_banking_data_response",
|
|
654
|
+
"NetBankingDataResponseTxnMode": ".net_banking_data_response_txn_mode",
|
|
655
|
+
"OfferDiscoveryErrorResponse": ".offer_discovery_error_response",
|
|
656
|
+
"OfferDiscoveryErrorResponseAdditionalErrorDetails": ".offer_discovery_error_response_additional_error_details",
|
|
657
|
+
"OfferDiscoveryResponse": ".offer_discovery_response",
|
|
658
|
+
"OfferValidationErrorResponse": ".offer_validation_error_response",
|
|
659
|
+
"OfferValidationErrorResponseAdditionalErrorDetails": ".offer_validation_error_response_additional_error_details",
|
|
660
|
+
"OfferValidationResponse": ".offer_validation_response",
|
|
661
|
+
"OrderResponse": ".order_response",
|
|
662
|
+
"OrderResponseData": ".order_response_data",
|
|
663
|
+
"OrderResponseDataIntegrationMode": ".order_response_data_integration_mode",
|
|
664
|
+
"OrderResponseDataPurchaseDetails": ".order_response_data_purchase_details",
|
|
665
|
+
"OrderResponseDataStatus": ".order_response_data_status",
|
|
666
|
+
"OrderResponseDataType": ".order_response_data_type",
|
|
667
|
+
"OtpGenerateResponse": ".otp_generate_response",
|
|
668
|
+
"OtpGenerateResponseMetaData": ".otp_generate_response_meta_data",
|
|
669
|
+
"OtpGenerateResponseNextItem": ".otp_generate_response_next_item",
|
|
670
|
+
"PageInfo": ".page_info",
|
|
671
|
+
"PaginationLinks": ".pagination_links",
|
|
672
|
+
"PaginationLinksFirst": ".pagination_links_first",
|
|
673
|
+
"PaginationLinksLast": ".pagination_links_last",
|
|
674
|
+
"PaginationLinksNext": ".pagination_links_next",
|
|
675
|
+
"PaginationLinksSelf": ".pagination_links_self",
|
|
676
|
+
"PaginationMeta": ".pagination_meta",
|
|
677
|
+
"PaymentItem": ".payment_item",
|
|
678
|
+
"PaymentItemErrorDetail": ".payment_item_error_detail",
|
|
679
|
+
"PaymentItemPaymentMethod": ".payment_item_payment_method",
|
|
680
|
+
"PaymentItemPaymentOption": ".payment_item_payment_option",
|
|
681
|
+
"PaymentItemStatus": ".payment_item_status",
|
|
682
|
+
"PaymentLinkAccountDetails": ".payment_link_account_details",
|
|
683
|
+
"PaymentLinkAddress": ".payment_link_address",
|
|
684
|
+
"PaymentLinkBankDetails": ".payment_link_bank_details",
|
|
685
|
+
"PaymentLinkCartDetails": ".payment_link_cart_details",
|
|
686
|
+
"PaymentLinkCartItem": ".payment_link_cart_item",
|
|
687
|
+
"PaymentLinkCustomer": ".payment_link_customer",
|
|
688
|
+
"PaymentLinkProductDetail": ".payment_link_product_detail",
|
|
689
|
+
"PaymentLinkResponse": ".payment_link_response",
|
|
690
|
+
"PaymentLinkResponseAllowedPaymentMethodsItem": ".payment_link_response_allowed_payment_methods_item",
|
|
691
|
+
"PaymentLinkResponseStatus": ".payment_link_response_status",
|
|
692
|
+
"PaymentLinkSplitDetail": ".payment_link_split_detail",
|
|
693
|
+
"PaymentLinkSplitDetailStatus": ".payment_link_split_detail_status",
|
|
694
|
+
"PaymentLinkSplitInfo": ".payment_link_split_info",
|
|
695
|
+
"PaymentObject": ".payment_object",
|
|
696
|
+
"PaymentObjectAcquirerData": ".payment_object_acquirer_data",
|
|
697
|
+
"PaymentObjectPaymentAmount": ".payment_object_payment_amount",
|
|
698
|
+
"PaymentObjectPaymentMethod": ".payment_object_payment_method",
|
|
699
|
+
"PaymentObjectStatus": ".payment_object_status",
|
|
700
|
+
"PaymentRequestItem": ".payment_request_item",
|
|
701
|
+
"PaymentRequestItemDeviceInfo": ".payment_request_item_device_info",
|
|
702
|
+
"PaymentRequestItemDeviceInfoOperatingSystem": ".payment_request_item_device_info_operating_system",
|
|
703
|
+
"PaymentRequestItemOfferData": ".payment_request_item_offer_data",
|
|
704
|
+
"PaymentRequestItemOfferDataOfferDetails": ".payment_request_item_offer_data_offer_details",
|
|
705
|
+
"PaymentRequestItemOfferDataOfferDetailsTenure": ".payment_request_item_offer_data_offer_details_tenure",
|
|
706
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureAuthAmount": ".payment_request_item_offer_data_offer_details_tenure_auth_amount",
|
|
707
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureCartCouponDiscountAmount": ".payment_request_item_offer_data_offer_details_tenure_cart_coupon_discount_amount",
|
|
708
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureConvenienceFeeBreakdown": ".payment_request_item_offer_data_offer_details_tenure_convenience_fee_breakdown",
|
|
709
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureConvenienceFeeBreakdownAdditionalFeeAmount": ".payment_request_item_offer_data_offer_details_tenure_convenience_fee_breakdown_additional_fee_amount",
|
|
710
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureConvenienceFeeBreakdownApplicableFeeAmount": ".payment_request_item_offer_data_offer_details_tenure_convenience_fee_breakdown_applicable_fee_amount",
|
|
711
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureConvenienceFeeBreakdownFeeAmount": ".payment_request_item_offer_data_offer_details_tenure_convenience_fee_breakdown_fee_amount",
|
|
712
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureConvenienceFeeBreakdownFeeCalculatedOnAmount": ".payment_request_item_offer_data_offer_details_tenure_convenience_fee_breakdown_fee_calculated_on_amount",
|
|
713
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureConvenienceFeeBreakdownMaximumFeeAmount": ".payment_request_item_offer_data_offer_details_tenure_convenience_fee_breakdown_maximum_fee_amount",
|
|
714
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureConvenienceFeeBreakdownSubventedFeeAmount": ".payment_request_item_offer_data_offer_details_tenure_convenience_fee_breakdown_subvented_fee_amount",
|
|
715
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureConvenienceFeeBreakdownTaxAmount": ".payment_request_item_offer_data_offer_details_tenure_convenience_fee_breakdown_tax_amount",
|
|
716
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItem": ".payment_request_item_offer_data_offer_details_tenure_details_item",
|
|
717
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemAfterDownpaymentReducedProductAmount": ".payment_request_item_offer_data_offer_details_tenure_details_item_after_downpayment_reduced_product_amount",
|
|
718
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemCartCouponDiscountProductShare": ".payment_request_item_offer_data_offer_details_tenure_details_item_cart_coupon_discount_product_share",
|
|
719
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscount": ".payment_request_item_offer_data_offer_details_tenure_details_item_discount",
|
|
720
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscountBreakup": ".payment_request_item_offer_data_offer_details_tenure_details_item_discount_breakup",
|
|
721
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscountBreakupBrand": ".payment_request_item_offer_data_offer_details_tenure_details_item_discount_breakup_brand",
|
|
722
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscountBreakupBrandAmount": ".payment_request_item_offer_data_offer_details_tenure_details_item_discount_breakup_brand_amount",
|
|
723
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscountBreakupDealer": ".payment_request_item_offer_data_offer_details_tenure_details_item_discount_breakup_dealer",
|
|
724
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscountBreakupDealerAmount": ".payment_request_item_offer_data_offer_details_tenure_details_item_discount_breakup_dealer_amount",
|
|
725
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscountBreakupIssuer": ".payment_request_item_offer_data_offer_details_tenure_details_item_discount_breakup_issuer",
|
|
726
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscountBreakupIssuerAmount": ".payment_request_item_offer_data_offer_details_tenure_details_item_discount_breakup_issuer_amount",
|
|
727
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscountBreakupMerchant": ".payment_request_item_offer_data_offer_details_tenure_details_item_discount_breakup_merchant",
|
|
728
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscountBreakupMerchantAmount": ".payment_request_item_offer_data_offer_details_tenure_details_item_discount_breakup_merchant_amount",
|
|
729
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscountMaxAmount": ".payment_request_item_offer_data_offer_details_tenure_details_item_discount_max_amount",
|
|
730
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscountMinAmount": ".payment_request_item_offer_data_offer_details_tenure_details_item_discount_min_amount",
|
|
731
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDownpaymentAmount": ".payment_request_item_offer_data_offer_details_tenure_details_item_downpayment_amount",
|
|
732
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemInterestAmount": ".payment_request_item_offer_data_offer_details_tenure_details_item_interest_amount",
|
|
733
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemProductAmount": ".payment_request_item_offer_data_offer_details_tenure_details_item_product_amount",
|
|
734
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemProductCouponDiscountAmount": ".payment_request_item_offer_data_offer_details_tenure_details_item_product_coupon_discount_amount",
|
|
735
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemProductOfferParametersItem": ".payment_request_item_offer_data_offer_details_tenure_details_item_product_offer_parameters_item",
|
|
736
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubvention": ".payment_request_item_offer_data_offer_details_tenure_details_item_subvention",
|
|
737
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionAmount": ".payment_request_item_offer_data_offer_details_tenure_details_item_subvention_amount",
|
|
738
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionBreakup": ".payment_request_item_offer_data_offer_details_tenure_details_item_subvention_breakup",
|
|
739
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionBreakupBrand": ".payment_request_item_offer_data_offer_details_tenure_details_item_subvention_breakup_brand",
|
|
740
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionBreakupBrandAmount": ".payment_request_item_offer_data_offer_details_tenure_details_item_subvention_breakup_brand_amount",
|
|
741
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionBreakupDealer": ".payment_request_item_offer_data_offer_details_tenure_details_item_subvention_breakup_dealer",
|
|
742
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionBreakupDealerAmount": ".payment_request_item_offer_data_offer_details_tenure_details_item_subvention_breakup_dealer_amount",
|
|
743
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionBreakupIssuer": ".payment_request_item_offer_data_offer_details_tenure_details_item_subvention_breakup_issuer",
|
|
744
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionBreakupIssuerAmount": ".payment_request_item_offer_data_offer_details_tenure_details_item_subvention_breakup_issuer_amount",
|
|
745
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionBreakupMerchant": ".payment_request_item_offer_data_offer_details_tenure_details_item_subvention_breakup_merchant",
|
|
746
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionBreakupMerchantAmount": ".payment_request_item_offer_data_offer_details_tenure_details_item_subvention_breakup_merchant_amount",
|
|
747
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionMaxAmount": ".payment_request_item_offer_data_offer_details_tenure_details_item_subvention_max_amount",
|
|
748
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionMinAmount": ".payment_request_item_offer_data_offer_details_tenure_details_item_subvention_min_amount",
|
|
749
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDownpaymentDetails": ".payment_request_item_offer_data_offer_details_tenure_downpayment_details",
|
|
750
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDownpaymentDetailsDownpaymentAmount": ".payment_request_item_offer_data_offer_details_tenure_downpayment_details_downpayment_amount",
|
|
751
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureIntrestAmount": ".payment_request_item_offer_data_offer_details_tenure_intrest_amount",
|
|
752
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureLoanAmount": ".payment_request_item_offer_data_offer_details_tenure_loan_amount",
|
|
753
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureMonthlyEmiAmount": ".payment_request_item_offer_data_offer_details_tenure_monthly_emi_amount",
|
|
754
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureNetPaymentAmount": ".payment_request_item_offer_data_offer_details_tenure_net_payment_amount",
|
|
755
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureProcessingFeeDetails": ".payment_request_item_offer_data_offer_details_tenure_processing_fee_details",
|
|
756
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureProcessingFeeDetailsAmount": ".payment_request_item_offer_data_offer_details_tenure_processing_fee_details_amount",
|
|
757
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureSplitEmiAmount": ".payment_request_item_offer_data_offer_details_tenure_split_emi_amount",
|
|
758
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureTotalCouponDiscount": ".payment_request_item_offer_data_offer_details_tenure_total_coupon_discount",
|
|
759
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureTotalDiscountAmount": ".payment_request_item_offer_data_offer_details_tenure_total_discount_amount",
|
|
760
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureTotalEmiAmount": ".payment_request_item_offer_data_offer_details_tenure_total_emi_amount",
|
|
761
|
+
"PaymentRequestItemPaymentMethod": ".payment_request_item_payment_method",
|
|
762
|
+
"PaymentRequestItemPaymentOption": ".payment_request_item_payment_option",
|
|
763
|
+
"PaymentRequestItemPaymentOptionBnplDetails": ".payment_request_item_payment_option_bnpl_details",
|
|
764
|
+
"PaymentRequestItemPaymentOptionBnplDetailsBnplPayCode": ".payment_request_item_payment_option_bnpl_details_bnpl_pay_code",
|
|
765
|
+
"PaymentRequestItemPaymentOptionCardDetails": ".payment_request_item_payment_option_card_details",
|
|
766
|
+
"PaymentRequestItemPaymentOptionCardTokenDetails": ".payment_request_item_payment_option_card_token_details",
|
|
767
|
+
"PaymentRequestItemPaymentOptionCardlessDetails": ".payment_request_item_payment_option_cardless_details",
|
|
768
|
+
"PaymentRequestItemPaymentOptionPointsCardDetails": ".payment_request_item_payment_option_points_card_details",
|
|
769
|
+
"PayoutAmount": ".payout_amount",
|
|
770
|
+
"PayoutDetail": ".payout_detail",
|
|
771
|
+
"PayoutDetailMode": ".payout_detail_mode",
|
|
772
|
+
"PayoutDetailStatus": ".payout_detail_status",
|
|
773
|
+
"PayoutLink": ".payout_link",
|
|
774
|
+
"PlanResponse": ".plan_response",
|
|
775
|
+
"PlanResponseFrequency": ".plan_response_frequency",
|
|
776
|
+
"PlanResponseStatus": ".plan_response_status",
|
|
777
|
+
"PresentationDetail": ".presentation_detail",
|
|
778
|
+
"PresentationDetailPdnStatus": ".presentation_detail_pdn_status",
|
|
779
|
+
"PresentationDetailStatus": ".presentation_detail_status",
|
|
780
|
+
"ProductDetail": ".product_detail",
|
|
781
|
+
"RefundResponse": ".refund_response",
|
|
782
|
+
"RefundResponseData": ".refund_response_data",
|
|
783
|
+
"RefundResponseDataIntegrationMode": ".refund_response_data_integration_mode",
|
|
784
|
+
"RefundResponseDataOrderAmount": ".refund_response_data_order_amount",
|
|
785
|
+
"RefundResponseDataPurchaseDetails": ".refund_response_data_purchase_details",
|
|
786
|
+
"RefundResponseDataPurchaseDetailsCustomer": ".refund_response_data_purchase_details_customer",
|
|
787
|
+
"RefundResponseDataPurchaseDetailsSplitInfo": ".refund_response_data_purchase_details_split_info",
|
|
788
|
+
"RefundResponseDataStatus": ".refund_response_data_status",
|
|
789
|
+
"RefundResponseDataType": ".refund_response_data_type",
|
|
790
|
+
"ResendOtpErrorResponse": ".resend_otp_error_response",
|
|
791
|
+
"ServiceProviderTokenResponse": ".service_provider_token_response",
|
|
792
|
+
"ServiceProviderTokenResponsePaymentMethod": ".service_provider_token_response_payment_method",
|
|
793
|
+
"ServiceProviderTokensListResponse": ".service_provider_tokens_list_response",
|
|
794
|
+
"SettlementByUtrResponse": ".settlement_by_utr_response",
|
|
795
|
+
"SettlementByUtrResponsePagination": ".settlement_by_utr_response_pagination",
|
|
796
|
+
"SettlementSummary": ".settlement_summary",
|
|
797
|
+
"SettlementTransaction": ".settlement_transaction",
|
|
798
|
+
"SimpleAmount": ".simple_amount",
|
|
799
|
+
"SplitDetail": ".split_detail",
|
|
800
|
+
"SplitDetailRefund": ".split_detail_refund",
|
|
801
|
+
"SplitDetailRefundAmount": ".split_detail_refund_amount",
|
|
802
|
+
"SplitDetailRefundStatus": ".split_detail_refund_status",
|
|
803
|
+
"SplitDetailStatus": ".split_detail_status",
|
|
804
|
+
"SplitInfo": ".split_info",
|
|
805
|
+
"SplitPaymentObject": ".split_payment_object",
|
|
806
|
+
"SplitPaymentObjectAcquirerData": ".split_payment_object_acquirer_data",
|
|
807
|
+
"SplitPaymentObjectAdditionalDetail": ".split_payment_object_additional_detail",
|
|
808
|
+
"SplitPaymentObjectCaptureDataItem": ".split_payment_object_capture_data_item",
|
|
809
|
+
"SplitPaymentObjectCaptureDataItemCaptureAmount": ".split_payment_object_capture_data_item_capture_amount",
|
|
810
|
+
"SplitPaymentObjectPaymentAmount": ".split_payment_object_payment_amount",
|
|
811
|
+
"SplitPaymentObjectPaymentMethod": ".split_payment_object_payment_method",
|
|
812
|
+
"SplitPaymentObjectPaymentOption": ".split_payment_object_payment_option",
|
|
813
|
+
"SplitPaymentObjectPaymentOptionCardData": ".split_payment_object_payment_option_card_data",
|
|
814
|
+
"SplitPaymentObjectPaymentOptionCardDataCardType": ".split_payment_object_payment_option_card_data_card_type",
|
|
815
|
+
"SplitPaymentObjectPaymentOptionCardDataTokenTxnType": ".split_payment_object_payment_option_card_data_token_txn_type",
|
|
816
|
+
"SplitPaymentObjectStatus": ".split_payment_object_status",
|
|
817
|
+
"SplitSettlementDetail": ".split_settlement_detail",
|
|
818
|
+
"SplitSettlementDetailAmount": ".split_settlement_detail_amount",
|
|
819
|
+
"SplitSettlementDetailReleaseAmount": ".split_settlement_detail_release_amount",
|
|
820
|
+
"SplitSettlementDetailStatus": ".split_settlement_detail_status",
|
|
821
|
+
"SplitSettlementResponse": ".split_settlement_response",
|
|
822
|
+
"SplitSettlementResponseData": ".split_settlement_response_data",
|
|
823
|
+
"SplitSettlementResponseDataAllowedPaymentMethodsItem": ".split_settlement_response_data_allowed_payment_methods_item",
|
|
824
|
+
"SplitSettlementResponseDataIntegrationMode": ".split_settlement_response_data_integration_mode",
|
|
825
|
+
"SplitSettlementResponseDataOrderAmount": ".split_settlement_response_data_order_amount",
|
|
826
|
+
"SplitSettlementResponseDataPurchaseDetails": ".split_settlement_response_data_purchase_details",
|
|
827
|
+
"SplitSettlementResponseDataPurchaseDetailsCustomer": ".split_settlement_response_data_purchase_details_customer",
|
|
828
|
+
"SplitSettlementResponseDataPurchaseDetailsSplitInfo": ".split_settlement_response_data_purchase_details_split_info",
|
|
829
|
+
"SplitSettlementResponseDataStatus": ".split_settlement_response_data_status",
|
|
830
|
+
"SplitSettlementResponseDataType": ".split_settlement_response_data_type",
|
|
831
|
+
"SubmitOtpErrorResponse": ".submit_otp_error_response",
|
|
832
|
+
"SubmitOtpErrorResponseMetaData": ".submit_otp_error_response_meta_data",
|
|
833
|
+
"SubscriptionAmount": ".subscription_amount",
|
|
834
|
+
"SubscriptionDetail": ".subscription_detail",
|
|
835
|
+
"SubscriptionDetailAllowedPaymentMethodsItem": ".subscription_detail_allowed_payment_methods_item",
|
|
836
|
+
"SubscriptionDetailIntegrationMode": ".subscription_detail_integration_mode",
|
|
837
|
+
"SubscriptionDetailPaymentMode": ".subscription_detail_payment_mode",
|
|
838
|
+
"SubscriptionDetailStatus": ".subscription_detail_status",
|
|
839
|
+
"SubscriptionNotificationResponse": ".subscription_notification_response",
|
|
840
|
+
"SubscriptionNotificationResponsePdnStatus": ".subscription_notification_response_pdn_status",
|
|
841
|
+
"SubscriptionNotificationResponseStatus": ".subscription_notification_response_status",
|
|
842
|
+
"Tenure": ".tenure",
|
|
843
|
+
"TenureAuthAmount": ".tenure_auth_amount",
|
|
844
|
+
"TenureCartCouponDiscountAmount": ".tenure_cart_coupon_discount_amount",
|
|
845
|
+
"TenureConvenienceFeeBreakdown": ".tenure_convenience_fee_breakdown",
|
|
846
|
+
"TenureConvenienceFeeBreakdownAdditionalFeeAmount": ".tenure_convenience_fee_breakdown_additional_fee_amount",
|
|
847
|
+
"TenureConvenienceFeeBreakdownApplicableFeeAmount": ".tenure_convenience_fee_breakdown_applicable_fee_amount",
|
|
848
|
+
"TenureConvenienceFeeBreakdownFeeAmount": ".tenure_convenience_fee_breakdown_fee_amount",
|
|
849
|
+
"TenureConvenienceFeeBreakdownFeeCalculatedOnAmount": ".tenure_convenience_fee_breakdown_fee_calculated_on_amount",
|
|
850
|
+
"TenureConvenienceFeeBreakdownMaximumFeeAmount": ".tenure_convenience_fee_breakdown_maximum_fee_amount",
|
|
851
|
+
"TenureConvenienceFeeBreakdownSubventedFeeAmount": ".tenure_convenience_fee_breakdown_subvented_fee_amount",
|
|
852
|
+
"TenureConvenienceFeeBreakdownTaxAmount": ".tenure_convenience_fee_breakdown_tax_amount",
|
|
853
|
+
"TenureDetailsItem": ".tenure_details_item",
|
|
854
|
+
"TenureDetailsItemAfterDownpaymentReducedProductAmount": ".tenure_details_item_after_downpayment_reduced_product_amount",
|
|
855
|
+
"TenureDetailsItemCartCouponDiscountProductShare": ".tenure_details_item_cart_coupon_discount_product_share",
|
|
856
|
+
"TenureDetailsItemDiscount": ".tenure_details_item_discount",
|
|
857
|
+
"TenureDetailsItemDiscountAmount": ".tenure_details_item_discount_amount",
|
|
858
|
+
"TenureDetailsItemDiscountBreakup": ".tenure_details_item_discount_breakup",
|
|
859
|
+
"TenureDetailsItemDiscountBreakupBrand": ".tenure_details_item_discount_breakup_brand",
|
|
860
|
+
"TenureDetailsItemDiscountBreakupBrandAmount": ".tenure_details_item_discount_breakup_brand_amount",
|
|
861
|
+
"TenureDetailsItemDiscountBreakupMerchant": ".tenure_details_item_discount_breakup_merchant",
|
|
862
|
+
"TenureDetailsItemDiscountBreakupMerchantAmount": ".tenure_details_item_discount_breakup_merchant_amount",
|
|
863
|
+
"TenureDetailsItemDiscountDiscountDeferredDurationType": ".tenure_details_item_discount_discount_deferred_duration_type",
|
|
864
|
+
"TenureDetailsItemDiscountDiscountType": ".tenure_details_item_discount_discount_type",
|
|
865
|
+
"TenureDetailsItemDiscountMaxAmount": ".tenure_details_item_discount_max_amount",
|
|
866
|
+
"TenureDetailsItemDownpaymentAmount": ".tenure_details_item_downpayment_amount",
|
|
867
|
+
"TenureDetailsItemInterestAmount": ".tenure_details_item_interest_amount",
|
|
868
|
+
"TenureDetailsItemProductAmount": ".tenure_details_item_product_amount",
|
|
869
|
+
"TenureDetailsItemProductCouponDiscountAmount": ".tenure_details_item_product_coupon_discount_amount",
|
|
870
|
+
"TenureDetailsItemProductOfferParametersItem": ".tenure_details_item_product_offer_parameters_item",
|
|
871
|
+
"TenureDetailsItemSubvention": ".tenure_details_item_subvention",
|
|
872
|
+
"TenureDetailsItemSubventionAmount": ".tenure_details_item_subvention_amount",
|
|
873
|
+
"TenureDetailsItemSubventionBreakup": ".tenure_details_item_subvention_breakup",
|
|
874
|
+
"TenureDetailsItemSubventionBreakupBrand": ".tenure_details_item_subvention_breakup_brand",
|
|
875
|
+
"TenureDetailsItemSubventionBreakupBrandAmount": ".tenure_details_item_subvention_breakup_brand_amount",
|
|
876
|
+
"TenureDetailsItemSubventionMaxAmount": ".tenure_details_item_subvention_max_amount",
|
|
877
|
+
"TenureDetailsItemSubventionMinAmount": ".tenure_details_item_subvention_min_amount",
|
|
878
|
+
"TenureDetailsItemSubventionOfferType": ".tenure_details_item_subvention_offer_type",
|
|
879
|
+
"TenureDetailsItemSubventionSubventionType": ".tenure_details_item_subvention_subvention_type",
|
|
880
|
+
"TenureDiscount": ".tenure_discount",
|
|
881
|
+
"TenureDiscountAmount": ".tenure_discount_amount",
|
|
882
|
+
"TenureDiscountBreakup": ".tenure_discount_breakup",
|
|
883
|
+
"TenureDiscountBreakupBrand": ".tenure_discount_breakup_brand",
|
|
884
|
+
"TenureDiscountBreakupBrandAmount": ".tenure_discount_breakup_brand_amount",
|
|
885
|
+
"TenureDiscountBreakupDealer": ".tenure_discount_breakup_dealer",
|
|
886
|
+
"TenureDiscountBreakupDealerAmount": ".tenure_discount_breakup_dealer_amount",
|
|
887
|
+
"TenureDiscountBreakupIssuer": ".tenure_discount_breakup_issuer",
|
|
888
|
+
"TenureDiscountBreakupIssuerAmount": ".tenure_discount_breakup_issuer_amount",
|
|
889
|
+
"TenureDiscountBreakupMerchant": ".tenure_discount_breakup_merchant",
|
|
890
|
+
"TenureDiscountBreakupMerchantAmount": ".tenure_discount_breakup_merchant_amount",
|
|
891
|
+
"TenureDiscountDiscountDeferredDurationType": ".tenure_discount_discount_deferred_duration_type",
|
|
892
|
+
"TenureDiscountDiscountType": ".tenure_discount_discount_type",
|
|
893
|
+
"TenureDiscountMaxAmount": ".tenure_discount_max_amount",
|
|
894
|
+
"TenureDownpaymentDetails": ".tenure_downpayment_details",
|
|
895
|
+
"TenureDownpaymentDetailsDownpaymentAmount": ".tenure_downpayment_details_downpayment_amount",
|
|
896
|
+
"TenureEmiType": ".tenure_emi_type",
|
|
897
|
+
"TenureInterestAmount": ".tenure_interest_amount",
|
|
898
|
+
"TenureIssuerOfferParametersItem": ".tenure_issuer_offer_parameters_item",
|
|
899
|
+
"TenureLoanAmount": ".tenure_loan_amount",
|
|
900
|
+
"TenureMonthlyEmiAmount": ".tenure_monthly_emi_amount",
|
|
901
|
+
"TenureNetPaymentAmount": ".tenure_net_payment_amount",
|
|
902
|
+
"TenureProcessingFeeAmount": ".tenure_processing_fee_amount",
|
|
903
|
+
"TenureProcessingFeeDetails": ".tenure_processing_fee_details",
|
|
904
|
+
"TenureProcessingFeeDetailsAmount": ".tenure_processing_fee_details_amount",
|
|
905
|
+
"TenureSplitEmiAmount": ".tenure_split_emi_amount",
|
|
906
|
+
"TenureTenureType": ".tenure_tenure_type",
|
|
907
|
+
"TenureTotalCouponDiscount": ".tenure_total_coupon_discount",
|
|
908
|
+
"TenureTotalDiscountAmount": ".tenure_total_discount_amount",
|
|
909
|
+
"TenureTotalDownPaymentAmount": ".tenure_total_down_payment_amount",
|
|
910
|
+
"TenureTotalEmiAmount": ".tenure_total_emi_amount",
|
|
911
|
+
"TenureTotalSubventionAmount": ".tenure_total_subvention_amount",
|
|
912
|
+
"TokenCardData": ".token_card_data",
|
|
913
|
+
"TokenCardDataCardType": ".token_card_data_card_type",
|
|
914
|
+
"TokenPayment": ".token_payment",
|
|
915
|
+
"TokenPaymentAcquirerData": ".token_payment_acquirer_data",
|
|
916
|
+
"TokenPaymentOption": ".token_payment_option",
|
|
917
|
+
"TokenStatus": ".token_status",
|
|
918
|
+
"TokenTransactionalData": ".token_transactional_data",
|
|
919
|
+
"UpiDetailsResponse": ".upi_details_response",
|
|
920
|
+
"UpiDetailsResponsePayer": ".upi_details_response_payer",
|
|
921
|
+
"UpiDetailsResponseTxnMode": ".upi_details_response_txn_mode",
|
|
922
|
+
}
|
|
923
|
+
|
|
924
|
+
|
|
925
|
+
def __getattr__(attr_name: str) -> typing.Any:
|
|
926
|
+
module_name = _dynamic_imports.get(attr_name)
|
|
927
|
+
if module_name is None:
|
|
928
|
+
raise AttributeError(f"No {attr_name} found in _dynamic_imports for module name -> {__name__}")
|
|
929
|
+
try:
|
|
930
|
+
module = import_module(module_name, __package__)
|
|
931
|
+
if module_name == f".{attr_name}":
|
|
932
|
+
return module
|
|
933
|
+
else:
|
|
934
|
+
return getattr(module, attr_name)
|
|
935
|
+
except ImportError as e:
|
|
936
|
+
raise ImportError(f"Failed to import {attr_name} from {module_name}: {e}") from e
|
|
937
|
+
except AttributeError as e:
|
|
938
|
+
raise AttributeError(f"Failed to get {attr_name} from {module_name}: {e}") from e
|
|
939
|
+
|
|
940
|
+
|
|
941
|
+
def __dir__():
|
|
942
|
+
lazy_attrs = list(_dynamic_imports.keys())
|
|
943
|
+
return sorted(lazy_attrs)
|
|
944
|
+
|
|
945
|
+
|
|
946
|
+
__all__ = [
|
|
947
|
+
"AcquirerData",
|
|
948
|
+
"Address",
|
|
949
|
+
"AddressAddressCategory",
|
|
950
|
+
"Amount",
|
|
951
|
+
"AuthorizePaymentResponse",
|
|
952
|
+
"AuthorizePaymentResponseData",
|
|
953
|
+
"AuthorizePaymentResponseDataIntegrationMode",
|
|
954
|
+
"AuthorizePaymentResponseDataOrderAmount",
|
|
955
|
+
"AuthorizePaymentResponseDataPaymentsItem",
|
|
956
|
+
"AuthorizePaymentResponseDataPaymentsItemAcquirerData",
|
|
957
|
+
"AuthorizePaymentResponseDataPaymentsItemPaymentAmount",
|
|
958
|
+
"AuthorizePaymentResponseDataPaymentsItemPaymentMethod",
|
|
959
|
+
"AuthorizePaymentResponseDataPaymentsItemPaymentOption",
|
|
960
|
+
"AuthorizePaymentResponseDataPaymentsItemPaymentOptionWalletData",
|
|
961
|
+
"AuthorizePaymentResponseDataPaymentsItemPaymentOptionWalletDataWalletCardData",
|
|
962
|
+
"AuthorizePaymentResponseDataPaymentsItemPaymentOptionWalletDataWalletCardDataCardType",
|
|
963
|
+
"AuthorizePaymentResponseDataPaymentsItemPaymentOptionWalletDataWalletCardDataTokenTxnType",
|
|
964
|
+
"AuthorizePaymentResponseDataPaymentsItemStatus",
|
|
965
|
+
"AuthorizePaymentResponseDataPurchaseDetails",
|
|
966
|
+
"AuthorizePaymentResponseDataPurchaseDetailsCustomer",
|
|
967
|
+
"AuthorizePaymentResponseDataStatus",
|
|
968
|
+
"AuthorizePaymentResponseDataType",
|
|
969
|
+
"BankAccount",
|
|
970
|
+
"BnplCheckEligibilityResponse",
|
|
971
|
+
"BnplCheckEligibilityResponseMetadata",
|
|
972
|
+
"BnplCheckEligibilityResponseMetadataInstallmentsItem",
|
|
973
|
+
"BnplResendOtpResponse",
|
|
974
|
+
"BnplResendOtpResponseMetaData",
|
|
975
|
+
"BnplSubmitOtpResponse",
|
|
976
|
+
"CalculateConvenienceFeeResponse",
|
|
977
|
+
"CalculateConvenienceFeeResponseDataItem",
|
|
978
|
+
"CalculateConvenienceFeeResponseDataItemConvenienceFeeBreakdown",
|
|
979
|
+
"CalculateConvenienceFeeResponseDataItemPaymentMethodMetadata",
|
|
980
|
+
"CaptureDataItem",
|
|
981
|
+
"CardData",
|
|
982
|
+
"CardDataCardCategory",
|
|
983
|
+
"CardDataCardType",
|
|
984
|
+
"CardDataTokenTxnType",
|
|
985
|
+
"CardDetailLookupItem",
|
|
986
|
+
"CardDetailLookupItemPaymentReferenceType",
|
|
987
|
+
"CardPaymentDetailItem",
|
|
988
|
+
"CardTokenResponse",
|
|
989
|
+
"CartDetails",
|
|
990
|
+
"CartItem",
|
|
991
|
+
"ChallanResponse",
|
|
992
|
+
"CheckPointBalanceResponse",
|
|
993
|
+
"CheckPointBalanceResponseBalance",
|
|
994
|
+
"CheckPointBalanceResponseRedeemableAmount",
|
|
995
|
+
"CheckoutCustomer",
|
|
996
|
+
"CheckoutProduct",
|
|
997
|
+
"CheckoutPurchaseDetails",
|
|
998
|
+
"CreateBulkPayoutResponse",
|
|
999
|
+
"CreateBulkPayoutResponseStatus",
|
|
1000
|
+
"CreateDebitResponse",
|
|
1001
|
+
"CreateDebitResponseStatus",
|
|
1002
|
+
"CreatePayoutResponse",
|
|
1003
|
+
"CreatePayoutResponseMode",
|
|
1004
|
+
"CreatePayoutResponseStatus",
|
|
1005
|
+
"CreatePresentationResponse",
|
|
1006
|
+
"CreatePresentationResponseStatus",
|
|
1007
|
+
"CreateSubscriptionResponse",
|
|
1008
|
+
"CreateSubscriptionResponseAllowedPaymentMethodsItem",
|
|
1009
|
+
"CreateSubscriptionResponseIntegrationMode",
|
|
1010
|
+
"CreateSubscriptionResponsePaymentMode",
|
|
1011
|
+
"CreateSubscriptionResponseStatus",
|
|
1012
|
+
"CryptogramResponse",
|
|
1013
|
+
"CurrencyConversionResponse",
|
|
1014
|
+
"CustomerDetails",
|
|
1015
|
+
"CustomerResponse",
|
|
1016
|
+
"CustomerResponseStatus",
|
|
1017
|
+
"CustomerTokenDetail",
|
|
1018
|
+
"CustomerTokenDetailPaymentMethod",
|
|
1019
|
+
"CustomerTokensResponse",
|
|
1020
|
+
"DeleteCustomerTokenResponse",
|
|
1021
|
+
"DeleteTokenByTokenIdResponse",
|
|
1022
|
+
"DownpaymentDetailsResponse",
|
|
1023
|
+
"DownpaymentDetailsResponseDownpaymentDetails",
|
|
1024
|
+
"DownpaymentDetailsResponseDownpaymentDetailsAllowedPaymentMethodsItem",
|
|
1025
|
+
"DownpaymentDetailsResponseDownpaymentDetailsAmountRange",
|
|
1026
|
+
"ErrorResponse",
|
|
1027
|
+
"ErrorResponseAdditionalErrorDetails",
|
|
1028
|
+
"GenerateCheckoutLinkResponse",
|
|
1029
|
+
"GenerateTokenResponse",
|
|
1030
|
+
"GetAccountBalanceResponse",
|
|
1031
|
+
"GetCardDetailsResponse",
|
|
1032
|
+
"GetPayoutsPaymentItem",
|
|
1033
|
+
"GetPayoutsPaymentItemMode",
|
|
1034
|
+
"GetPayoutsPaymentItemStatus",
|
|
1035
|
+
"GetPayoutsResponse",
|
|
1036
|
+
"ImeiProduct",
|
|
1037
|
+
"ImeiValidationResponse",
|
|
1038
|
+
"ImeiValidationResponseProductsItem",
|
|
1039
|
+
"ImeiValidationResponseProductsItemProductBrandResponse",
|
|
1040
|
+
"ImeiValidationResponseProductsItemProductImeiStatus",
|
|
1041
|
+
"IssuerOffer",
|
|
1042
|
+
"IssuerOfferIssuerData",
|
|
1043
|
+
"IssuerOfferIssuerDataAuthType",
|
|
1044
|
+
"IssuerOfferIssuerDataPennyTransactionAmount",
|
|
1045
|
+
"IssuerOfferIssuerType",
|
|
1046
|
+
"ListPlansResponse",
|
|
1047
|
+
"ListPresentationsResponse",
|
|
1048
|
+
"ListSettlementsResponse",
|
|
1049
|
+
"ListSubscriptionsResponse",
|
|
1050
|
+
"MerchantMetadata",
|
|
1051
|
+
"NetBankingDataResponse",
|
|
1052
|
+
"NetBankingDataResponseTxnMode",
|
|
1053
|
+
"OfferDiscoveryErrorResponse",
|
|
1054
|
+
"OfferDiscoveryErrorResponseAdditionalErrorDetails",
|
|
1055
|
+
"OfferDiscoveryResponse",
|
|
1056
|
+
"OfferValidationErrorResponse",
|
|
1057
|
+
"OfferValidationErrorResponseAdditionalErrorDetails",
|
|
1058
|
+
"OfferValidationResponse",
|
|
1059
|
+
"OrderResponse",
|
|
1060
|
+
"OrderResponseData",
|
|
1061
|
+
"OrderResponseDataIntegrationMode",
|
|
1062
|
+
"OrderResponseDataPurchaseDetails",
|
|
1063
|
+
"OrderResponseDataStatus",
|
|
1064
|
+
"OrderResponseDataType",
|
|
1065
|
+
"OtpGenerateResponse",
|
|
1066
|
+
"OtpGenerateResponseMetaData",
|
|
1067
|
+
"OtpGenerateResponseNextItem",
|
|
1068
|
+
"PageInfo",
|
|
1069
|
+
"PaginationLinks",
|
|
1070
|
+
"PaginationLinksFirst",
|
|
1071
|
+
"PaginationLinksLast",
|
|
1072
|
+
"PaginationLinksNext",
|
|
1073
|
+
"PaginationLinksSelf",
|
|
1074
|
+
"PaginationMeta",
|
|
1075
|
+
"PaymentItem",
|
|
1076
|
+
"PaymentItemErrorDetail",
|
|
1077
|
+
"PaymentItemPaymentMethod",
|
|
1078
|
+
"PaymentItemPaymentOption",
|
|
1079
|
+
"PaymentItemStatus",
|
|
1080
|
+
"PaymentLinkAccountDetails",
|
|
1081
|
+
"PaymentLinkAddress",
|
|
1082
|
+
"PaymentLinkBankDetails",
|
|
1083
|
+
"PaymentLinkCartDetails",
|
|
1084
|
+
"PaymentLinkCartItem",
|
|
1085
|
+
"PaymentLinkCustomer",
|
|
1086
|
+
"PaymentLinkProductDetail",
|
|
1087
|
+
"PaymentLinkResponse",
|
|
1088
|
+
"PaymentLinkResponseAllowedPaymentMethodsItem",
|
|
1089
|
+
"PaymentLinkResponseStatus",
|
|
1090
|
+
"PaymentLinkSplitDetail",
|
|
1091
|
+
"PaymentLinkSplitDetailStatus",
|
|
1092
|
+
"PaymentLinkSplitInfo",
|
|
1093
|
+
"PaymentObject",
|
|
1094
|
+
"PaymentObjectAcquirerData",
|
|
1095
|
+
"PaymentObjectPaymentAmount",
|
|
1096
|
+
"PaymentObjectPaymentMethod",
|
|
1097
|
+
"PaymentObjectStatus",
|
|
1098
|
+
"PaymentRequestItem",
|
|
1099
|
+
"PaymentRequestItemDeviceInfo",
|
|
1100
|
+
"PaymentRequestItemDeviceInfoOperatingSystem",
|
|
1101
|
+
"PaymentRequestItemOfferData",
|
|
1102
|
+
"PaymentRequestItemOfferDataOfferDetails",
|
|
1103
|
+
"PaymentRequestItemOfferDataOfferDetailsTenure",
|
|
1104
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureAuthAmount",
|
|
1105
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureCartCouponDiscountAmount",
|
|
1106
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureConvenienceFeeBreakdown",
|
|
1107
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureConvenienceFeeBreakdownAdditionalFeeAmount",
|
|
1108
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureConvenienceFeeBreakdownApplicableFeeAmount",
|
|
1109
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureConvenienceFeeBreakdownFeeAmount",
|
|
1110
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureConvenienceFeeBreakdownFeeCalculatedOnAmount",
|
|
1111
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureConvenienceFeeBreakdownMaximumFeeAmount",
|
|
1112
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureConvenienceFeeBreakdownSubventedFeeAmount",
|
|
1113
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureConvenienceFeeBreakdownTaxAmount",
|
|
1114
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItem",
|
|
1115
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemAfterDownpaymentReducedProductAmount",
|
|
1116
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemCartCouponDiscountProductShare",
|
|
1117
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscount",
|
|
1118
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscountBreakup",
|
|
1119
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscountBreakupBrand",
|
|
1120
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscountBreakupBrandAmount",
|
|
1121
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscountBreakupDealer",
|
|
1122
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscountBreakupDealerAmount",
|
|
1123
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscountBreakupIssuer",
|
|
1124
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscountBreakupIssuerAmount",
|
|
1125
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscountBreakupMerchant",
|
|
1126
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscountBreakupMerchantAmount",
|
|
1127
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscountMaxAmount",
|
|
1128
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDiscountMinAmount",
|
|
1129
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemDownpaymentAmount",
|
|
1130
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemInterestAmount",
|
|
1131
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemProductAmount",
|
|
1132
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemProductCouponDiscountAmount",
|
|
1133
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemProductOfferParametersItem",
|
|
1134
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubvention",
|
|
1135
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionAmount",
|
|
1136
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionBreakup",
|
|
1137
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionBreakupBrand",
|
|
1138
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionBreakupBrandAmount",
|
|
1139
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionBreakupDealer",
|
|
1140
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionBreakupDealerAmount",
|
|
1141
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionBreakupIssuer",
|
|
1142
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionBreakupIssuerAmount",
|
|
1143
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionBreakupMerchant",
|
|
1144
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionBreakupMerchantAmount",
|
|
1145
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionMaxAmount",
|
|
1146
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDetailsItemSubventionMinAmount",
|
|
1147
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDownpaymentDetails",
|
|
1148
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureDownpaymentDetailsDownpaymentAmount",
|
|
1149
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureIntrestAmount",
|
|
1150
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureLoanAmount",
|
|
1151
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureMonthlyEmiAmount",
|
|
1152
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureNetPaymentAmount",
|
|
1153
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureProcessingFeeDetails",
|
|
1154
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureProcessingFeeDetailsAmount",
|
|
1155
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureSplitEmiAmount",
|
|
1156
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureTotalCouponDiscount",
|
|
1157
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureTotalDiscountAmount",
|
|
1158
|
+
"PaymentRequestItemOfferDataOfferDetailsTenureTotalEmiAmount",
|
|
1159
|
+
"PaymentRequestItemPaymentMethod",
|
|
1160
|
+
"PaymentRequestItemPaymentOption",
|
|
1161
|
+
"PaymentRequestItemPaymentOptionBnplDetails",
|
|
1162
|
+
"PaymentRequestItemPaymentOptionBnplDetailsBnplPayCode",
|
|
1163
|
+
"PaymentRequestItemPaymentOptionCardDetails",
|
|
1164
|
+
"PaymentRequestItemPaymentOptionCardTokenDetails",
|
|
1165
|
+
"PaymentRequestItemPaymentOptionCardlessDetails",
|
|
1166
|
+
"PaymentRequestItemPaymentOptionPointsCardDetails",
|
|
1167
|
+
"PayoutAmount",
|
|
1168
|
+
"PayoutDetail",
|
|
1169
|
+
"PayoutDetailMode",
|
|
1170
|
+
"PayoutDetailStatus",
|
|
1171
|
+
"PayoutLink",
|
|
1172
|
+
"PlanResponse",
|
|
1173
|
+
"PlanResponseFrequency",
|
|
1174
|
+
"PlanResponseStatus",
|
|
1175
|
+
"PresentationDetail",
|
|
1176
|
+
"PresentationDetailPdnStatus",
|
|
1177
|
+
"PresentationDetailStatus",
|
|
1178
|
+
"ProductDetail",
|
|
1179
|
+
"RefundResponse",
|
|
1180
|
+
"RefundResponseData",
|
|
1181
|
+
"RefundResponseDataIntegrationMode",
|
|
1182
|
+
"RefundResponseDataOrderAmount",
|
|
1183
|
+
"RefundResponseDataPurchaseDetails",
|
|
1184
|
+
"RefundResponseDataPurchaseDetailsCustomer",
|
|
1185
|
+
"RefundResponseDataPurchaseDetailsSplitInfo",
|
|
1186
|
+
"RefundResponseDataStatus",
|
|
1187
|
+
"RefundResponseDataType",
|
|
1188
|
+
"ResendOtpErrorResponse",
|
|
1189
|
+
"ServiceProviderTokenResponse",
|
|
1190
|
+
"ServiceProviderTokenResponsePaymentMethod",
|
|
1191
|
+
"ServiceProviderTokensListResponse",
|
|
1192
|
+
"SettlementByUtrResponse",
|
|
1193
|
+
"SettlementByUtrResponsePagination",
|
|
1194
|
+
"SettlementSummary",
|
|
1195
|
+
"SettlementTransaction",
|
|
1196
|
+
"SimpleAmount",
|
|
1197
|
+
"SplitDetail",
|
|
1198
|
+
"SplitDetailRefund",
|
|
1199
|
+
"SplitDetailRefundAmount",
|
|
1200
|
+
"SplitDetailRefundStatus",
|
|
1201
|
+
"SplitDetailStatus",
|
|
1202
|
+
"SplitInfo",
|
|
1203
|
+
"SplitPaymentObject",
|
|
1204
|
+
"SplitPaymentObjectAcquirerData",
|
|
1205
|
+
"SplitPaymentObjectAdditionalDetail",
|
|
1206
|
+
"SplitPaymentObjectCaptureDataItem",
|
|
1207
|
+
"SplitPaymentObjectCaptureDataItemCaptureAmount",
|
|
1208
|
+
"SplitPaymentObjectPaymentAmount",
|
|
1209
|
+
"SplitPaymentObjectPaymentMethod",
|
|
1210
|
+
"SplitPaymentObjectPaymentOption",
|
|
1211
|
+
"SplitPaymentObjectPaymentOptionCardData",
|
|
1212
|
+
"SplitPaymentObjectPaymentOptionCardDataCardType",
|
|
1213
|
+
"SplitPaymentObjectPaymentOptionCardDataTokenTxnType",
|
|
1214
|
+
"SplitPaymentObjectStatus",
|
|
1215
|
+
"SplitSettlementDetail",
|
|
1216
|
+
"SplitSettlementDetailAmount",
|
|
1217
|
+
"SplitSettlementDetailReleaseAmount",
|
|
1218
|
+
"SplitSettlementDetailStatus",
|
|
1219
|
+
"SplitSettlementResponse",
|
|
1220
|
+
"SplitSettlementResponseData",
|
|
1221
|
+
"SplitSettlementResponseDataAllowedPaymentMethodsItem",
|
|
1222
|
+
"SplitSettlementResponseDataIntegrationMode",
|
|
1223
|
+
"SplitSettlementResponseDataOrderAmount",
|
|
1224
|
+
"SplitSettlementResponseDataPurchaseDetails",
|
|
1225
|
+
"SplitSettlementResponseDataPurchaseDetailsCustomer",
|
|
1226
|
+
"SplitSettlementResponseDataPurchaseDetailsSplitInfo",
|
|
1227
|
+
"SplitSettlementResponseDataStatus",
|
|
1228
|
+
"SplitSettlementResponseDataType",
|
|
1229
|
+
"SubmitOtpErrorResponse",
|
|
1230
|
+
"SubmitOtpErrorResponseMetaData",
|
|
1231
|
+
"SubscriptionAmount",
|
|
1232
|
+
"SubscriptionDetail",
|
|
1233
|
+
"SubscriptionDetailAllowedPaymentMethodsItem",
|
|
1234
|
+
"SubscriptionDetailIntegrationMode",
|
|
1235
|
+
"SubscriptionDetailPaymentMode",
|
|
1236
|
+
"SubscriptionDetailStatus",
|
|
1237
|
+
"SubscriptionNotificationResponse",
|
|
1238
|
+
"SubscriptionNotificationResponsePdnStatus",
|
|
1239
|
+
"SubscriptionNotificationResponseStatus",
|
|
1240
|
+
"Tenure",
|
|
1241
|
+
"TenureAuthAmount",
|
|
1242
|
+
"TenureCartCouponDiscountAmount",
|
|
1243
|
+
"TenureConvenienceFeeBreakdown",
|
|
1244
|
+
"TenureConvenienceFeeBreakdownAdditionalFeeAmount",
|
|
1245
|
+
"TenureConvenienceFeeBreakdownApplicableFeeAmount",
|
|
1246
|
+
"TenureConvenienceFeeBreakdownFeeAmount",
|
|
1247
|
+
"TenureConvenienceFeeBreakdownFeeCalculatedOnAmount",
|
|
1248
|
+
"TenureConvenienceFeeBreakdownMaximumFeeAmount",
|
|
1249
|
+
"TenureConvenienceFeeBreakdownSubventedFeeAmount",
|
|
1250
|
+
"TenureConvenienceFeeBreakdownTaxAmount",
|
|
1251
|
+
"TenureDetailsItem",
|
|
1252
|
+
"TenureDetailsItemAfterDownpaymentReducedProductAmount",
|
|
1253
|
+
"TenureDetailsItemCartCouponDiscountProductShare",
|
|
1254
|
+
"TenureDetailsItemDiscount",
|
|
1255
|
+
"TenureDetailsItemDiscountAmount",
|
|
1256
|
+
"TenureDetailsItemDiscountBreakup",
|
|
1257
|
+
"TenureDetailsItemDiscountBreakupBrand",
|
|
1258
|
+
"TenureDetailsItemDiscountBreakupBrandAmount",
|
|
1259
|
+
"TenureDetailsItemDiscountBreakupMerchant",
|
|
1260
|
+
"TenureDetailsItemDiscountBreakupMerchantAmount",
|
|
1261
|
+
"TenureDetailsItemDiscountDiscountDeferredDurationType",
|
|
1262
|
+
"TenureDetailsItemDiscountDiscountType",
|
|
1263
|
+
"TenureDetailsItemDiscountMaxAmount",
|
|
1264
|
+
"TenureDetailsItemDownpaymentAmount",
|
|
1265
|
+
"TenureDetailsItemInterestAmount",
|
|
1266
|
+
"TenureDetailsItemProductAmount",
|
|
1267
|
+
"TenureDetailsItemProductCouponDiscountAmount",
|
|
1268
|
+
"TenureDetailsItemProductOfferParametersItem",
|
|
1269
|
+
"TenureDetailsItemSubvention",
|
|
1270
|
+
"TenureDetailsItemSubventionAmount",
|
|
1271
|
+
"TenureDetailsItemSubventionBreakup",
|
|
1272
|
+
"TenureDetailsItemSubventionBreakupBrand",
|
|
1273
|
+
"TenureDetailsItemSubventionBreakupBrandAmount",
|
|
1274
|
+
"TenureDetailsItemSubventionMaxAmount",
|
|
1275
|
+
"TenureDetailsItemSubventionMinAmount",
|
|
1276
|
+
"TenureDetailsItemSubventionOfferType",
|
|
1277
|
+
"TenureDetailsItemSubventionSubventionType",
|
|
1278
|
+
"TenureDiscount",
|
|
1279
|
+
"TenureDiscountAmount",
|
|
1280
|
+
"TenureDiscountBreakup",
|
|
1281
|
+
"TenureDiscountBreakupBrand",
|
|
1282
|
+
"TenureDiscountBreakupBrandAmount",
|
|
1283
|
+
"TenureDiscountBreakupDealer",
|
|
1284
|
+
"TenureDiscountBreakupDealerAmount",
|
|
1285
|
+
"TenureDiscountBreakupIssuer",
|
|
1286
|
+
"TenureDiscountBreakupIssuerAmount",
|
|
1287
|
+
"TenureDiscountBreakupMerchant",
|
|
1288
|
+
"TenureDiscountBreakupMerchantAmount",
|
|
1289
|
+
"TenureDiscountDiscountDeferredDurationType",
|
|
1290
|
+
"TenureDiscountDiscountType",
|
|
1291
|
+
"TenureDiscountMaxAmount",
|
|
1292
|
+
"TenureDownpaymentDetails",
|
|
1293
|
+
"TenureDownpaymentDetailsDownpaymentAmount",
|
|
1294
|
+
"TenureEmiType",
|
|
1295
|
+
"TenureInterestAmount",
|
|
1296
|
+
"TenureIssuerOfferParametersItem",
|
|
1297
|
+
"TenureLoanAmount",
|
|
1298
|
+
"TenureMonthlyEmiAmount",
|
|
1299
|
+
"TenureNetPaymentAmount",
|
|
1300
|
+
"TenureProcessingFeeAmount",
|
|
1301
|
+
"TenureProcessingFeeDetails",
|
|
1302
|
+
"TenureProcessingFeeDetailsAmount",
|
|
1303
|
+
"TenureSplitEmiAmount",
|
|
1304
|
+
"TenureTenureType",
|
|
1305
|
+
"TenureTotalCouponDiscount",
|
|
1306
|
+
"TenureTotalDiscountAmount",
|
|
1307
|
+
"TenureTotalDownPaymentAmount",
|
|
1308
|
+
"TenureTotalEmiAmount",
|
|
1309
|
+
"TenureTotalSubventionAmount",
|
|
1310
|
+
"TokenCardData",
|
|
1311
|
+
"TokenCardDataCardType",
|
|
1312
|
+
"TokenPayment",
|
|
1313
|
+
"TokenPaymentAcquirerData",
|
|
1314
|
+
"TokenPaymentOption",
|
|
1315
|
+
"TokenStatus",
|
|
1316
|
+
"TokenTransactionalData",
|
|
1317
|
+
"UpiDetailsResponse",
|
|
1318
|
+
"UpiDetailsResponsePayer",
|
|
1319
|
+
"UpiDetailsResponseTxnMode",
|
|
1320
|
+
]
|