├── .editorconfig ├── .flake8 ├── .git-blame-ignore-revs ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── pull_request_template.md └── workflows │ ├── ci.yml │ └── rules.yml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── API_VERSION ├── CHANGELOG ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── OPENAPI_VERSION ├── README.md ├── VERSION ├── deps ├── build-requirements.txt ├── dev-requirements.txt └── test-requirements.txt ├── examples ├── README.md ├── event_notification_webhook_handler.py ├── example_template.py ├── meter_event_stream.py ├── oauth.py ├── proxy.py ├── raw_request.py └── webhooks.py ├── flake8_stripe └── flake8_stripe.py ├── justfile ├── pyproject.toml ├── stripe ├── __init__.py ├── _account.py ├── _account_capability_service.py ├── _account_external_account_service.py ├── _account_link.py ├── _account_link_service.py ├── _account_login_link_service.py ├── _account_person_service.py ├── _account_service.py ├── _account_session.py ├── _account_session_service.py ├── _any_iterator.py ├── _api_mode.py ├── _api_requestor.py ├── _api_resource.py ├── _api_version.py ├── _app_info.py ├── _apple_pay_domain.py ├── _apple_pay_domain_service.py ├── _application.py ├── _application_fee.py ├── _application_fee_refund.py ├── _application_fee_refund_service.py ├── _application_fee_service.py ├── _apps_service.py ├── _balance.py ├── _balance_service.py ├── _balance_settings.py ├── _balance_settings_service.py ├── _balance_transaction.py ├── _balance_transaction_service.py ├── _bank_account.py ├── _base_address.py ├── _billing_portal_service.py ├── _billing_service.py ├── _capability.py ├── _card.py ├── _cash_balance.py ├── _charge.py ├── _charge_service.py ├── _checkout_service.py ├── _client_options.py ├── _climate_service.py ├── _confirmation_token.py ├── _confirmation_token_service.py ├── _connect_collection_transfer.py ├── _country_spec.py ├── _country_spec_service.py ├── _coupon.py ├── _coupon_service.py ├── _createable_api_resource.py ├── _credit_note.py ├── _credit_note_line_item.py ├── _credit_note_line_item_service.py ├── _credit_note_preview_lines_service.py ├── _credit_note_service.py ├── _custom_method.py ├── _customer.py ├── _customer_balance_transaction.py ├── _customer_balance_transaction_service.py ├── _customer_cash_balance_service.py ├── _customer_cash_balance_transaction.py ├── _customer_cash_balance_transaction_service.py ├── _customer_funding_instructions_service.py ├── _customer_payment_method_service.py ├── _customer_payment_source_service.py ├── _customer_service.py ├── _customer_session.py ├── _customer_session_service.py ├── _customer_tax_id_service.py ├── _deletable_api_resource.py ├── _discount.py ├── _dispute.py ├── _dispute_service.py ├── _encode.py ├── _entitlements_service.py ├── _ephemeral_key.py ├── _ephemeral_key_service.py ├── _error.py ├── _error_object.py ├── _event.py ├── _event_service.py ├── _exchange_rate.py ├── _exchange_rate_service.py ├── _expandable_field.py ├── _file.py ├── _file_link.py ├── _file_link_service.py ├── _file_service.py ├── _financial_connections_service.py ├── _forwarding_service.py ├── _funding_instructions.py ├── _http_client.py ├── _identity_service.py ├── _invoice.py ├── _invoice_item.py ├── _invoice_item_service.py ├── _invoice_line_item.py ├── _invoice_line_item_service.py ├── _invoice_payment.py ├── _invoice_payment_service.py ├── _invoice_rendering_template.py ├── _invoice_rendering_template_service.py ├── _invoice_service.py ├── _issuing_service.py ├── _line_item.py ├── _list_object.py ├── _listable_api_resource.py ├── _login_link.py ├── _mandate.py ├── _mandate_service.py ├── _multipart_data_generator.py ├── _nested_resource_class_methods.py ├── _oauth.py ├── _oauth_service.py ├── _object_classes.py ├── _payment_attempt_record.py ├── _payment_attempt_record_service.py ├── _payment_intent.py ├── _payment_intent_amount_details_line_item.py ├── _payment_intent_amount_details_line_item_service.py ├── _payment_intent_service.py ├── _payment_link.py ├── _payment_link_line_item_service.py ├── _payment_link_service.py ├── _payment_method.py ├── _payment_method_configuration.py ├── _payment_method_configuration_service.py ├── _payment_method_domain.py ├── _payment_method_domain_service.py ├── _payment_method_service.py ├── _payment_record.py ├── _payment_record_service.py ├── _payout.py ├── _payout_service.py ├── _person.py ├── _plan.py ├── _plan_service.py ├── _price.py ├── _price_service.py ├── _product.py ├── _product_feature.py ├── _product_feature_service.py ├── _product_service.py ├── _promotion_code.py ├── _promotion_code_service.py ├── _quote.py ├── _quote_computed_upfront_line_items_service.py ├── _quote_line_item_service.py ├── _quote_service.py ├── _radar_service.py ├── _refund.py ├── _refund_service.py ├── _reporting_service.py ├── _request_metrics.py ├── _request_options.py ├── _requestor_options.py ├── _reserve_transaction.py ├── _reversal.py ├── _review.py ├── _review_service.py ├── _search_result_object.py ├── _searchable_api_resource.py ├── _setup_attempt.py ├── _setup_attempt_service.py ├── _setup_intent.py ├── _setup_intent_service.py ├── _shipping_rate.py ├── _shipping_rate_service.py ├── _sigma_service.py ├── _singleton_api_resource.py ├── _source.py ├── _source_mandate_notification.py ├── _source_service.py ├── _source_transaction.py ├── _source_transaction_service.py ├── _stripe_client.py ├── _stripe_context.py ├── _stripe_object.py ├── _stripe_response.py ├── _stripe_service.py ├── _subscription.py ├── _subscription_item.py ├── _subscription_item_service.py ├── _subscription_schedule.py ├── _subscription_schedule_service.py ├── _subscription_service.py ├── _tax_code.py ├── _tax_code_service.py ├── _tax_deducted_at_source.py ├── _tax_id.py ├── _tax_id_service.py ├── _tax_rate.py ├── _tax_rate_service.py ├── _tax_service.py ├── _terminal_service.py ├── _test_helpers.py ├── _test_helpers_service.py ├── _token.py ├── _token_service.py ├── _topup.py ├── _topup_service.py ├── _transfer.py ├── _transfer_reversal_service.py ├── _transfer_service.py ├── _treasury_service.py ├── _updateable_api_resource.py ├── _util.py ├── _v1_services.py ├── _v2_services.py ├── _verify_mixin.py ├── _version.py ├── _webhook.py ├── _webhook_endpoint.py ├── _webhook_endpoint_service.py ├── apps │ ├── __init__.py │ ├── _secret.py │ └── _secret_service.py ├── billing │ ├── __init__.py │ ├── _alert.py │ ├── _alert_service.py │ ├── _alert_triggered.py │ ├── _credit_balance_summary.py │ ├── _credit_balance_summary_service.py │ ├── _credit_balance_transaction.py │ ├── _credit_balance_transaction_service.py │ ├── _credit_grant.py │ ├── _credit_grant_service.py │ ├── _meter.py │ ├── _meter_event.py │ ├── _meter_event_adjustment.py │ ├── _meter_event_adjustment_service.py │ ├── _meter_event_service.py │ ├── _meter_event_summary.py │ ├── _meter_event_summary_service.py │ └── _meter_service.py ├── billing_portal │ ├── __init__.py │ ├── _configuration.py │ ├── _configuration_service.py │ ├── _session.py │ └── _session_service.py ├── checkout │ ├── __init__.py │ ├── _session.py │ ├── _session_line_item_service.py │ └── _session_service.py ├── climate │ ├── __init__.py │ ├── _order.py │ ├── _order_service.py │ ├── _product.py │ ├── _product_service.py │ ├── _supplier.py │ └── _supplier_service.py ├── data │ └── ca-certificates.crt ├── entitlements │ ├── __init__.py │ ├── _active_entitlement.py │ ├── _active_entitlement_service.py │ ├── _active_entitlement_summary.py │ ├── _feature.py │ └── _feature_service.py ├── events │ ├── __init__.py │ ├── _event_classes.py │ ├── _v1_billing_meter_error_report_triggered_event.py │ ├── _v1_billing_meter_no_meter_found_event.py │ └── _v2_core_event_destination_ping_event.py ├── financial_connections │ ├── __init__.py │ ├── _account.py │ ├── _account_owner.py │ ├── _account_owner_service.py │ ├── _account_ownership.py │ ├── _account_service.py │ ├── _session.py │ ├── _session_service.py │ ├── _transaction.py │ └── _transaction_service.py ├── forwarding │ ├── __init__.py │ ├── _request.py │ └── _request_service.py ├── identity │ ├── __init__.py │ ├── _verification_report.py │ ├── _verification_report_service.py │ ├── _verification_session.py │ └── _verification_session_service.py ├── issuing │ ├── __init__.py │ ├── _authorization.py │ ├── _authorization_service.py │ ├── _card.py │ ├── _card_service.py │ ├── _cardholder.py │ ├── _cardholder_service.py │ ├── _dispute.py │ ├── _dispute_service.py │ ├── _personalization_design.py │ ├── _personalization_design_service.py │ ├── _physical_bundle.py │ ├── _physical_bundle_service.py │ ├── _token.py │ ├── _token_service.py │ ├── _transaction.py │ └── _transaction_service.py ├── oauth_error.py ├── params │ ├── __init__.py │ ├── _account_capability_list_params.py │ ├── _account_capability_retrieve_params.py │ ├── _account_capability_update_params.py │ ├── _account_create_external_account_params.py │ ├── _account_create_login_link_params.py │ ├── _account_create_params.py │ ├── _account_create_person_params.py │ ├── _account_delete_external_account_params.py │ ├── _account_delete_params.py │ ├── _account_delete_person_params.py │ ├── _account_external_account_create_params.py │ ├── _account_external_account_delete_params.py │ ├── _account_external_account_list_params.py │ ├── _account_external_account_retrieve_params.py │ ├── _account_external_account_update_params.py │ ├── _account_link_create_params.py │ ├── _account_list_capabilities_params.py │ ├── _account_list_external_accounts_params.py │ ├── _account_list_params.py │ ├── _account_list_persons_params.py │ ├── _account_login_link_create_params.py │ ├── _account_modify_capability_params.py │ ├── _account_modify_external_account_params.py │ ├── _account_modify_person_params.py │ ├── _account_person_create_params.py │ ├── _account_person_delete_params.py │ ├── _account_person_list_params.py │ ├── _account_person_retrieve_params.py │ ├── _account_person_update_params.py │ ├── _account_persons_params.py │ ├── _account_reject_params.py │ ├── _account_retrieve_capability_params.py │ ├── _account_retrieve_current_params.py │ ├── _account_retrieve_external_account_params.py │ ├── _account_retrieve_params.py │ ├── _account_retrieve_person_params.py │ ├── _account_session_create_params.py │ ├── _account_update_params.py │ ├── _apple_pay_domain_create_params.py │ ├── _apple_pay_domain_delete_params.py │ ├── _apple_pay_domain_list_params.py │ ├── _apple_pay_domain_retrieve_params.py │ ├── _application_fee_create_refund_params.py │ ├── _application_fee_list_params.py │ ├── _application_fee_list_refunds_params.py │ ├── _application_fee_modify_refund_params.py │ ├── _application_fee_refund_create_params.py │ ├── _application_fee_refund_list_params.py │ ├── _application_fee_refund_params.py │ ├── _application_fee_refund_retrieve_params.py │ ├── _application_fee_refund_update_params.py │ ├── _application_fee_retrieve_params.py │ ├── _application_fee_retrieve_refund_params.py │ ├── _balance_retrieve_params.py │ ├── _balance_settings_modify_params.py │ ├── _balance_settings_retrieve_params.py │ ├── _balance_settings_update_params.py │ ├── _balance_transaction_list_params.py │ ├── _balance_transaction_retrieve_params.py │ ├── _bank_account_delete_params.py │ ├── _card_delete_params.py │ ├── _charge_capture_params.py │ ├── _charge_create_params.py │ ├── _charge_list_params.py │ ├── _charge_list_refunds_params.py │ ├── _charge_modify_params.py │ ├── _charge_retrieve_params.py │ ├── _charge_retrieve_refund_params.py │ ├── _charge_search_params.py │ ├── _charge_update_params.py │ ├── _confirmation_token_create_params.py │ ├── _confirmation_token_retrieve_params.py │ ├── _country_spec_list_params.py │ ├── _country_spec_retrieve_params.py │ ├── _coupon_create_params.py │ ├── _coupon_delete_params.py │ ├── _coupon_list_params.py │ ├── _coupon_modify_params.py │ ├── _coupon_retrieve_params.py │ ├── _coupon_update_params.py │ ├── _credit_note_create_params.py │ ├── _credit_note_line_item_list_params.py │ ├── _credit_note_list_lines_params.py │ ├── _credit_note_list_params.py │ ├── _credit_note_modify_params.py │ ├── _credit_note_preview_lines_list_params.py │ ├── _credit_note_preview_lines_params.py │ ├── _credit_note_preview_params.py │ ├── _credit_note_retrieve_params.py │ ├── _credit_note_update_params.py │ ├── _credit_note_void_credit_note_params.py │ ├── _customer_balance_transaction_create_params.py │ ├── _customer_balance_transaction_list_params.py │ ├── _customer_balance_transaction_retrieve_params.py │ ├── _customer_balance_transaction_update_params.py │ ├── _customer_cash_balance_retrieve_params.py │ ├── _customer_cash_balance_transaction_list_params.py │ ├── _customer_cash_balance_transaction_retrieve_params.py │ ├── _customer_cash_balance_update_params.py │ ├── _customer_create_balance_transaction_params.py │ ├── _customer_create_funding_instructions_params.py │ ├── _customer_create_params.py │ ├── _customer_create_source_params.py │ ├── _customer_create_tax_id_params.py │ ├── _customer_delete_discount_params.py │ ├── _customer_delete_params.py │ ├── _customer_delete_source_params.py │ ├── _customer_delete_tax_id_params.py │ ├── _customer_fund_cash_balance_params.py │ ├── _customer_funding_instructions_create_params.py │ ├── _customer_list_balance_transactions_params.py │ ├── _customer_list_cash_balance_transactions_params.py │ ├── _customer_list_params.py │ ├── _customer_list_payment_methods_params.py │ ├── _customer_list_sources_params.py │ ├── _customer_list_tax_ids_params.py │ ├── _customer_modify_balance_transaction_params.py │ ├── _customer_modify_cash_balance_params.py │ ├── _customer_modify_params.py │ ├── _customer_modify_source_params.py │ ├── _customer_payment_method_list_params.py │ ├── _customer_payment_method_retrieve_params.py │ ├── _customer_payment_source_create_params.py │ ├── _customer_payment_source_delete_params.py │ ├── _customer_payment_source_list_params.py │ ├── _customer_payment_source_retrieve_params.py │ ├── _customer_payment_source_update_params.py │ ├── _customer_payment_source_verify_params.py │ ├── _customer_retrieve_balance_transaction_params.py │ ├── _customer_retrieve_cash_balance_params.py │ ├── _customer_retrieve_cash_balance_transaction_params.py │ ├── _customer_retrieve_params.py │ ├── _customer_retrieve_payment_method_params.py │ ├── _customer_retrieve_source_params.py │ ├── _customer_retrieve_tax_id_params.py │ ├── _customer_search_params.py │ ├── _customer_session_create_params.py │ ├── _customer_tax_id_create_params.py │ ├── _customer_tax_id_delete_params.py │ ├── _customer_tax_id_list_params.py │ ├── _customer_tax_id_retrieve_params.py │ ├── _customer_update_params.py │ ├── _dispute_close_params.py │ ├── _dispute_list_params.py │ ├── _dispute_modify_params.py │ ├── _dispute_retrieve_params.py │ ├── _dispute_update_params.py │ ├── _ephemeral_key_create_params.py │ ├── _ephemeral_key_delete_params.py │ ├── _event_list_params.py │ ├── _event_retrieve_params.py │ ├── _exchange_rate_list_params.py │ ├── _exchange_rate_retrieve_params.py │ ├── _file_create_params.py │ ├── _file_link_create_params.py │ ├── _file_link_list_params.py │ ├── _file_link_modify_params.py │ ├── _file_link_retrieve_params.py │ ├── _file_link_update_params.py │ ├── _file_list_params.py │ ├── _file_retrieve_params.py │ ├── _invoice_add_lines_params.py │ ├── _invoice_attach_payment_params.py │ ├── _invoice_create_params.py │ ├── _invoice_create_preview_params.py │ ├── _invoice_delete_params.py │ ├── _invoice_finalize_invoice_params.py │ ├── _invoice_item_create_params.py │ ├── _invoice_item_delete_params.py │ ├── _invoice_item_list_params.py │ ├── _invoice_item_modify_params.py │ ├── _invoice_item_retrieve_params.py │ ├── _invoice_item_update_params.py │ ├── _invoice_line_item_list_params.py │ ├── _invoice_line_item_update_params.py │ ├── _invoice_list_lines_params.py │ ├── _invoice_list_params.py │ ├── _invoice_mark_uncollectible_params.py │ ├── _invoice_modify_params.py │ ├── _invoice_pay_params.py │ ├── _invoice_payment_list_params.py │ ├── _invoice_payment_retrieve_params.py │ ├── _invoice_remove_lines_params.py │ ├── _invoice_rendering_template_archive_params.py │ ├── _invoice_rendering_template_list_params.py │ ├── _invoice_rendering_template_retrieve_params.py │ ├── _invoice_rendering_template_unarchive_params.py │ ├── _invoice_retrieve_params.py │ ├── _invoice_search_params.py │ ├── _invoice_send_invoice_params.py │ ├── _invoice_update_lines_params.py │ ├── _invoice_update_params.py │ ├── _invoice_void_invoice_params.py │ ├── _mandate_retrieve_params.py │ ├── _payment_attempt_record_list_params.py │ ├── _payment_attempt_record_retrieve_params.py │ ├── _payment_intent_amount_details_line_item_list_params.py │ ├── _payment_intent_apply_customer_balance_params.py │ ├── _payment_intent_cancel_params.py │ ├── _payment_intent_capture_params.py │ ├── _payment_intent_confirm_params.py │ ├── _payment_intent_create_params.py │ ├── _payment_intent_increment_authorization_params.py │ ├── _payment_intent_list_amount_details_line_items_params.py │ ├── _payment_intent_list_params.py │ ├── _payment_intent_modify_params.py │ ├── _payment_intent_retrieve_params.py │ ├── _payment_intent_search_params.py │ ├── _payment_intent_update_params.py │ ├── _payment_intent_verify_microdeposits_params.py │ ├── _payment_link_create_params.py │ ├── _payment_link_line_item_list_params.py │ ├── _payment_link_list_line_items_params.py │ ├── _payment_link_list_params.py │ ├── _payment_link_modify_params.py │ ├── _payment_link_retrieve_params.py │ ├── _payment_link_update_params.py │ ├── _payment_method_attach_params.py │ ├── _payment_method_configuration_create_params.py │ ├── _payment_method_configuration_list_params.py │ ├── _payment_method_configuration_modify_params.py │ ├── _payment_method_configuration_retrieve_params.py │ ├── _payment_method_configuration_update_params.py │ ├── _payment_method_create_params.py │ ├── _payment_method_detach_params.py │ ├── _payment_method_domain_create_params.py │ ├── _payment_method_domain_list_params.py │ ├── _payment_method_domain_modify_params.py │ ├── _payment_method_domain_retrieve_params.py │ ├── _payment_method_domain_update_params.py │ ├── _payment_method_domain_validate_params.py │ ├── _payment_method_list_params.py │ ├── _payment_method_modify_params.py │ ├── _payment_method_retrieve_params.py │ ├── _payment_method_update_params.py │ ├── _payment_record_report_payment_attempt_canceled_params.py │ ├── _payment_record_report_payment_attempt_failed_params.py │ ├── _payment_record_report_payment_attempt_guaranteed_params.py │ ├── _payment_record_report_payment_attempt_informational_params.py │ ├── _payment_record_report_payment_attempt_params.py │ ├── _payment_record_report_payment_params.py │ ├── _payment_record_report_refund_params.py │ ├── _payment_record_retrieve_params.py │ ├── _payout_cancel_params.py │ ├── _payout_create_params.py │ ├── _payout_list_params.py │ ├── _payout_modify_params.py │ ├── _payout_retrieve_params.py │ ├── _payout_reverse_params.py │ ├── _payout_update_params.py │ ├── _plan_create_params.py │ ├── _plan_delete_params.py │ ├── _plan_list_params.py │ ├── _plan_modify_params.py │ ├── _plan_retrieve_params.py │ ├── _plan_update_params.py │ ├── _price_create_params.py │ ├── _price_list_params.py │ ├── _price_modify_params.py │ ├── _price_retrieve_params.py │ ├── _price_search_params.py │ ├── _price_update_params.py │ ├── _product_create_feature_params.py │ ├── _product_create_params.py │ ├── _product_delete_feature_params.py │ ├── _product_delete_params.py │ ├── _product_feature_create_params.py │ ├── _product_feature_delete_params.py │ ├── _product_feature_list_params.py │ ├── _product_feature_retrieve_params.py │ ├── _product_list_features_params.py │ ├── _product_list_params.py │ ├── _product_modify_params.py │ ├── _product_retrieve_feature_params.py │ ├── _product_retrieve_params.py │ ├── _product_search_params.py │ ├── _product_update_params.py │ ├── _promotion_code_create_params.py │ ├── _promotion_code_list_params.py │ ├── _promotion_code_modify_params.py │ ├── _promotion_code_retrieve_params.py │ ├── _promotion_code_update_params.py │ ├── _quote_accept_params.py │ ├── _quote_cancel_params.py │ ├── _quote_computed_upfront_line_items_list_params.py │ ├── _quote_create_params.py │ ├── _quote_finalize_quote_params.py │ ├── _quote_line_item_list_params.py │ ├── _quote_list_computed_upfront_line_items_params.py │ ├── _quote_list_line_items_params.py │ ├── _quote_list_params.py │ ├── _quote_modify_params.py │ ├── _quote_pdf_params.py │ ├── _quote_retrieve_params.py │ ├── _quote_update_params.py │ ├── _refund_cancel_params.py │ ├── _refund_create_params.py │ ├── _refund_expire_params.py │ ├── _refund_list_params.py │ ├── _refund_modify_params.py │ ├── _refund_retrieve_params.py │ ├── _refund_update_params.py │ ├── _review_approve_params.py │ ├── _review_list_params.py │ ├── _review_retrieve_params.py │ ├── _setup_attempt_list_params.py │ ├── _setup_intent_cancel_params.py │ ├── _setup_intent_confirm_params.py │ ├── _setup_intent_create_params.py │ ├── _setup_intent_list_params.py │ ├── _setup_intent_modify_params.py │ ├── _setup_intent_retrieve_params.py │ ├── _setup_intent_update_params.py │ ├── _setup_intent_verify_microdeposits_params.py │ ├── _shipping_rate_create_params.py │ ├── _shipping_rate_list_params.py │ ├── _shipping_rate_modify_params.py │ ├── _shipping_rate_retrieve_params.py │ ├── _shipping_rate_update_params.py │ ├── _source_create_params.py │ ├── _source_detach_params.py │ ├── _source_list_source_transactions_params.py │ ├── _source_modify_params.py │ ├── _source_retrieve_params.py │ ├── _source_transaction_list_params.py │ ├── _source_update_params.py │ ├── _source_verify_params.py │ ├── _subscription_cancel_params.py │ ├── _subscription_create_params.py │ ├── _subscription_delete_discount_params.py │ ├── _subscription_item_create_params.py │ ├── _subscription_item_delete_params.py │ ├── _subscription_item_list_params.py │ ├── _subscription_item_modify_params.py │ ├── _subscription_item_retrieve_params.py │ ├── _subscription_item_update_params.py │ ├── _subscription_list_params.py │ ├── _subscription_migrate_params.py │ ├── _subscription_modify_params.py │ ├── _subscription_resume_params.py │ ├── _subscription_retrieve_params.py │ ├── _subscription_schedule_cancel_params.py │ ├── _subscription_schedule_create_params.py │ ├── _subscription_schedule_list_params.py │ ├── _subscription_schedule_modify_params.py │ ├── _subscription_schedule_release_params.py │ ├── _subscription_schedule_retrieve_params.py │ ├── _subscription_schedule_update_params.py │ ├── _subscription_search_params.py │ ├── _subscription_update_params.py │ ├── _tax_code_list_params.py │ ├── _tax_code_retrieve_params.py │ ├── _tax_id_create_params.py │ ├── _tax_id_delete_params.py │ ├── _tax_id_list_params.py │ ├── _tax_id_retrieve_params.py │ ├── _tax_rate_create_params.py │ ├── _tax_rate_list_params.py │ ├── _tax_rate_modify_params.py │ ├── _tax_rate_retrieve_params.py │ ├── _tax_rate_update_params.py │ ├── _token_create_params.py │ ├── _token_retrieve_params.py │ ├── _topup_cancel_params.py │ ├── _topup_create_params.py │ ├── _topup_list_params.py │ ├── _topup_modify_params.py │ ├── _topup_retrieve_params.py │ ├── _topup_update_params.py │ ├── _transfer_create_params.py │ ├── _transfer_create_reversal_params.py │ ├── _transfer_list_params.py │ ├── _transfer_list_reversals_params.py │ ├── _transfer_modify_params.py │ ├── _transfer_modify_reversal_params.py │ ├── _transfer_retrieve_params.py │ ├── _transfer_retrieve_reversal_params.py │ ├── _transfer_reversal_create_params.py │ ├── _transfer_reversal_list_params.py │ ├── _transfer_reversal_retrieve_params.py │ ├── _transfer_reversal_update_params.py │ ├── _transfer_update_params.py │ ├── _webhook_endpoint_create_params.py │ ├── _webhook_endpoint_delete_params.py │ ├── _webhook_endpoint_list_params.py │ ├── _webhook_endpoint_modify_params.py │ ├── _webhook_endpoint_retrieve_params.py │ ├── _webhook_endpoint_update_params.py │ ├── apps │ │ ├── __init__.py │ │ ├── _secret_create_params.py │ │ ├── _secret_delete_where_params.py │ │ ├── _secret_find_params.py │ │ └── _secret_list_params.py │ ├── billing │ │ ├── __init__.py │ │ ├── _alert_activate_params.py │ │ ├── _alert_archive_params.py │ │ ├── _alert_create_params.py │ │ ├── _alert_deactivate_params.py │ │ ├── _alert_list_params.py │ │ ├── _alert_retrieve_params.py │ │ ├── _credit_balance_summary_retrieve_params.py │ │ ├── _credit_balance_transaction_list_params.py │ │ ├── _credit_balance_transaction_retrieve_params.py │ │ ├── _credit_grant_create_params.py │ │ ├── _credit_grant_expire_params.py │ │ ├── _credit_grant_list_params.py │ │ ├── _credit_grant_modify_params.py │ │ ├── _credit_grant_retrieve_params.py │ │ ├── _credit_grant_update_params.py │ │ ├── _credit_grant_void_grant_params.py │ │ ├── _meter_create_params.py │ │ ├── _meter_deactivate_params.py │ │ ├── _meter_event_adjustment_create_params.py │ │ ├── _meter_event_create_params.py │ │ ├── _meter_event_summary_list_params.py │ │ ├── _meter_list_event_summaries_params.py │ │ ├── _meter_list_params.py │ │ ├── _meter_modify_params.py │ │ ├── _meter_reactivate_params.py │ │ ├── _meter_retrieve_params.py │ │ └── _meter_update_params.py │ ├── billing_portal │ │ ├── __init__.py │ │ ├── _configuration_create_params.py │ │ ├── _configuration_list_params.py │ │ ├── _configuration_modify_params.py │ │ ├── _configuration_retrieve_params.py │ │ ├── _configuration_update_params.py │ │ └── _session_create_params.py │ ├── checkout │ │ ├── __init__.py │ │ ├── _session_create_params.py │ │ ├── _session_expire_params.py │ │ ├── _session_line_item_list_params.py │ │ ├── _session_list_line_items_params.py │ │ ├── _session_list_params.py │ │ ├── _session_modify_params.py │ │ ├── _session_retrieve_params.py │ │ └── _session_update_params.py │ ├── climate │ │ ├── __init__.py │ │ ├── _order_cancel_params.py │ │ ├── _order_create_params.py │ │ ├── _order_list_params.py │ │ ├── _order_modify_params.py │ │ ├── _order_retrieve_params.py │ │ ├── _order_update_params.py │ │ ├── _product_list_params.py │ │ ├── _product_retrieve_params.py │ │ ├── _supplier_list_params.py │ │ └── _supplier_retrieve_params.py │ ├── entitlements │ │ ├── __init__.py │ │ ├── _active_entitlement_list_params.py │ │ ├── _active_entitlement_retrieve_params.py │ │ ├── _feature_create_params.py │ │ ├── _feature_list_params.py │ │ ├── _feature_modify_params.py │ │ ├── _feature_retrieve_params.py │ │ └── _feature_update_params.py │ ├── financial_connections │ │ ├── __init__.py │ │ ├── _account_disconnect_params.py │ │ ├── _account_list_owners_params.py │ │ ├── _account_list_params.py │ │ ├── _account_owner_list_params.py │ │ ├── _account_refresh_account_params.py │ │ ├── _account_refresh_params.py │ │ ├── _account_retrieve_params.py │ │ ├── _account_subscribe_params.py │ │ ├── _account_unsubscribe_params.py │ │ ├── _session_create_params.py │ │ ├── _session_retrieve_params.py │ │ ├── _transaction_list_params.py │ │ └── _transaction_retrieve_params.py │ ├── forwarding │ │ ├── __init__.py │ │ ├── _request_create_params.py │ │ ├── _request_list_params.py │ │ └── _request_retrieve_params.py │ ├── identity │ │ ├── __init__.py │ │ ├── _verification_report_list_params.py │ │ ├── _verification_report_retrieve_params.py │ │ ├── _verification_session_cancel_params.py │ │ ├── _verification_session_create_params.py │ │ ├── _verification_session_list_params.py │ │ ├── _verification_session_modify_params.py │ │ ├── _verification_session_redact_params.py │ │ ├── _verification_session_retrieve_params.py │ │ └── _verification_session_update_params.py │ ├── issuing │ │ ├── __init__.py │ │ ├── _authorization_approve_params.py │ │ ├── _authorization_capture_params.py │ │ ├── _authorization_create_params.py │ │ ├── _authorization_decline_params.py │ │ ├── _authorization_expire_params.py │ │ ├── _authorization_finalize_amount_params.py │ │ ├── _authorization_increment_params.py │ │ ├── _authorization_list_params.py │ │ ├── _authorization_modify_params.py │ │ ├── _authorization_respond_params.py │ │ ├── _authorization_retrieve_params.py │ │ ├── _authorization_reverse_params.py │ │ ├── _authorization_update_params.py │ │ ├── _card_create_params.py │ │ ├── _card_deliver_card_params.py │ │ ├── _card_fail_card_params.py │ │ ├── _card_list_params.py │ │ ├── _card_modify_params.py │ │ ├── _card_retrieve_params.py │ │ ├── _card_return_card_params.py │ │ ├── _card_ship_card_params.py │ │ ├── _card_submit_card_params.py │ │ ├── _card_update_params.py │ │ ├── _cardholder_create_params.py │ │ ├── _cardholder_list_params.py │ │ ├── _cardholder_modify_params.py │ │ ├── _cardholder_retrieve_params.py │ │ ├── _cardholder_update_params.py │ │ ├── _dispute_create_params.py │ │ ├── _dispute_list_params.py │ │ ├── _dispute_modify_params.py │ │ ├── _dispute_retrieve_params.py │ │ ├── _dispute_submit_params.py │ │ ├── _dispute_update_params.py │ │ ├── _personalization_design_activate_params.py │ │ ├── _personalization_design_create_params.py │ │ ├── _personalization_design_deactivate_params.py │ │ ├── _personalization_design_list_params.py │ │ ├── _personalization_design_modify_params.py │ │ ├── _personalization_design_reject_params.py │ │ ├── _personalization_design_retrieve_params.py │ │ ├── _personalization_design_update_params.py │ │ ├── _physical_bundle_list_params.py │ │ ├── _physical_bundle_retrieve_params.py │ │ ├── _token_list_params.py │ │ ├── _token_modify_params.py │ │ ├── _token_retrieve_params.py │ │ ├── _token_update_params.py │ │ ├── _transaction_create_force_capture_params.py │ │ ├── _transaction_create_unlinked_refund_params.py │ │ ├── _transaction_list_params.py │ │ ├── _transaction_modify_params.py │ │ ├── _transaction_refund_params.py │ │ ├── _transaction_retrieve_params.py │ │ └── _transaction_update_params.py │ ├── radar │ │ ├── __init__.py │ │ ├── _early_fraud_warning_list_params.py │ │ ├── _early_fraud_warning_retrieve_params.py │ │ ├── _value_list_create_params.py │ │ ├── _value_list_delete_params.py │ │ ├── _value_list_item_create_params.py │ │ ├── _value_list_item_delete_params.py │ │ ├── _value_list_item_list_params.py │ │ ├── _value_list_item_retrieve_params.py │ │ ├── _value_list_list_params.py │ │ ├── _value_list_modify_params.py │ │ ├── _value_list_retrieve_params.py │ │ └── _value_list_update_params.py │ ├── reporting │ │ ├── __init__.py │ │ ├── _report_run_create_params.py │ │ ├── _report_run_list_params.py │ │ ├── _report_run_retrieve_params.py │ │ ├── _report_type_list_params.py │ │ └── _report_type_retrieve_params.py │ ├── sigma │ │ ├── __init__.py │ │ ├── _scheduled_query_run_list_params.py │ │ └── _scheduled_query_run_retrieve_params.py │ ├── tax │ │ ├── __init__.py │ │ ├── _association_find_params.py │ │ ├── _calculation_create_params.py │ │ ├── _calculation_line_item_list_params.py │ │ ├── _calculation_list_line_items_params.py │ │ ├── _calculation_retrieve_params.py │ │ ├── _registration_create_params.py │ │ ├── _registration_list_params.py │ │ ├── _registration_modify_params.py │ │ ├── _registration_retrieve_params.py │ │ ├── _registration_update_params.py │ │ ├── _settings_modify_params.py │ │ ├── _settings_retrieve_params.py │ │ ├── _settings_update_params.py │ │ ├── _transaction_create_from_calculation_params.py │ │ ├── _transaction_create_reversal_params.py │ │ ├── _transaction_line_item_list_params.py │ │ ├── _transaction_list_line_items_params.py │ │ └── _transaction_retrieve_params.py │ ├── terminal │ │ ├── __init__.py │ │ ├── _configuration_create_params.py │ │ ├── _configuration_delete_params.py │ │ ├── _configuration_list_params.py │ │ ├── _configuration_modify_params.py │ │ ├── _configuration_retrieve_params.py │ │ ├── _configuration_update_params.py │ │ ├── _connection_token_create_params.py │ │ ├── _location_create_params.py │ │ ├── _location_delete_params.py │ │ ├── _location_list_params.py │ │ ├── _location_modify_params.py │ │ ├── _location_retrieve_params.py │ │ ├── _location_update_params.py │ │ ├── _onboarding_link_create_params.py │ │ ├── _reader_cancel_action_params.py │ │ ├── _reader_collect_inputs_params.py │ │ ├── _reader_collect_payment_method_params.py │ │ ├── _reader_confirm_payment_intent_params.py │ │ ├── _reader_create_params.py │ │ ├── _reader_delete_params.py │ │ ├── _reader_list_params.py │ │ ├── _reader_modify_params.py │ │ ├── _reader_present_payment_method_params.py │ │ ├── _reader_process_payment_intent_params.py │ │ ├── _reader_process_setup_intent_params.py │ │ ├── _reader_refund_payment_params.py │ │ ├── _reader_retrieve_params.py │ │ ├── _reader_set_reader_display_params.py │ │ ├── _reader_succeed_input_collection_params.py │ │ ├── _reader_timeout_input_collection_params.py │ │ └── _reader_update_params.py │ ├── test_helpers │ │ ├── __init__.py │ │ ├── _confirmation_token_create_params.py │ │ ├── _customer_fund_cash_balance_params.py │ │ ├── _refund_expire_params.py │ │ ├── _test_clock_advance_params.py │ │ ├── _test_clock_create_params.py │ │ ├── _test_clock_delete_params.py │ │ ├── _test_clock_list_params.py │ │ ├── _test_clock_retrieve_params.py │ │ ├── issuing │ │ │ ├── __init__.py │ │ │ ├── _authorization_capture_params.py │ │ │ ├── _authorization_create_params.py │ │ │ ├── _authorization_expire_params.py │ │ │ ├── _authorization_finalize_amount_params.py │ │ │ ├── _authorization_increment_params.py │ │ │ ├── _authorization_respond_params.py │ │ │ ├── _authorization_reverse_params.py │ │ │ ├── _card_deliver_card_params.py │ │ │ ├── _card_fail_card_params.py │ │ │ ├── _card_return_card_params.py │ │ │ ├── _card_ship_card_params.py │ │ │ ├── _card_submit_card_params.py │ │ │ ├── _personalization_design_activate_params.py │ │ │ ├── _personalization_design_deactivate_params.py │ │ │ ├── _personalization_design_reject_params.py │ │ │ ├── _transaction_create_force_capture_params.py │ │ │ ├── _transaction_create_unlinked_refund_params.py │ │ │ └── _transaction_refund_params.py │ │ ├── terminal │ │ │ ├── __init__.py │ │ │ ├── _reader_present_payment_method_params.py │ │ │ ├── _reader_succeed_input_collection_params.py │ │ │ └── _reader_timeout_input_collection_params.py │ │ └── treasury │ │ │ ├── __init__.py │ │ │ ├── _inbound_transfer_fail_params.py │ │ │ ├── _inbound_transfer_return_inbound_transfer_params.py │ │ │ ├── _inbound_transfer_succeed_params.py │ │ │ ├── _outbound_payment_fail_params.py │ │ │ ├── _outbound_payment_post_params.py │ │ │ ├── _outbound_payment_return_outbound_payment_params.py │ │ │ ├── _outbound_payment_update_params.py │ │ │ ├── _outbound_transfer_fail_params.py │ │ │ ├── _outbound_transfer_post_params.py │ │ │ ├── _outbound_transfer_return_outbound_transfer_params.py │ │ │ ├── _outbound_transfer_update_params.py │ │ │ ├── _received_credit_create_params.py │ │ │ └── _received_debit_create_params.py │ ├── treasury │ │ ├── __init__.py │ │ ├── _credit_reversal_create_params.py │ │ ├── _credit_reversal_list_params.py │ │ ├── _credit_reversal_retrieve_params.py │ │ ├── _debit_reversal_create_params.py │ │ ├── _debit_reversal_list_params.py │ │ ├── _debit_reversal_retrieve_params.py │ │ ├── _financial_account_close_params.py │ │ ├── _financial_account_create_params.py │ │ ├── _financial_account_features_retrieve_params.py │ │ ├── _financial_account_features_update_params.py │ │ ├── _financial_account_list_params.py │ │ ├── _financial_account_modify_params.py │ │ ├── _financial_account_retrieve_features_params.py │ │ ├── _financial_account_retrieve_params.py │ │ ├── _financial_account_update_features_params.py │ │ ├── _financial_account_update_params.py │ │ ├── _inbound_transfer_cancel_params.py │ │ ├── _inbound_transfer_create_params.py │ │ ├── _inbound_transfer_fail_params.py │ │ ├── _inbound_transfer_list_params.py │ │ ├── _inbound_transfer_retrieve_params.py │ │ ├── _inbound_transfer_return_inbound_transfer_params.py │ │ ├── _inbound_transfer_succeed_params.py │ │ ├── _outbound_payment_cancel_params.py │ │ ├── _outbound_payment_create_params.py │ │ ├── _outbound_payment_fail_params.py │ │ ├── _outbound_payment_list_params.py │ │ ├── _outbound_payment_post_params.py │ │ ├── _outbound_payment_retrieve_params.py │ │ ├── _outbound_payment_return_outbound_payment_params.py │ │ ├── _outbound_payment_update_params.py │ │ ├── _outbound_transfer_cancel_params.py │ │ ├── _outbound_transfer_create_params.py │ │ ├── _outbound_transfer_fail_params.py │ │ ├── _outbound_transfer_list_params.py │ │ ├── _outbound_transfer_post_params.py │ │ ├── _outbound_transfer_retrieve_params.py │ │ ├── _outbound_transfer_return_outbound_transfer_params.py │ │ ├── _outbound_transfer_update_params.py │ │ ├── _received_credit_create_params.py │ │ ├── _received_credit_list_params.py │ │ ├── _received_credit_retrieve_params.py │ │ ├── _received_debit_create_params.py │ │ ├── _received_debit_list_params.py │ │ ├── _received_debit_retrieve_params.py │ │ ├── _transaction_entry_list_params.py │ │ ├── _transaction_entry_retrieve_params.py │ │ ├── _transaction_list_params.py │ │ └── _transaction_retrieve_params.py │ └── v2 │ │ ├── __init__.py │ │ ├── billing │ │ ├── __init__.py │ │ ├── _meter_event_adjustment_create_params.py │ │ ├── _meter_event_create_params.py │ │ ├── _meter_event_session_create_params.py │ │ └── _meter_event_stream_create_params.py │ │ └── core │ │ ├── __init__.py │ │ ├── _event_destination_create_params.py │ │ ├── _event_destination_delete_params.py │ │ ├── _event_destination_disable_params.py │ │ ├── _event_destination_enable_params.py │ │ ├── _event_destination_list_params.py │ │ ├── _event_destination_ping_params.py │ │ ├── _event_destination_retrieve_params.py │ │ ├── _event_destination_update_params.py │ │ ├── _event_list_params.py │ │ └── _event_retrieve_params.py ├── py.typed ├── radar │ ├── __init__.py │ ├── _early_fraud_warning.py │ ├── _early_fraud_warning_service.py │ ├── _value_list.py │ ├── _value_list_item.py │ ├── _value_list_item_service.py │ └── _value_list_service.py ├── reporting │ ├── __init__.py │ ├── _report_run.py │ ├── _report_run_service.py │ ├── _report_type.py │ └── _report_type_service.py ├── sigma │ ├── __init__.py │ ├── _scheduled_query_run.py │ └── _scheduled_query_run_service.py ├── tax │ ├── __init__.py │ ├── _association.py │ ├── _association_service.py │ ├── _calculation.py │ ├── _calculation_line_item.py │ ├── _calculation_line_item_service.py │ ├── _calculation_service.py │ ├── _registration.py │ ├── _registration_service.py │ ├── _settings.py │ ├── _settings_service.py │ ├── _transaction.py │ ├── _transaction_line_item.py │ ├── _transaction_line_item_service.py │ └── _transaction_service.py ├── terminal │ ├── __init__.py │ ├── _configuration.py │ ├── _configuration_service.py │ ├── _connection_token.py │ ├── _connection_token_service.py │ ├── _location.py │ ├── _location_service.py │ ├── _onboarding_link.py │ ├── _onboarding_link_service.py │ ├── _reader.py │ └── _reader_service.py ├── test_helpers │ ├── __init__.py │ ├── _confirmation_token_service.py │ ├── _customer_service.py │ ├── _issuing_service.py │ ├── _refund_service.py │ ├── _terminal_service.py │ ├── _test_clock.py │ ├── _test_clock_service.py │ ├── _treasury_service.py │ ├── issuing │ │ ├── __init__.py │ │ ├── _authorization_service.py │ │ ├── _card_service.py │ │ ├── _personalization_design_service.py │ │ └── _transaction_service.py │ ├── terminal │ │ ├── __init__.py │ │ └── _reader_service.py │ └── treasury │ │ ├── __init__.py │ │ ├── _inbound_transfer_service.py │ │ ├── _outbound_payment_service.py │ │ ├── _outbound_transfer_service.py │ │ ├── _received_credit_service.py │ │ └── _received_debit_service.py ├── treasury │ ├── __init__.py │ ├── _credit_reversal.py │ ├── _credit_reversal_service.py │ ├── _debit_reversal.py │ ├── _debit_reversal_service.py │ ├── _financial_account.py │ ├── _financial_account_features.py │ ├── _financial_account_features_service.py │ ├── _financial_account_service.py │ ├── _inbound_transfer.py │ ├── _inbound_transfer_service.py │ ├── _outbound_payment.py │ ├── _outbound_payment_service.py │ ├── _outbound_transfer.py │ ├── _outbound_transfer_service.py │ ├── _received_credit.py │ ├── _received_credit_service.py │ ├── _received_debit.py │ ├── _received_debit_service.py │ ├── _transaction.py │ ├── _transaction_entry.py │ ├── _transaction_entry_service.py │ └── _transaction_service.py └── v2 │ ├── __init__.py │ ├── _amount.py │ ├── _billing_service.py │ ├── _core_service.py │ ├── _deleted_object.py │ ├── _list_object.py │ ├── billing │ ├── __init__.py │ ├── _meter_event.py │ ├── _meter_event_adjustment.py │ ├── _meter_event_adjustment_service.py │ ├── _meter_event_service.py │ ├── _meter_event_session.py │ ├── _meter_event_session_service.py │ └── _meter_event_stream_service.py │ └── core │ ├── __init__.py │ ├── _event.py │ ├── _event_destination.py │ ├── _event_destination_service.py │ └── _event_service.py └── tests ├── __init__.py ├── api_resources ├── __init__.py ├── abstract │ ├── __init__.py │ ├── test_api_resource.py │ ├── test_createable_api_resource.py │ ├── test_custom_method.py │ ├── test_deletable_api_resource.py │ ├── test_listable_api_resource.py │ ├── test_nested_resource_class_methods.py │ ├── test_searchable_api_resource.py │ ├── test_singleton_api_resource.py │ ├── test_test_helpers_api_resource.py │ └── test_updateable_api_resource.py ├── billing_portal │ ├── __init__.py │ ├── test_configuration.py │ └── test_session.py ├── checkout │ ├── __init__.py │ └── test_session.py ├── identity │ ├── test_verification_report.py │ └── test_verification_session.py ├── issuing │ ├── __init__.py │ ├── test_authorization.py │ ├── test_card.py │ ├── test_cardholder.py │ ├── test_dispute.py │ └── test_transaction.py ├── radar │ ├── __init__.py │ ├── test_early_fraud_warning.py │ ├── test_value_list.py │ └── test_value_list_item.py ├── reporting │ ├── __init__.py │ ├── test_report_run.py │ └── test_report_type.py ├── sigma │ ├── __init__.py │ └── test_scheduled_query_run.py ├── terminal │ ├── __init__.py │ ├── test_connection_token.py │ ├── test_location.py │ └── test_reader.py ├── test_account.py ├── test_account_link.py ├── test_apple_pay_domain.py ├── test_application_fee.py ├── test_application_fee_refund.py ├── test_balance.py ├── test_balance_transaction.py ├── test_bank_account.py ├── test_capability.py ├── test_card.py ├── test_charge.py ├── test_country_spec.py ├── test_coupon.py ├── test_credit_note.py ├── test_customer.py ├── test_customer_balance_transaction.py ├── test_dispute.py ├── test_ephemeral_key.py ├── test_event.py ├── test_exchange_rate.py ├── test_file.py ├── test_file_link.py ├── test_file_upload.py ├── test_invoice.py ├── test_invoice_item.py ├── test_invoice_line_item.py ├── test_list_object.py ├── test_list_object_v2.py ├── test_mandate.py ├── test_payment_intent.py ├── test_payment_method.py ├── test_payout.py ├── test_person.py ├── test_plan.py ├── test_price.py ├── test_product.py ├── test_quote.py ├── test_refund.py ├── test_reversal.py ├── test_review.py ├── test_search_result_object.py ├── test_setup_attempt.py ├── test_setup_intent.py ├── test_source.py ├── test_source_transaction.py ├── test_subscription.py ├── test_subscription_item.py ├── test_subscription_schedule.py ├── test_tax_code.py ├── test_tax_id.py ├── test_tax_rate.py ├── test_topup.py ├── test_transfer.py └── test_webhook_endpoint.py ├── conftest.py ├── http_client_mock.py ├── openapi └── README.md ├── request_mock.py ├── services ├── test_file_upload.py ├── test_oauth.py └── test_quote.py ├── stripe_mock.py ├── test_api_requestor.py ├── test_error.py ├── test_exports.py ├── test_generated_examples.py ├── test_http_client.py ├── test_integration.py ├── test_multipart_data_generator.py ├── test_oauth.py ├── test_oauth_error.py ├── test_raw_request.py ├── test_request_options.py ├── test_requestor_options.py ├── test_stripe_client.py ├── test_stripe_context.py ├── test_stripe_object.py ├── test_stripe_response.py ├── test_util.py ├── test_v2_error.py ├── test_v2_event.py └── test_webhook.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/.editorconfig -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/.flake8 -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/rules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/.github/workflows/rules.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /API_VERSION: -------------------------------------------------------------------------------- 1 | 368be7755d15d02a1038325c7d159703b01662b0 -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/LICENSE -------------------------------------------------------------------------------- /OPENAPI_VERSION: -------------------------------------------------------------------------------- 1 | v2128 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 14.0.1 2 | -------------------------------------------------------------------------------- /deps/build-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/deps/build-requirements.txt -------------------------------------------------------------------------------- /deps/dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/deps/dev-requirements.txt -------------------------------------------------------------------------------- /deps/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/deps/test-requirements.txt -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/event_notification_webhook_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/examples/event_notification_webhook_handler.py -------------------------------------------------------------------------------- /examples/example_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/examples/example_template.py -------------------------------------------------------------------------------- /examples/meter_event_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/examples/meter_event_stream.py -------------------------------------------------------------------------------- /examples/oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/examples/oauth.py -------------------------------------------------------------------------------- /examples/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/examples/proxy.py -------------------------------------------------------------------------------- /examples/raw_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/examples/raw_request.py -------------------------------------------------------------------------------- /examples/webhooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/examples/webhooks.py -------------------------------------------------------------------------------- /flake8_stripe/flake8_stripe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/flake8_stripe/flake8_stripe.py -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/justfile -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /stripe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/__init__.py -------------------------------------------------------------------------------- /stripe/_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_account.py -------------------------------------------------------------------------------- /stripe/_account_capability_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_account_capability_service.py -------------------------------------------------------------------------------- /stripe/_account_external_account_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_account_external_account_service.py -------------------------------------------------------------------------------- /stripe/_account_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_account_link.py -------------------------------------------------------------------------------- /stripe/_account_link_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_account_link_service.py -------------------------------------------------------------------------------- /stripe/_account_login_link_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_account_login_link_service.py -------------------------------------------------------------------------------- /stripe/_account_person_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_account_person_service.py -------------------------------------------------------------------------------- /stripe/_account_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_account_service.py -------------------------------------------------------------------------------- /stripe/_account_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_account_session.py -------------------------------------------------------------------------------- /stripe/_account_session_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_account_session_service.py -------------------------------------------------------------------------------- /stripe/_any_iterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_any_iterator.py -------------------------------------------------------------------------------- /stripe/_api_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_api_mode.py -------------------------------------------------------------------------------- /stripe/_api_requestor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_api_requestor.py -------------------------------------------------------------------------------- /stripe/_api_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_api_resource.py -------------------------------------------------------------------------------- /stripe/_api_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_api_version.py -------------------------------------------------------------------------------- /stripe/_app_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_app_info.py -------------------------------------------------------------------------------- /stripe/_apple_pay_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_apple_pay_domain.py -------------------------------------------------------------------------------- /stripe/_apple_pay_domain_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_apple_pay_domain_service.py -------------------------------------------------------------------------------- /stripe/_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_application.py -------------------------------------------------------------------------------- /stripe/_application_fee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_application_fee.py -------------------------------------------------------------------------------- /stripe/_application_fee_refund.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_application_fee_refund.py -------------------------------------------------------------------------------- /stripe/_application_fee_refund_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_application_fee_refund_service.py -------------------------------------------------------------------------------- /stripe/_application_fee_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_application_fee_service.py -------------------------------------------------------------------------------- /stripe/_apps_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_apps_service.py -------------------------------------------------------------------------------- /stripe/_balance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_balance.py -------------------------------------------------------------------------------- /stripe/_balance_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_balance_service.py -------------------------------------------------------------------------------- /stripe/_balance_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_balance_settings.py -------------------------------------------------------------------------------- /stripe/_balance_settings_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_balance_settings_service.py -------------------------------------------------------------------------------- /stripe/_balance_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_balance_transaction.py -------------------------------------------------------------------------------- /stripe/_balance_transaction_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_balance_transaction_service.py -------------------------------------------------------------------------------- /stripe/_bank_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_bank_account.py -------------------------------------------------------------------------------- /stripe/_base_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_base_address.py -------------------------------------------------------------------------------- /stripe/_billing_portal_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_billing_portal_service.py -------------------------------------------------------------------------------- /stripe/_billing_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_billing_service.py -------------------------------------------------------------------------------- /stripe/_capability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_capability.py -------------------------------------------------------------------------------- /stripe/_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_card.py -------------------------------------------------------------------------------- /stripe/_cash_balance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_cash_balance.py -------------------------------------------------------------------------------- /stripe/_charge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_charge.py -------------------------------------------------------------------------------- /stripe/_charge_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_charge_service.py -------------------------------------------------------------------------------- /stripe/_checkout_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_checkout_service.py -------------------------------------------------------------------------------- /stripe/_client_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_client_options.py -------------------------------------------------------------------------------- /stripe/_climate_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_climate_service.py -------------------------------------------------------------------------------- /stripe/_confirmation_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_confirmation_token.py -------------------------------------------------------------------------------- /stripe/_confirmation_token_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_confirmation_token_service.py -------------------------------------------------------------------------------- /stripe/_connect_collection_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_connect_collection_transfer.py -------------------------------------------------------------------------------- /stripe/_country_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_country_spec.py -------------------------------------------------------------------------------- /stripe/_country_spec_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_country_spec_service.py -------------------------------------------------------------------------------- /stripe/_coupon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_coupon.py -------------------------------------------------------------------------------- /stripe/_coupon_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_coupon_service.py -------------------------------------------------------------------------------- /stripe/_createable_api_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_createable_api_resource.py -------------------------------------------------------------------------------- /stripe/_credit_note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_credit_note.py -------------------------------------------------------------------------------- /stripe/_credit_note_line_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_credit_note_line_item.py -------------------------------------------------------------------------------- /stripe/_credit_note_line_item_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_credit_note_line_item_service.py -------------------------------------------------------------------------------- /stripe/_credit_note_preview_lines_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_credit_note_preview_lines_service.py -------------------------------------------------------------------------------- /stripe/_credit_note_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_credit_note_service.py -------------------------------------------------------------------------------- /stripe/_custom_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_custom_method.py -------------------------------------------------------------------------------- /stripe/_customer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_customer.py -------------------------------------------------------------------------------- /stripe/_customer_balance_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_customer_balance_transaction.py -------------------------------------------------------------------------------- /stripe/_customer_balance_transaction_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_customer_balance_transaction_service.py -------------------------------------------------------------------------------- /stripe/_customer_cash_balance_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_customer_cash_balance_service.py -------------------------------------------------------------------------------- /stripe/_customer_cash_balance_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_customer_cash_balance_transaction.py -------------------------------------------------------------------------------- /stripe/_customer_funding_instructions_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_customer_funding_instructions_service.py -------------------------------------------------------------------------------- /stripe/_customer_payment_method_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_customer_payment_method_service.py -------------------------------------------------------------------------------- /stripe/_customer_payment_source_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_customer_payment_source_service.py -------------------------------------------------------------------------------- /stripe/_customer_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_customer_service.py -------------------------------------------------------------------------------- /stripe/_customer_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_customer_session.py -------------------------------------------------------------------------------- /stripe/_customer_session_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_customer_session_service.py -------------------------------------------------------------------------------- /stripe/_customer_tax_id_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_customer_tax_id_service.py -------------------------------------------------------------------------------- /stripe/_deletable_api_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_deletable_api_resource.py -------------------------------------------------------------------------------- /stripe/_discount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_discount.py -------------------------------------------------------------------------------- /stripe/_dispute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_dispute.py -------------------------------------------------------------------------------- /stripe/_dispute_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_dispute_service.py -------------------------------------------------------------------------------- /stripe/_encode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_encode.py -------------------------------------------------------------------------------- /stripe/_entitlements_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_entitlements_service.py -------------------------------------------------------------------------------- /stripe/_ephemeral_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_ephemeral_key.py -------------------------------------------------------------------------------- /stripe/_ephemeral_key_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_ephemeral_key_service.py -------------------------------------------------------------------------------- /stripe/_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_error.py -------------------------------------------------------------------------------- /stripe/_error_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_error_object.py -------------------------------------------------------------------------------- /stripe/_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_event.py -------------------------------------------------------------------------------- /stripe/_event_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_event_service.py -------------------------------------------------------------------------------- /stripe/_exchange_rate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_exchange_rate.py -------------------------------------------------------------------------------- /stripe/_exchange_rate_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_exchange_rate_service.py -------------------------------------------------------------------------------- /stripe/_expandable_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_expandable_field.py -------------------------------------------------------------------------------- /stripe/_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_file.py -------------------------------------------------------------------------------- /stripe/_file_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_file_link.py -------------------------------------------------------------------------------- /stripe/_file_link_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_file_link_service.py -------------------------------------------------------------------------------- /stripe/_file_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_file_service.py -------------------------------------------------------------------------------- /stripe/_financial_connections_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_financial_connections_service.py -------------------------------------------------------------------------------- /stripe/_forwarding_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_forwarding_service.py -------------------------------------------------------------------------------- /stripe/_funding_instructions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_funding_instructions.py -------------------------------------------------------------------------------- /stripe/_http_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_http_client.py -------------------------------------------------------------------------------- /stripe/_identity_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_identity_service.py -------------------------------------------------------------------------------- /stripe/_invoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_invoice.py -------------------------------------------------------------------------------- /stripe/_invoice_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_invoice_item.py -------------------------------------------------------------------------------- /stripe/_invoice_item_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_invoice_item_service.py -------------------------------------------------------------------------------- /stripe/_invoice_line_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_invoice_line_item.py -------------------------------------------------------------------------------- /stripe/_invoice_line_item_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_invoice_line_item_service.py -------------------------------------------------------------------------------- /stripe/_invoice_payment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_invoice_payment.py -------------------------------------------------------------------------------- /stripe/_invoice_payment_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_invoice_payment_service.py -------------------------------------------------------------------------------- /stripe/_invoice_rendering_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_invoice_rendering_template.py -------------------------------------------------------------------------------- /stripe/_invoice_rendering_template_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_invoice_rendering_template_service.py -------------------------------------------------------------------------------- /stripe/_invoice_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_invoice_service.py -------------------------------------------------------------------------------- /stripe/_issuing_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_issuing_service.py -------------------------------------------------------------------------------- /stripe/_line_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_line_item.py -------------------------------------------------------------------------------- /stripe/_list_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_list_object.py -------------------------------------------------------------------------------- /stripe/_listable_api_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_listable_api_resource.py -------------------------------------------------------------------------------- /stripe/_login_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_login_link.py -------------------------------------------------------------------------------- /stripe/_mandate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_mandate.py -------------------------------------------------------------------------------- /stripe/_mandate_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_mandate_service.py -------------------------------------------------------------------------------- /stripe/_multipart_data_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_multipart_data_generator.py -------------------------------------------------------------------------------- /stripe/_nested_resource_class_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_nested_resource_class_methods.py -------------------------------------------------------------------------------- /stripe/_oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_oauth.py -------------------------------------------------------------------------------- /stripe/_oauth_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_oauth_service.py -------------------------------------------------------------------------------- /stripe/_object_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_object_classes.py -------------------------------------------------------------------------------- /stripe/_payment_attempt_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_payment_attempt_record.py -------------------------------------------------------------------------------- /stripe/_payment_attempt_record_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_payment_attempt_record_service.py -------------------------------------------------------------------------------- /stripe/_payment_intent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_payment_intent.py -------------------------------------------------------------------------------- /stripe/_payment_intent_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_payment_intent_service.py -------------------------------------------------------------------------------- /stripe/_payment_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_payment_link.py -------------------------------------------------------------------------------- /stripe/_payment_link_line_item_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_payment_link_line_item_service.py -------------------------------------------------------------------------------- /stripe/_payment_link_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_payment_link_service.py -------------------------------------------------------------------------------- /stripe/_payment_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_payment_method.py -------------------------------------------------------------------------------- /stripe/_payment_method_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_payment_method_configuration.py -------------------------------------------------------------------------------- /stripe/_payment_method_configuration_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_payment_method_configuration_service.py -------------------------------------------------------------------------------- /stripe/_payment_method_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_payment_method_domain.py -------------------------------------------------------------------------------- /stripe/_payment_method_domain_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_payment_method_domain_service.py -------------------------------------------------------------------------------- /stripe/_payment_method_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_payment_method_service.py -------------------------------------------------------------------------------- /stripe/_payment_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_payment_record.py -------------------------------------------------------------------------------- /stripe/_payment_record_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_payment_record_service.py -------------------------------------------------------------------------------- /stripe/_payout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_payout.py -------------------------------------------------------------------------------- /stripe/_payout_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_payout_service.py -------------------------------------------------------------------------------- /stripe/_person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_person.py -------------------------------------------------------------------------------- /stripe/_plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_plan.py -------------------------------------------------------------------------------- /stripe/_plan_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_plan_service.py -------------------------------------------------------------------------------- /stripe/_price.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_price.py -------------------------------------------------------------------------------- /stripe/_price_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_price_service.py -------------------------------------------------------------------------------- /stripe/_product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_product.py -------------------------------------------------------------------------------- /stripe/_product_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_product_feature.py -------------------------------------------------------------------------------- /stripe/_product_feature_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_product_feature_service.py -------------------------------------------------------------------------------- /stripe/_product_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_product_service.py -------------------------------------------------------------------------------- /stripe/_promotion_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_promotion_code.py -------------------------------------------------------------------------------- /stripe/_promotion_code_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_promotion_code_service.py -------------------------------------------------------------------------------- /stripe/_quote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_quote.py -------------------------------------------------------------------------------- /stripe/_quote_line_item_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_quote_line_item_service.py -------------------------------------------------------------------------------- /stripe/_quote_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_quote_service.py -------------------------------------------------------------------------------- /stripe/_radar_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_radar_service.py -------------------------------------------------------------------------------- /stripe/_refund.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_refund.py -------------------------------------------------------------------------------- /stripe/_refund_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_refund_service.py -------------------------------------------------------------------------------- /stripe/_reporting_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_reporting_service.py -------------------------------------------------------------------------------- /stripe/_request_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_request_metrics.py -------------------------------------------------------------------------------- /stripe/_request_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_request_options.py -------------------------------------------------------------------------------- /stripe/_requestor_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_requestor_options.py -------------------------------------------------------------------------------- /stripe/_reserve_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_reserve_transaction.py -------------------------------------------------------------------------------- /stripe/_reversal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_reversal.py -------------------------------------------------------------------------------- /stripe/_review.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_review.py -------------------------------------------------------------------------------- /stripe/_review_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_review_service.py -------------------------------------------------------------------------------- /stripe/_search_result_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_search_result_object.py -------------------------------------------------------------------------------- /stripe/_searchable_api_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_searchable_api_resource.py -------------------------------------------------------------------------------- /stripe/_setup_attempt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_setup_attempt.py -------------------------------------------------------------------------------- /stripe/_setup_attempt_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_setup_attempt_service.py -------------------------------------------------------------------------------- /stripe/_setup_intent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_setup_intent.py -------------------------------------------------------------------------------- /stripe/_setup_intent_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_setup_intent_service.py -------------------------------------------------------------------------------- /stripe/_shipping_rate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_shipping_rate.py -------------------------------------------------------------------------------- /stripe/_shipping_rate_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_shipping_rate_service.py -------------------------------------------------------------------------------- /stripe/_sigma_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_sigma_service.py -------------------------------------------------------------------------------- /stripe/_singleton_api_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_singleton_api_resource.py -------------------------------------------------------------------------------- /stripe/_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_source.py -------------------------------------------------------------------------------- /stripe/_source_mandate_notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_source_mandate_notification.py -------------------------------------------------------------------------------- /stripe/_source_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_source_service.py -------------------------------------------------------------------------------- /stripe/_source_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_source_transaction.py -------------------------------------------------------------------------------- /stripe/_source_transaction_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_source_transaction_service.py -------------------------------------------------------------------------------- /stripe/_stripe_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_stripe_client.py -------------------------------------------------------------------------------- /stripe/_stripe_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_stripe_context.py -------------------------------------------------------------------------------- /stripe/_stripe_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_stripe_object.py -------------------------------------------------------------------------------- /stripe/_stripe_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_stripe_response.py -------------------------------------------------------------------------------- /stripe/_stripe_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_stripe_service.py -------------------------------------------------------------------------------- /stripe/_subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_subscription.py -------------------------------------------------------------------------------- /stripe/_subscription_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_subscription_item.py -------------------------------------------------------------------------------- /stripe/_subscription_item_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_subscription_item_service.py -------------------------------------------------------------------------------- /stripe/_subscription_schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_subscription_schedule.py -------------------------------------------------------------------------------- /stripe/_subscription_schedule_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_subscription_schedule_service.py -------------------------------------------------------------------------------- /stripe/_subscription_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_subscription_service.py -------------------------------------------------------------------------------- /stripe/_tax_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_tax_code.py -------------------------------------------------------------------------------- /stripe/_tax_code_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_tax_code_service.py -------------------------------------------------------------------------------- /stripe/_tax_deducted_at_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_tax_deducted_at_source.py -------------------------------------------------------------------------------- /stripe/_tax_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_tax_id.py -------------------------------------------------------------------------------- /stripe/_tax_id_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_tax_id_service.py -------------------------------------------------------------------------------- /stripe/_tax_rate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_tax_rate.py -------------------------------------------------------------------------------- /stripe/_tax_rate_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_tax_rate_service.py -------------------------------------------------------------------------------- /stripe/_tax_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_tax_service.py -------------------------------------------------------------------------------- /stripe/_terminal_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_terminal_service.py -------------------------------------------------------------------------------- /stripe/_test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_test_helpers.py -------------------------------------------------------------------------------- /stripe/_test_helpers_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_test_helpers_service.py -------------------------------------------------------------------------------- /stripe/_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_token.py -------------------------------------------------------------------------------- /stripe/_token_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_token_service.py -------------------------------------------------------------------------------- /stripe/_topup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_topup.py -------------------------------------------------------------------------------- /stripe/_topup_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_topup_service.py -------------------------------------------------------------------------------- /stripe/_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_transfer.py -------------------------------------------------------------------------------- /stripe/_transfer_reversal_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_transfer_reversal_service.py -------------------------------------------------------------------------------- /stripe/_transfer_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_transfer_service.py -------------------------------------------------------------------------------- /stripe/_treasury_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_treasury_service.py -------------------------------------------------------------------------------- /stripe/_updateable_api_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_updateable_api_resource.py -------------------------------------------------------------------------------- /stripe/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_util.py -------------------------------------------------------------------------------- /stripe/_v1_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_v1_services.py -------------------------------------------------------------------------------- /stripe/_v2_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_v2_services.py -------------------------------------------------------------------------------- /stripe/_verify_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_verify_mixin.py -------------------------------------------------------------------------------- /stripe/_version.py: -------------------------------------------------------------------------------- 1 | VERSION = "14.0.1" 2 | -------------------------------------------------------------------------------- /stripe/_webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_webhook.py -------------------------------------------------------------------------------- /stripe/_webhook_endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_webhook_endpoint.py -------------------------------------------------------------------------------- /stripe/_webhook_endpoint_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/_webhook_endpoint_service.py -------------------------------------------------------------------------------- /stripe/apps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/apps/__init__.py -------------------------------------------------------------------------------- /stripe/apps/_secret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/apps/_secret.py -------------------------------------------------------------------------------- /stripe/apps/_secret_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/apps/_secret_service.py -------------------------------------------------------------------------------- /stripe/billing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/billing/__init__.py -------------------------------------------------------------------------------- /stripe/billing/_alert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/billing/_alert.py -------------------------------------------------------------------------------- /stripe/billing/_alert_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/billing/_alert_service.py -------------------------------------------------------------------------------- /stripe/billing/_alert_triggered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/billing/_alert_triggered.py -------------------------------------------------------------------------------- /stripe/billing/_credit_balance_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/billing/_credit_balance_summary.py -------------------------------------------------------------------------------- /stripe/billing/_credit_balance_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/billing/_credit_balance_transaction.py -------------------------------------------------------------------------------- /stripe/billing/_credit_grant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/billing/_credit_grant.py -------------------------------------------------------------------------------- /stripe/billing/_credit_grant_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/billing/_credit_grant_service.py -------------------------------------------------------------------------------- /stripe/billing/_meter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/billing/_meter.py -------------------------------------------------------------------------------- /stripe/billing/_meter_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/billing/_meter_event.py -------------------------------------------------------------------------------- /stripe/billing/_meter_event_adjustment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/billing/_meter_event_adjustment.py -------------------------------------------------------------------------------- /stripe/billing/_meter_event_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/billing/_meter_event_service.py -------------------------------------------------------------------------------- /stripe/billing/_meter_event_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/billing/_meter_event_summary.py -------------------------------------------------------------------------------- /stripe/billing/_meter_event_summary_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/billing/_meter_event_summary_service.py -------------------------------------------------------------------------------- /stripe/billing/_meter_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/billing/_meter_service.py -------------------------------------------------------------------------------- /stripe/billing_portal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/billing_portal/__init__.py -------------------------------------------------------------------------------- /stripe/billing_portal/_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/billing_portal/_configuration.py -------------------------------------------------------------------------------- /stripe/billing_portal/_configuration_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/billing_portal/_configuration_service.py -------------------------------------------------------------------------------- /stripe/billing_portal/_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/billing_portal/_session.py -------------------------------------------------------------------------------- /stripe/billing_portal/_session_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/billing_portal/_session_service.py -------------------------------------------------------------------------------- /stripe/checkout/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/checkout/__init__.py -------------------------------------------------------------------------------- /stripe/checkout/_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/checkout/_session.py -------------------------------------------------------------------------------- /stripe/checkout/_session_line_item_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/checkout/_session_line_item_service.py -------------------------------------------------------------------------------- /stripe/checkout/_session_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/checkout/_session_service.py -------------------------------------------------------------------------------- /stripe/climate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/climate/__init__.py -------------------------------------------------------------------------------- /stripe/climate/_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/climate/_order.py -------------------------------------------------------------------------------- /stripe/climate/_order_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/climate/_order_service.py -------------------------------------------------------------------------------- /stripe/climate/_product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/climate/_product.py -------------------------------------------------------------------------------- /stripe/climate/_product_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/climate/_product_service.py -------------------------------------------------------------------------------- /stripe/climate/_supplier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/climate/_supplier.py -------------------------------------------------------------------------------- /stripe/climate/_supplier_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/climate/_supplier_service.py -------------------------------------------------------------------------------- /stripe/data/ca-certificates.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/data/ca-certificates.crt -------------------------------------------------------------------------------- /stripe/entitlements/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/entitlements/__init__.py -------------------------------------------------------------------------------- /stripe/entitlements/_active_entitlement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/entitlements/_active_entitlement.py -------------------------------------------------------------------------------- /stripe/entitlements/_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/entitlements/_feature.py -------------------------------------------------------------------------------- /stripe/entitlements/_feature_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/entitlements/_feature_service.py -------------------------------------------------------------------------------- /stripe/events/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/events/__init__.py -------------------------------------------------------------------------------- /stripe/events/_event_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/events/_event_classes.py -------------------------------------------------------------------------------- /stripe/financial_connections/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/financial_connections/__init__.py -------------------------------------------------------------------------------- /stripe/financial_connections/_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/financial_connections/_account.py -------------------------------------------------------------------------------- /stripe/financial_connections/_account_owner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/financial_connections/_account_owner.py -------------------------------------------------------------------------------- /stripe/financial_connections/_account_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/financial_connections/_account_service.py -------------------------------------------------------------------------------- /stripe/financial_connections/_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/financial_connections/_session.py -------------------------------------------------------------------------------- /stripe/financial_connections/_session_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/financial_connections/_session_service.py -------------------------------------------------------------------------------- /stripe/financial_connections/_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/financial_connections/_transaction.py -------------------------------------------------------------------------------- /stripe/forwarding/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/forwarding/__init__.py -------------------------------------------------------------------------------- /stripe/forwarding/_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/forwarding/_request.py -------------------------------------------------------------------------------- /stripe/forwarding/_request_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/forwarding/_request_service.py -------------------------------------------------------------------------------- /stripe/identity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/identity/__init__.py -------------------------------------------------------------------------------- /stripe/identity/_verification_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/identity/_verification_report.py -------------------------------------------------------------------------------- /stripe/identity/_verification_report_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/identity/_verification_report_service.py -------------------------------------------------------------------------------- /stripe/identity/_verification_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/identity/_verification_session.py -------------------------------------------------------------------------------- /stripe/identity/_verification_session_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/identity/_verification_session_service.py -------------------------------------------------------------------------------- /stripe/issuing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/issuing/__init__.py -------------------------------------------------------------------------------- /stripe/issuing/_authorization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/issuing/_authorization.py -------------------------------------------------------------------------------- /stripe/issuing/_authorization_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/issuing/_authorization_service.py -------------------------------------------------------------------------------- /stripe/issuing/_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/issuing/_card.py -------------------------------------------------------------------------------- /stripe/issuing/_card_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/issuing/_card_service.py -------------------------------------------------------------------------------- /stripe/issuing/_cardholder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/issuing/_cardholder.py -------------------------------------------------------------------------------- /stripe/issuing/_cardholder_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/issuing/_cardholder_service.py -------------------------------------------------------------------------------- /stripe/issuing/_dispute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/issuing/_dispute.py -------------------------------------------------------------------------------- /stripe/issuing/_dispute_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/issuing/_dispute_service.py -------------------------------------------------------------------------------- /stripe/issuing/_personalization_design.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/issuing/_personalization_design.py -------------------------------------------------------------------------------- /stripe/issuing/_physical_bundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/issuing/_physical_bundle.py -------------------------------------------------------------------------------- /stripe/issuing/_physical_bundle_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/issuing/_physical_bundle_service.py -------------------------------------------------------------------------------- /stripe/issuing/_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/issuing/_token.py -------------------------------------------------------------------------------- /stripe/issuing/_token_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/issuing/_token_service.py -------------------------------------------------------------------------------- /stripe/issuing/_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/issuing/_transaction.py -------------------------------------------------------------------------------- /stripe/issuing/_transaction_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/issuing/_transaction_service.py -------------------------------------------------------------------------------- /stripe/oauth_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/oauth_error.py -------------------------------------------------------------------------------- /stripe/params/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/__init__.py -------------------------------------------------------------------------------- /stripe/params/_account_capability_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_account_capability_list_params.py -------------------------------------------------------------------------------- /stripe/params/_account_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_account_create_params.py -------------------------------------------------------------------------------- /stripe/params/_account_create_person_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_account_create_person_params.py -------------------------------------------------------------------------------- /stripe/params/_account_delete_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_account_delete_params.py -------------------------------------------------------------------------------- /stripe/params/_account_delete_person_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_account_delete_person_params.py -------------------------------------------------------------------------------- /stripe/params/_account_link_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_account_link_create_params.py -------------------------------------------------------------------------------- /stripe/params/_account_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_account_list_params.py -------------------------------------------------------------------------------- /stripe/params/_account_list_persons_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_account_list_persons_params.py -------------------------------------------------------------------------------- /stripe/params/_account_modify_person_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_account_modify_person_params.py -------------------------------------------------------------------------------- /stripe/params/_account_person_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_account_person_create_params.py -------------------------------------------------------------------------------- /stripe/params/_account_person_delete_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_account_person_delete_params.py -------------------------------------------------------------------------------- /stripe/params/_account_person_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_account_person_list_params.py -------------------------------------------------------------------------------- /stripe/params/_account_person_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_account_person_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_account_person_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_account_person_update_params.py -------------------------------------------------------------------------------- /stripe/params/_account_persons_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_account_persons_params.py -------------------------------------------------------------------------------- /stripe/params/_account_reject_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_account_reject_params.py -------------------------------------------------------------------------------- /stripe/params/_account_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_account_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_account_retrieve_person_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_account_retrieve_person_params.py -------------------------------------------------------------------------------- /stripe/params/_account_session_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_account_session_create_params.py -------------------------------------------------------------------------------- /stripe/params/_account_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_account_update_params.py -------------------------------------------------------------------------------- /stripe/params/_apple_pay_domain_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_apple_pay_domain_create_params.py -------------------------------------------------------------------------------- /stripe/params/_apple_pay_domain_delete_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_apple_pay_domain_delete_params.py -------------------------------------------------------------------------------- /stripe/params/_apple_pay_domain_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_apple_pay_domain_list_params.py -------------------------------------------------------------------------------- /stripe/params/_application_fee_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_application_fee_list_params.py -------------------------------------------------------------------------------- /stripe/params/_application_fee_refund_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_application_fee_refund_params.py -------------------------------------------------------------------------------- /stripe/params/_balance_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_balance_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_balance_settings_modify_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_balance_settings_modify_params.py -------------------------------------------------------------------------------- /stripe/params/_balance_settings_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_balance_settings_update_params.py -------------------------------------------------------------------------------- /stripe/params/_bank_account_delete_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_bank_account_delete_params.py -------------------------------------------------------------------------------- /stripe/params/_card_delete_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_card_delete_params.py -------------------------------------------------------------------------------- /stripe/params/_charge_capture_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_charge_capture_params.py -------------------------------------------------------------------------------- /stripe/params/_charge_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_charge_create_params.py -------------------------------------------------------------------------------- /stripe/params/_charge_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_charge_list_params.py -------------------------------------------------------------------------------- /stripe/params/_charge_list_refunds_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_charge_list_refunds_params.py -------------------------------------------------------------------------------- /stripe/params/_charge_modify_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_charge_modify_params.py -------------------------------------------------------------------------------- /stripe/params/_charge_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_charge_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_charge_retrieve_refund_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_charge_retrieve_refund_params.py -------------------------------------------------------------------------------- /stripe/params/_charge_search_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_charge_search_params.py -------------------------------------------------------------------------------- /stripe/params/_charge_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_charge_update_params.py -------------------------------------------------------------------------------- /stripe/params/_country_spec_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_country_spec_list_params.py -------------------------------------------------------------------------------- /stripe/params/_country_spec_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_country_spec_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_coupon_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_coupon_create_params.py -------------------------------------------------------------------------------- /stripe/params/_coupon_delete_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_coupon_delete_params.py -------------------------------------------------------------------------------- /stripe/params/_coupon_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_coupon_list_params.py -------------------------------------------------------------------------------- /stripe/params/_coupon_modify_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_coupon_modify_params.py -------------------------------------------------------------------------------- /stripe/params/_coupon_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_coupon_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_coupon_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_coupon_update_params.py -------------------------------------------------------------------------------- /stripe/params/_credit_note_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_credit_note_create_params.py -------------------------------------------------------------------------------- /stripe/params/_credit_note_list_lines_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_credit_note_list_lines_params.py -------------------------------------------------------------------------------- /stripe/params/_credit_note_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_credit_note_list_params.py -------------------------------------------------------------------------------- /stripe/params/_credit_note_modify_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_credit_note_modify_params.py -------------------------------------------------------------------------------- /stripe/params/_credit_note_preview_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_credit_note_preview_params.py -------------------------------------------------------------------------------- /stripe/params/_credit_note_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_credit_note_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_credit_note_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_credit_note_update_params.py -------------------------------------------------------------------------------- /stripe/params/_customer_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_customer_create_params.py -------------------------------------------------------------------------------- /stripe/params/_customer_create_source_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_customer_create_source_params.py -------------------------------------------------------------------------------- /stripe/params/_customer_create_tax_id_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_customer_create_tax_id_params.py -------------------------------------------------------------------------------- /stripe/params/_customer_delete_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_customer_delete_params.py -------------------------------------------------------------------------------- /stripe/params/_customer_delete_source_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_customer_delete_source_params.py -------------------------------------------------------------------------------- /stripe/params/_customer_delete_tax_id_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_customer_delete_tax_id_params.py -------------------------------------------------------------------------------- /stripe/params/_customer_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_customer_list_params.py -------------------------------------------------------------------------------- /stripe/params/_customer_list_sources_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_customer_list_sources_params.py -------------------------------------------------------------------------------- /stripe/params/_customer_list_tax_ids_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_customer_list_tax_ids_params.py -------------------------------------------------------------------------------- /stripe/params/_customer_modify_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_customer_modify_params.py -------------------------------------------------------------------------------- /stripe/params/_customer_modify_source_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_customer_modify_source_params.py -------------------------------------------------------------------------------- /stripe/params/_customer_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_customer_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_customer_search_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_customer_search_params.py -------------------------------------------------------------------------------- /stripe/params/_customer_session_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_customer_session_create_params.py -------------------------------------------------------------------------------- /stripe/params/_customer_tax_id_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_customer_tax_id_create_params.py -------------------------------------------------------------------------------- /stripe/params/_customer_tax_id_delete_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_customer_tax_id_delete_params.py -------------------------------------------------------------------------------- /stripe/params/_customer_tax_id_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_customer_tax_id_list_params.py -------------------------------------------------------------------------------- /stripe/params/_customer_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_customer_update_params.py -------------------------------------------------------------------------------- /stripe/params/_dispute_close_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_dispute_close_params.py -------------------------------------------------------------------------------- /stripe/params/_dispute_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_dispute_list_params.py -------------------------------------------------------------------------------- /stripe/params/_dispute_modify_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_dispute_modify_params.py -------------------------------------------------------------------------------- /stripe/params/_dispute_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_dispute_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_dispute_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_dispute_update_params.py -------------------------------------------------------------------------------- /stripe/params/_ephemeral_key_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_ephemeral_key_create_params.py -------------------------------------------------------------------------------- /stripe/params/_ephemeral_key_delete_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_ephemeral_key_delete_params.py -------------------------------------------------------------------------------- /stripe/params/_event_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_event_list_params.py -------------------------------------------------------------------------------- /stripe/params/_event_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_event_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_exchange_rate_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_exchange_rate_list_params.py -------------------------------------------------------------------------------- /stripe/params/_exchange_rate_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_exchange_rate_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_file_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_file_create_params.py -------------------------------------------------------------------------------- /stripe/params/_file_link_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_file_link_create_params.py -------------------------------------------------------------------------------- /stripe/params/_file_link_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_file_link_list_params.py -------------------------------------------------------------------------------- /stripe/params/_file_link_modify_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_file_link_modify_params.py -------------------------------------------------------------------------------- /stripe/params/_file_link_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_file_link_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_file_link_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_file_link_update_params.py -------------------------------------------------------------------------------- /stripe/params/_file_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_file_list_params.py -------------------------------------------------------------------------------- /stripe/params/_file_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_file_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_invoice_add_lines_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_invoice_add_lines_params.py -------------------------------------------------------------------------------- /stripe/params/_invoice_attach_payment_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_invoice_attach_payment_params.py -------------------------------------------------------------------------------- /stripe/params/_invoice_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_invoice_create_params.py -------------------------------------------------------------------------------- /stripe/params/_invoice_create_preview_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_invoice_create_preview_params.py -------------------------------------------------------------------------------- /stripe/params/_invoice_delete_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_invoice_delete_params.py -------------------------------------------------------------------------------- /stripe/params/_invoice_item_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_invoice_item_create_params.py -------------------------------------------------------------------------------- /stripe/params/_invoice_item_delete_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_invoice_item_delete_params.py -------------------------------------------------------------------------------- /stripe/params/_invoice_item_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_invoice_item_list_params.py -------------------------------------------------------------------------------- /stripe/params/_invoice_item_modify_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_invoice_item_modify_params.py -------------------------------------------------------------------------------- /stripe/params/_invoice_item_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_invoice_item_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_invoice_item_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_invoice_item_update_params.py -------------------------------------------------------------------------------- /stripe/params/_invoice_line_item_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_invoice_line_item_list_params.py -------------------------------------------------------------------------------- /stripe/params/_invoice_list_lines_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_invoice_list_lines_params.py -------------------------------------------------------------------------------- /stripe/params/_invoice_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_invoice_list_params.py -------------------------------------------------------------------------------- /stripe/params/_invoice_modify_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_invoice_modify_params.py -------------------------------------------------------------------------------- /stripe/params/_invoice_pay_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_invoice_pay_params.py -------------------------------------------------------------------------------- /stripe/params/_invoice_payment_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_invoice_payment_list_params.py -------------------------------------------------------------------------------- /stripe/params/_invoice_remove_lines_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_invoice_remove_lines_params.py -------------------------------------------------------------------------------- /stripe/params/_invoice_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_invoice_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_invoice_search_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_invoice_search_params.py -------------------------------------------------------------------------------- /stripe/params/_invoice_send_invoice_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_invoice_send_invoice_params.py -------------------------------------------------------------------------------- /stripe/params/_invoice_update_lines_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_invoice_update_lines_params.py -------------------------------------------------------------------------------- /stripe/params/_invoice_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_invoice_update_params.py -------------------------------------------------------------------------------- /stripe/params/_invoice_void_invoice_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_invoice_void_invoice_params.py -------------------------------------------------------------------------------- /stripe/params/_mandate_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_mandate_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_payment_intent_cancel_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_payment_intent_cancel_params.py -------------------------------------------------------------------------------- /stripe/params/_payment_intent_capture_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_payment_intent_capture_params.py -------------------------------------------------------------------------------- /stripe/params/_payment_intent_confirm_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_payment_intent_confirm_params.py -------------------------------------------------------------------------------- /stripe/params/_payment_intent_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_payment_intent_create_params.py -------------------------------------------------------------------------------- /stripe/params/_payment_intent_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_payment_intent_list_params.py -------------------------------------------------------------------------------- /stripe/params/_payment_intent_modify_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_payment_intent_modify_params.py -------------------------------------------------------------------------------- /stripe/params/_payment_intent_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_payment_intent_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_payment_intent_search_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_payment_intent_search_params.py -------------------------------------------------------------------------------- /stripe/params/_payment_intent_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_payment_intent_update_params.py -------------------------------------------------------------------------------- /stripe/params/_payment_link_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_payment_link_create_params.py -------------------------------------------------------------------------------- /stripe/params/_payment_link_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_payment_link_list_params.py -------------------------------------------------------------------------------- /stripe/params/_payment_link_modify_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_payment_link_modify_params.py -------------------------------------------------------------------------------- /stripe/params/_payment_link_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_payment_link_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_payment_link_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_payment_link_update_params.py -------------------------------------------------------------------------------- /stripe/params/_payment_method_attach_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_payment_method_attach_params.py -------------------------------------------------------------------------------- /stripe/params/_payment_method_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_payment_method_create_params.py -------------------------------------------------------------------------------- /stripe/params/_payment_method_detach_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_payment_method_detach_params.py -------------------------------------------------------------------------------- /stripe/params/_payment_method_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_payment_method_list_params.py -------------------------------------------------------------------------------- /stripe/params/_payment_method_modify_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_payment_method_modify_params.py -------------------------------------------------------------------------------- /stripe/params/_payment_method_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_payment_method_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_payment_method_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_payment_method_update_params.py -------------------------------------------------------------------------------- /stripe/params/_payment_record_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_payment_record_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_payout_cancel_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_payout_cancel_params.py -------------------------------------------------------------------------------- /stripe/params/_payout_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_payout_create_params.py -------------------------------------------------------------------------------- /stripe/params/_payout_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_payout_list_params.py -------------------------------------------------------------------------------- /stripe/params/_payout_modify_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_payout_modify_params.py -------------------------------------------------------------------------------- /stripe/params/_payout_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_payout_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_payout_reverse_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_payout_reverse_params.py -------------------------------------------------------------------------------- /stripe/params/_payout_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_payout_update_params.py -------------------------------------------------------------------------------- /stripe/params/_plan_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_plan_create_params.py -------------------------------------------------------------------------------- /stripe/params/_plan_delete_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_plan_delete_params.py -------------------------------------------------------------------------------- /stripe/params/_plan_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_plan_list_params.py -------------------------------------------------------------------------------- /stripe/params/_plan_modify_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_plan_modify_params.py -------------------------------------------------------------------------------- /stripe/params/_plan_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_plan_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_plan_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_plan_update_params.py -------------------------------------------------------------------------------- /stripe/params/_price_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_price_create_params.py -------------------------------------------------------------------------------- /stripe/params/_price_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_price_list_params.py -------------------------------------------------------------------------------- /stripe/params/_price_modify_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_price_modify_params.py -------------------------------------------------------------------------------- /stripe/params/_price_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_price_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_price_search_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_price_search_params.py -------------------------------------------------------------------------------- /stripe/params/_price_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_price_update_params.py -------------------------------------------------------------------------------- /stripe/params/_product_create_feature_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_product_create_feature_params.py -------------------------------------------------------------------------------- /stripe/params/_product_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_product_create_params.py -------------------------------------------------------------------------------- /stripe/params/_product_delete_feature_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_product_delete_feature_params.py -------------------------------------------------------------------------------- /stripe/params/_product_delete_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_product_delete_params.py -------------------------------------------------------------------------------- /stripe/params/_product_feature_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_product_feature_create_params.py -------------------------------------------------------------------------------- /stripe/params/_product_feature_delete_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_product_feature_delete_params.py -------------------------------------------------------------------------------- /stripe/params/_product_feature_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_product_feature_list_params.py -------------------------------------------------------------------------------- /stripe/params/_product_list_features_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_product_list_features_params.py -------------------------------------------------------------------------------- /stripe/params/_product_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_product_list_params.py -------------------------------------------------------------------------------- /stripe/params/_product_modify_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_product_modify_params.py -------------------------------------------------------------------------------- /stripe/params/_product_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_product_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_product_search_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_product_search_params.py -------------------------------------------------------------------------------- /stripe/params/_product_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_product_update_params.py -------------------------------------------------------------------------------- /stripe/params/_promotion_code_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_promotion_code_create_params.py -------------------------------------------------------------------------------- /stripe/params/_promotion_code_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_promotion_code_list_params.py -------------------------------------------------------------------------------- /stripe/params/_promotion_code_modify_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_promotion_code_modify_params.py -------------------------------------------------------------------------------- /stripe/params/_promotion_code_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_promotion_code_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_promotion_code_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_promotion_code_update_params.py -------------------------------------------------------------------------------- /stripe/params/_quote_accept_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_quote_accept_params.py -------------------------------------------------------------------------------- /stripe/params/_quote_cancel_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_quote_cancel_params.py -------------------------------------------------------------------------------- /stripe/params/_quote_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_quote_create_params.py -------------------------------------------------------------------------------- /stripe/params/_quote_finalize_quote_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_quote_finalize_quote_params.py -------------------------------------------------------------------------------- /stripe/params/_quote_line_item_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_quote_line_item_list_params.py -------------------------------------------------------------------------------- /stripe/params/_quote_list_line_items_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_quote_list_line_items_params.py -------------------------------------------------------------------------------- /stripe/params/_quote_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_quote_list_params.py -------------------------------------------------------------------------------- /stripe/params/_quote_modify_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_quote_modify_params.py -------------------------------------------------------------------------------- /stripe/params/_quote_pdf_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_quote_pdf_params.py -------------------------------------------------------------------------------- /stripe/params/_quote_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_quote_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_quote_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_quote_update_params.py -------------------------------------------------------------------------------- /stripe/params/_refund_cancel_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_refund_cancel_params.py -------------------------------------------------------------------------------- /stripe/params/_refund_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_refund_create_params.py -------------------------------------------------------------------------------- /stripe/params/_refund_expire_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_refund_expire_params.py -------------------------------------------------------------------------------- /stripe/params/_refund_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_refund_list_params.py -------------------------------------------------------------------------------- /stripe/params/_refund_modify_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_refund_modify_params.py -------------------------------------------------------------------------------- /stripe/params/_refund_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_refund_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_refund_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_refund_update_params.py -------------------------------------------------------------------------------- /stripe/params/_review_approve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_review_approve_params.py -------------------------------------------------------------------------------- /stripe/params/_review_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_review_list_params.py -------------------------------------------------------------------------------- /stripe/params/_review_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_review_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_setup_attempt_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_setup_attempt_list_params.py -------------------------------------------------------------------------------- /stripe/params/_setup_intent_cancel_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_setup_intent_cancel_params.py -------------------------------------------------------------------------------- /stripe/params/_setup_intent_confirm_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_setup_intent_confirm_params.py -------------------------------------------------------------------------------- /stripe/params/_setup_intent_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_setup_intent_create_params.py -------------------------------------------------------------------------------- /stripe/params/_setup_intent_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_setup_intent_list_params.py -------------------------------------------------------------------------------- /stripe/params/_setup_intent_modify_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_setup_intent_modify_params.py -------------------------------------------------------------------------------- /stripe/params/_setup_intent_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_setup_intent_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_setup_intent_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_setup_intent_update_params.py -------------------------------------------------------------------------------- /stripe/params/_shipping_rate_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_shipping_rate_create_params.py -------------------------------------------------------------------------------- /stripe/params/_shipping_rate_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_shipping_rate_list_params.py -------------------------------------------------------------------------------- /stripe/params/_shipping_rate_modify_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_shipping_rate_modify_params.py -------------------------------------------------------------------------------- /stripe/params/_shipping_rate_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_shipping_rate_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_shipping_rate_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_shipping_rate_update_params.py -------------------------------------------------------------------------------- /stripe/params/_source_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_source_create_params.py -------------------------------------------------------------------------------- /stripe/params/_source_detach_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_source_detach_params.py -------------------------------------------------------------------------------- /stripe/params/_source_modify_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_source_modify_params.py -------------------------------------------------------------------------------- /stripe/params/_source_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_source_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_source_transaction_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_source_transaction_list_params.py -------------------------------------------------------------------------------- /stripe/params/_source_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_source_update_params.py -------------------------------------------------------------------------------- /stripe/params/_source_verify_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_source_verify_params.py -------------------------------------------------------------------------------- /stripe/params/_subscription_cancel_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_subscription_cancel_params.py -------------------------------------------------------------------------------- /stripe/params/_subscription_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_subscription_create_params.py -------------------------------------------------------------------------------- /stripe/params/_subscription_item_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_subscription_item_list_params.py -------------------------------------------------------------------------------- /stripe/params/_subscription_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_subscription_list_params.py -------------------------------------------------------------------------------- /stripe/params/_subscription_migrate_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_subscription_migrate_params.py -------------------------------------------------------------------------------- /stripe/params/_subscription_modify_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_subscription_modify_params.py -------------------------------------------------------------------------------- /stripe/params/_subscription_resume_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_subscription_resume_params.py -------------------------------------------------------------------------------- /stripe/params/_subscription_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_subscription_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_subscription_search_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_subscription_search_params.py -------------------------------------------------------------------------------- /stripe/params/_subscription_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_subscription_update_params.py -------------------------------------------------------------------------------- /stripe/params/_tax_code_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_tax_code_list_params.py -------------------------------------------------------------------------------- /stripe/params/_tax_code_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_tax_code_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_tax_id_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_tax_id_create_params.py -------------------------------------------------------------------------------- /stripe/params/_tax_id_delete_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_tax_id_delete_params.py -------------------------------------------------------------------------------- /stripe/params/_tax_id_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_tax_id_list_params.py -------------------------------------------------------------------------------- /stripe/params/_tax_id_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_tax_id_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_tax_rate_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_tax_rate_create_params.py -------------------------------------------------------------------------------- /stripe/params/_tax_rate_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_tax_rate_list_params.py -------------------------------------------------------------------------------- /stripe/params/_tax_rate_modify_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_tax_rate_modify_params.py -------------------------------------------------------------------------------- /stripe/params/_tax_rate_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_tax_rate_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_tax_rate_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_tax_rate_update_params.py -------------------------------------------------------------------------------- /stripe/params/_token_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_token_create_params.py -------------------------------------------------------------------------------- /stripe/params/_token_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_token_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_topup_cancel_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_topup_cancel_params.py -------------------------------------------------------------------------------- /stripe/params/_topup_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_topup_create_params.py -------------------------------------------------------------------------------- /stripe/params/_topup_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_topup_list_params.py -------------------------------------------------------------------------------- /stripe/params/_topup_modify_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_topup_modify_params.py -------------------------------------------------------------------------------- /stripe/params/_topup_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_topup_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_topup_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_topup_update_params.py -------------------------------------------------------------------------------- /stripe/params/_transfer_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_transfer_create_params.py -------------------------------------------------------------------------------- /stripe/params/_transfer_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_transfer_list_params.py -------------------------------------------------------------------------------- /stripe/params/_transfer_list_reversals_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_transfer_list_reversals_params.py -------------------------------------------------------------------------------- /stripe/params/_transfer_modify_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_transfer_modify_params.py -------------------------------------------------------------------------------- /stripe/params/_transfer_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_transfer_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/_transfer_reversal_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_transfer_reversal_list_params.py -------------------------------------------------------------------------------- /stripe/params/_transfer_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_transfer_update_params.py -------------------------------------------------------------------------------- /stripe/params/_webhook_endpoint_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_webhook_endpoint_create_params.py -------------------------------------------------------------------------------- /stripe/params/_webhook_endpoint_delete_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_webhook_endpoint_delete_params.py -------------------------------------------------------------------------------- /stripe/params/_webhook_endpoint_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_webhook_endpoint_list_params.py -------------------------------------------------------------------------------- /stripe/params/_webhook_endpoint_modify_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_webhook_endpoint_modify_params.py -------------------------------------------------------------------------------- /stripe/params/_webhook_endpoint_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/_webhook_endpoint_update_params.py -------------------------------------------------------------------------------- /stripe/params/apps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/apps/__init__.py -------------------------------------------------------------------------------- /stripe/params/apps/_secret_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/apps/_secret_create_params.py -------------------------------------------------------------------------------- /stripe/params/apps/_secret_find_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/apps/_secret_find_params.py -------------------------------------------------------------------------------- /stripe/params/apps/_secret_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/apps/_secret_list_params.py -------------------------------------------------------------------------------- /stripe/params/billing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/billing/__init__.py -------------------------------------------------------------------------------- /stripe/params/billing/_alert_activate_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/billing/_alert_activate_params.py -------------------------------------------------------------------------------- /stripe/params/billing/_alert_archive_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/billing/_alert_archive_params.py -------------------------------------------------------------------------------- /stripe/params/billing/_alert_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/billing/_alert_create_params.py -------------------------------------------------------------------------------- /stripe/params/billing/_alert_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/billing/_alert_list_params.py -------------------------------------------------------------------------------- /stripe/params/billing/_alert_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/billing/_alert_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/billing/_meter_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/billing/_meter_create_params.py -------------------------------------------------------------------------------- /stripe/params/billing/_meter_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/billing/_meter_list_params.py -------------------------------------------------------------------------------- /stripe/params/billing/_meter_modify_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/billing/_meter_modify_params.py -------------------------------------------------------------------------------- /stripe/params/billing/_meter_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/billing/_meter_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/billing/_meter_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/billing/_meter_update_params.py -------------------------------------------------------------------------------- /stripe/params/billing_portal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/billing_portal/__init__.py -------------------------------------------------------------------------------- /stripe/params/checkout/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/checkout/__init__.py -------------------------------------------------------------------------------- /stripe/params/checkout/_session_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/checkout/_session_create_params.py -------------------------------------------------------------------------------- /stripe/params/checkout/_session_expire_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/checkout/_session_expire_params.py -------------------------------------------------------------------------------- /stripe/params/checkout/_session_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/checkout/_session_list_params.py -------------------------------------------------------------------------------- /stripe/params/checkout/_session_modify_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/checkout/_session_modify_params.py -------------------------------------------------------------------------------- /stripe/params/checkout/_session_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/checkout/_session_update_params.py -------------------------------------------------------------------------------- /stripe/params/climate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/climate/__init__.py -------------------------------------------------------------------------------- /stripe/params/climate/_order_cancel_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/climate/_order_cancel_params.py -------------------------------------------------------------------------------- /stripe/params/climate/_order_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/climate/_order_create_params.py -------------------------------------------------------------------------------- /stripe/params/climate/_order_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/climate/_order_list_params.py -------------------------------------------------------------------------------- /stripe/params/climate/_order_modify_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/climate/_order_modify_params.py -------------------------------------------------------------------------------- /stripe/params/climate/_order_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/climate/_order_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/climate/_order_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/climate/_order_update_params.py -------------------------------------------------------------------------------- /stripe/params/climate/_product_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/climate/_product_list_params.py -------------------------------------------------------------------------------- /stripe/params/climate/_supplier_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/climate/_supplier_list_params.py -------------------------------------------------------------------------------- /stripe/params/entitlements/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/entitlements/__init__.py -------------------------------------------------------------------------------- /stripe/params/financial_connections/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/financial_connections/__init__.py -------------------------------------------------------------------------------- /stripe/params/forwarding/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/forwarding/__init__.py -------------------------------------------------------------------------------- /stripe/params/forwarding/_request_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/forwarding/_request_list_params.py -------------------------------------------------------------------------------- /stripe/params/identity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/identity/__init__.py -------------------------------------------------------------------------------- /stripe/params/issuing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/issuing/__init__.py -------------------------------------------------------------------------------- /stripe/params/issuing/_card_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/issuing/_card_create_params.py -------------------------------------------------------------------------------- /stripe/params/issuing/_card_fail_card_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/issuing/_card_fail_card_params.py -------------------------------------------------------------------------------- /stripe/params/issuing/_card_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/issuing/_card_list_params.py -------------------------------------------------------------------------------- /stripe/params/issuing/_card_modify_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/issuing/_card_modify_params.py -------------------------------------------------------------------------------- /stripe/params/issuing/_card_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/issuing/_card_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/issuing/_card_ship_card_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/issuing/_card_ship_card_params.py -------------------------------------------------------------------------------- /stripe/params/issuing/_card_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/issuing/_card_update_params.py -------------------------------------------------------------------------------- /stripe/params/issuing/_cardholder_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/issuing/_cardholder_list_params.py -------------------------------------------------------------------------------- /stripe/params/issuing/_dispute_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/issuing/_dispute_create_params.py -------------------------------------------------------------------------------- /stripe/params/issuing/_dispute_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/issuing/_dispute_list_params.py -------------------------------------------------------------------------------- /stripe/params/issuing/_dispute_modify_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/issuing/_dispute_modify_params.py -------------------------------------------------------------------------------- /stripe/params/issuing/_dispute_submit_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/issuing/_dispute_submit_params.py -------------------------------------------------------------------------------- /stripe/params/issuing/_dispute_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/issuing/_dispute_update_params.py -------------------------------------------------------------------------------- /stripe/params/issuing/_token_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/issuing/_token_list_params.py -------------------------------------------------------------------------------- /stripe/params/issuing/_token_modify_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/issuing/_token_modify_params.py -------------------------------------------------------------------------------- /stripe/params/issuing/_token_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/issuing/_token_update_params.py -------------------------------------------------------------------------------- /stripe/params/radar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/radar/__init__.py -------------------------------------------------------------------------------- /stripe/params/radar/_value_list_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/radar/_value_list_list_params.py -------------------------------------------------------------------------------- /stripe/params/reporting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/reporting/__init__.py -------------------------------------------------------------------------------- /stripe/params/sigma/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/sigma/__init__.py -------------------------------------------------------------------------------- /stripe/params/tax/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/tax/__init__.py -------------------------------------------------------------------------------- /stripe/params/tax/_association_find_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/tax/_association_find_params.py -------------------------------------------------------------------------------- /stripe/params/tax/_registration_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/tax/_registration_list_params.py -------------------------------------------------------------------------------- /stripe/params/tax/_settings_modify_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/tax/_settings_modify_params.py -------------------------------------------------------------------------------- /stripe/params/tax/_settings_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/tax/_settings_retrieve_params.py -------------------------------------------------------------------------------- /stripe/params/tax/_settings_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/tax/_settings_update_params.py -------------------------------------------------------------------------------- /stripe/params/terminal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/terminal/__init__.py -------------------------------------------------------------------------------- /stripe/params/terminal/_reader_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/terminal/_reader_list_params.py -------------------------------------------------------------------------------- /stripe/params/test_helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/test_helpers/__init__.py -------------------------------------------------------------------------------- /stripe/params/test_helpers/issuing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/test_helpers/issuing/__init__.py -------------------------------------------------------------------------------- /stripe/params/treasury/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/treasury/__init__.py -------------------------------------------------------------------------------- /stripe/params/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/v2/__init__.py -------------------------------------------------------------------------------- /stripe/params/v2/billing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/v2/billing/__init__.py -------------------------------------------------------------------------------- /stripe/params/v2/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/v2/core/__init__.py -------------------------------------------------------------------------------- /stripe/params/v2/core/_event_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/params/v2/core/_event_list_params.py -------------------------------------------------------------------------------- /stripe/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stripe/radar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/radar/__init__.py -------------------------------------------------------------------------------- /stripe/radar/_early_fraud_warning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/radar/_early_fraud_warning.py -------------------------------------------------------------------------------- /stripe/radar/_early_fraud_warning_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/radar/_early_fraud_warning_service.py -------------------------------------------------------------------------------- /stripe/radar/_value_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/radar/_value_list.py -------------------------------------------------------------------------------- /stripe/radar/_value_list_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/radar/_value_list_item.py -------------------------------------------------------------------------------- /stripe/radar/_value_list_item_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/radar/_value_list_item_service.py -------------------------------------------------------------------------------- /stripe/radar/_value_list_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/radar/_value_list_service.py -------------------------------------------------------------------------------- /stripe/reporting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/reporting/__init__.py -------------------------------------------------------------------------------- /stripe/reporting/_report_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/reporting/_report_run.py -------------------------------------------------------------------------------- /stripe/reporting/_report_run_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/reporting/_report_run_service.py -------------------------------------------------------------------------------- /stripe/reporting/_report_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/reporting/_report_type.py -------------------------------------------------------------------------------- /stripe/reporting/_report_type_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/reporting/_report_type_service.py -------------------------------------------------------------------------------- /stripe/sigma/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/sigma/__init__.py -------------------------------------------------------------------------------- /stripe/sigma/_scheduled_query_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/sigma/_scheduled_query_run.py -------------------------------------------------------------------------------- /stripe/sigma/_scheduled_query_run_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/sigma/_scheduled_query_run_service.py -------------------------------------------------------------------------------- /stripe/tax/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/tax/__init__.py -------------------------------------------------------------------------------- /stripe/tax/_association.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/tax/_association.py -------------------------------------------------------------------------------- /stripe/tax/_association_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/tax/_association_service.py -------------------------------------------------------------------------------- /stripe/tax/_calculation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/tax/_calculation.py -------------------------------------------------------------------------------- /stripe/tax/_calculation_line_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/tax/_calculation_line_item.py -------------------------------------------------------------------------------- /stripe/tax/_calculation_line_item_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/tax/_calculation_line_item_service.py -------------------------------------------------------------------------------- /stripe/tax/_calculation_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/tax/_calculation_service.py -------------------------------------------------------------------------------- /stripe/tax/_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/tax/_registration.py -------------------------------------------------------------------------------- /stripe/tax/_registration_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/tax/_registration_service.py -------------------------------------------------------------------------------- /stripe/tax/_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/tax/_settings.py -------------------------------------------------------------------------------- /stripe/tax/_settings_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/tax/_settings_service.py -------------------------------------------------------------------------------- /stripe/tax/_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/tax/_transaction.py -------------------------------------------------------------------------------- /stripe/tax/_transaction_line_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/tax/_transaction_line_item.py -------------------------------------------------------------------------------- /stripe/tax/_transaction_line_item_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/tax/_transaction_line_item_service.py -------------------------------------------------------------------------------- /stripe/tax/_transaction_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/tax/_transaction_service.py -------------------------------------------------------------------------------- /stripe/terminal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/terminal/__init__.py -------------------------------------------------------------------------------- /stripe/terminal/_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/terminal/_configuration.py -------------------------------------------------------------------------------- /stripe/terminal/_configuration_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/terminal/_configuration_service.py -------------------------------------------------------------------------------- /stripe/terminal/_connection_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/terminal/_connection_token.py -------------------------------------------------------------------------------- /stripe/terminal/_connection_token_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/terminal/_connection_token_service.py -------------------------------------------------------------------------------- /stripe/terminal/_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/terminal/_location.py -------------------------------------------------------------------------------- /stripe/terminal/_location_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/terminal/_location_service.py -------------------------------------------------------------------------------- /stripe/terminal/_onboarding_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/terminal/_onboarding_link.py -------------------------------------------------------------------------------- /stripe/terminal/_onboarding_link_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/terminal/_onboarding_link_service.py -------------------------------------------------------------------------------- /stripe/terminal/_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/terminal/_reader.py -------------------------------------------------------------------------------- /stripe/terminal/_reader_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/terminal/_reader_service.py -------------------------------------------------------------------------------- /stripe/test_helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/test_helpers/__init__.py -------------------------------------------------------------------------------- /stripe/test_helpers/_customer_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/test_helpers/_customer_service.py -------------------------------------------------------------------------------- /stripe/test_helpers/_issuing_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/test_helpers/_issuing_service.py -------------------------------------------------------------------------------- /stripe/test_helpers/_refund_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/test_helpers/_refund_service.py -------------------------------------------------------------------------------- /stripe/test_helpers/_terminal_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/test_helpers/_terminal_service.py -------------------------------------------------------------------------------- /stripe/test_helpers/_test_clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/test_helpers/_test_clock.py -------------------------------------------------------------------------------- /stripe/test_helpers/_test_clock_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/test_helpers/_test_clock_service.py -------------------------------------------------------------------------------- /stripe/test_helpers/_treasury_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/test_helpers/_treasury_service.py -------------------------------------------------------------------------------- /stripe/test_helpers/issuing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/test_helpers/issuing/__init__.py -------------------------------------------------------------------------------- /stripe/test_helpers/issuing/_card_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/test_helpers/issuing/_card_service.py -------------------------------------------------------------------------------- /stripe/test_helpers/terminal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/test_helpers/terminal/__init__.py -------------------------------------------------------------------------------- /stripe/test_helpers/treasury/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/test_helpers/treasury/__init__.py -------------------------------------------------------------------------------- /stripe/treasury/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/treasury/__init__.py -------------------------------------------------------------------------------- /stripe/treasury/_credit_reversal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/treasury/_credit_reversal.py -------------------------------------------------------------------------------- /stripe/treasury/_credit_reversal_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/treasury/_credit_reversal_service.py -------------------------------------------------------------------------------- /stripe/treasury/_debit_reversal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/treasury/_debit_reversal.py -------------------------------------------------------------------------------- /stripe/treasury/_debit_reversal_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/treasury/_debit_reversal_service.py -------------------------------------------------------------------------------- /stripe/treasury/_financial_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/treasury/_financial_account.py -------------------------------------------------------------------------------- /stripe/treasury/_financial_account_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/treasury/_financial_account_features.py -------------------------------------------------------------------------------- /stripe/treasury/_financial_account_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/treasury/_financial_account_service.py -------------------------------------------------------------------------------- /stripe/treasury/_inbound_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/treasury/_inbound_transfer.py -------------------------------------------------------------------------------- /stripe/treasury/_inbound_transfer_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/treasury/_inbound_transfer_service.py -------------------------------------------------------------------------------- /stripe/treasury/_outbound_payment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/treasury/_outbound_payment.py -------------------------------------------------------------------------------- /stripe/treasury/_outbound_payment_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/treasury/_outbound_payment_service.py -------------------------------------------------------------------------------- /stripe/treasury/_outbound_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/treasury/_outbound_transfer.py -------------------------------------------------------------------------------- /stripe/treasury/_outbound_transfer_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/treasury/_outbound_transfer_service.py -------------------------------------------------------------------------------- /stripe/treasury/_received_credit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/treasury/_received_credit.py -------------------------------------------------------------------------------- /stripe/treasury/_received_credit_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/treasury/_received_credit_service.py -------------------------------------------------------------------------------- /stripe/treasury/_received_debit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/treasury/_received_debit.py -------------------------------------------------------------------------------- /stripe/treasury/_received_debit_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/treasury/_received_debit_service.py -------------------------------------------------------------------------------- /stripe/treasury/_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/treasury/_transaction.py -------------------------------------------------------------------------------- /stripe/treasury/_transaction_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/treasury/_transaction_entry.py -------------------------------------------------------------------------------- /stripe/treasury/_transaction_entry_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/treasury/_transaction_entry_service.py -------------------------------------------------------------------------------- /stripe/treasury/_transaction_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/treasury/_transaction_service.py -------------------------------------------------------------------------------- /stripe/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/v2/__init__.py -------------------------------------------------------------------------------- /stripe/v2/_amount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/v2/_amount.py -------------------------------------------------------------------------------- /stripe/v2/_billing_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/v2/_billing_service.py -------------------------------------------------------------------------------- /stripe/v2/_core_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/v2/_core_service.py -------------------------------------------------------------------------------- /stripe/v2/_deleted_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/v2/_deleted_object.py -------------------------------------------------------------------------------- /stripe/v2/_list_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/v2/_list_object.py -------------------------------------------------------------------------------- /stripe/v2/billing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/v2/billing/__init__.py -------------------------------------------------------------------------------- /stripe/v2/billing/_meter_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/v2/billing/_meter_event.py -------------------------------------------------------------------------------- /stripe/v2/billing/_meter_event_adjustment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/v2/billing/_meter_event_adjustment.py -------------------------------------------------------------------------------- /stripe/v2/billing/_meter_event_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/v2/billing/_meter_event_service.py -------------------------------------------------------------------------------- /stripe/v2/billing/_meter_event_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/v2/billing/_meter_event_session.py -------------------------------------------------------------------------------- /stripe/v2/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/v2/core/__init__.py -------------------------------------------------------------------------------- /stripe/v2/core/_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/v2/core/_event.py -------------------------------------------------------------------------------- /stripe/v2/core/_event_destination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/v2/core/_event_destination.py -------------------------------------------------------------------------------- /stripe/v2/core/_event_destination_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/v2/core/_event_destination_service.py -------------------------------------------------------------------------------- /stripe/v2/core/_event_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/stripe/v2/core/_event_service.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api_resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api_resources/abstract/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api_resources/billing_portal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api_resources/checkout/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api_resources/checkout/test_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/checkout/test_session.py -------------------------------------------------------------------------------- /tests/api_resources/issuing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api_resources/issuing/test_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/issuing/test_card.py -------------------------------------------------------------------------------- /tests/api_resources/issuing/test_cardholder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/issuing/test_cardholder.py -------------------------------------------------------------------------------- /tests/api_resources/issuing/test_dispute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/issuing/test_dispute.py -------------------------------------------------------------------------------- /tests/api_resources/radar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api_resources/radar/test_value_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/radar/test_value_list.py -------------------------------------------------------------------------------- /tests/api_resources/reporting/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api_resources/sigma/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api_resources/terminal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api_resources/terminal/test_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/terminal/test_location.py -------------------------------------------------------------------------------- /tests/api_resources/terminal/test_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/terminal/test_reader.py -------------------------------------------------------------------------------- /tests/api_resources/test_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_account.py -------------------------------------------------------------------------------- /tests/api_resources/test_account_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_account_link.py -------------------------------------------------------------------------------- /tests/api_resources/test_apple_pay_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_apple_pay_domain.py -------------------------------------------------------------------------------- /tests/api_resources/test_application_fee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_application_fee.py -------------------------------------------------------------------------------- /tests/api_resources/test_balance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_balance.py -------------------------------------------------------------------------------- /tests/api_resources/test_bank_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_bank_account.py -------------------------------------------------------------------------------- /tests/api_resources/test_capability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_capability.py -------------------------------------------------------------------------------- /tests/api_resources/test_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_card.py -------------------------------------------------------------------------------- /tests/api_resources/test_charge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_charge.py -------------------------------------------------------------------------------- /tests/api_resources/test_country_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_country_spec.py -------------------------------------------------------------------------------- /tests/api_resources/test_coupon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_coupon.py -------------------------------------------------------------------------------- /tests/api_resources/test_credit_note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_credit_note.py -------------------------------------------------------------------------------- /tests/api_resources/test_customer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_customer.py -------------------------------------------------------------------------------- /tests/api_resources/test_dispute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_dispute.py -------------------------------------------------------------------------------- /tests/api_resources/test_ephemeral_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_ephemeral_key.py -------------------------------------------------------------------------------- /tests/api_resources/test_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_event.py -------------------------------------------------------------------------------- /tests/api_resources/test_exchange_rate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_exchange_rate.py -------------------------------------------------------------------------------- /tests/api_resources/test_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_file.py -------------------------------------------------------------------------------- /tests/api_resources/test_file_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_file_link.py -------------------------------------------------------------------------------- /tests/api_resources/test_file_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_file_upload.py -------------------------------------------------------------------------------- /tests/api_resources/test_invoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_invoice.py -------------------------------------------------------------------------------- /tests/api_resources/test_invoice_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_invoice_item.py -------------------------------------------------------------------------------- /tests/api_resources/test_invoice_line_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_invoice_line_item.py -------------------------------------------------------------------------------- /tests/api_resources/test_list_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_list_object.py -------------------------------------------------------------------------------- /tests/api_resources/test_list_object_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_list_object_v2.py -------------------------------------------------------------------------------- /tests/api_resources/test_mandate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_mandate.py -------------------------------------------------------------------------------- /tests/api_resources/test_payment_intent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_payment_intent.py -------------------------------------------------------------------------------- /tests/api_resources/test_payment_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_payment_method.py -------------------------------------------------------------------------------- /tests/api_resources/test_payout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_payout.py -------------------------------------------------------------------------------- /tests/api_resources/test_person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_person.py -------------------------------------------------------------------------------- /tests/api_resources/test_plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_plan.py -------------------------------------------------------------------------------- /tests/api_resources/test_price.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_price.py -------------------------------------------------------------------------------- /tests/api_resources/test_product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_product.py -------------------------------------------------------------------------------- /tests/api_resources/test_quote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_quote.py -------------------------------------------------------------------------------- /tests/api_resources/test_refund.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_refund.py -------------------------------------------------------------------------------- /tests/api_resources/test_reversal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_reversal.py -------------------------------------------------------------------------------- /tests/api_resources/test_review.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_review.py -------------------------------------------------------------------------------- /tests/api_resources/test_setup_attempt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_setup_attempt.py -------------------------------------------------------------------------------- /tests/api_resources/test_setup_intent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_setup_intent.py -------------------------------------------------------------------------------- /tests/api_resources/test_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_source.py -------------------------------------------------------------------------------- /tests/api_resources/test_source_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_source_transaction.py -------------------------------------------------------------------------------- /tests/api_resources/test_subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_subscription.py -------------------------------------------------------------------------------- /tests/api_resources/test_subscription_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_subscription_item.py -------------------------------------------------------------------------------- /tests/api_resources/test_tax_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_tax_code.py -------------------------------------------------------------------------------- /tests/api_resources/test_tax_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_tax_id.py -------------------------------------------------------------------------------- /tests/api_resources/test_tax_rate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_tax_rate.py -------------------------------------------------------------------------------- /tests/api_resources/test_topup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_topup.py -------------------------------------------------------------------------------- /tests/api_resources/test_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_transfer.py -------------------------------------------------------------------------------- /tests/api_resources/test_webhook_endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/api_resources/test_webhook_endpoint.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/http_client_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/http_client_mock.py -------------------------------------------------------------------------------- /tests/openapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/openapi/README.md -------------------------------------------------------------------------------- /tests/request_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/request_mock.py -------------------------------------------------------------------------------- /tests/services/test_file_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/services/test_file_upload.py -------------------------------------------------------------------------------- /tests/services/test_oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/services/test_oauth.py -------------------------------------------------------------------------------- /tests/services/test_quote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/services/test_quote.py -------------------------------------------------------------------------------- /tests/stripe_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/stripe_mock.py -------------------------------------------------------------------------------- /tests/test_api_requestor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/test_api_requestor.py -------------------------------------------------------------------------------- /tests/test_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/test_error.py -------------------------------------------------------------------------------- /tests/test_exports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/test_exports.py -------------------------------------------------------------------------------- /tests/test_generated_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/test_generated_examples.py -------------------------------------------------------------------------------- /tests/test_http_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/test_http_client.py -------------------------------------------------------------------------------- /tests/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/test_integration.py -------------------------------------------------------------------------------- /tests/test_multipart_data_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/test_multipart_data_generator.py -------------------------------------------------------------------------------- /tests/test_oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/test_oauth.py -------------------------------------------------------------------------------- /tests/test_oauth_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/test_oauth_error.py -------------------------------------------------------------------------------- /tests/test_raw_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/test_raw_request.py -------------------------------------------------------------------------------- /tests/test_request_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/test_request_options.py -------------------------------------------------------------------------------- /tests/test_requestor_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/test_requestor_options.py -------------------------------------------------------------------------------- /tests/test_stripe_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/test_stripe_client.py -------------------------------------------------------------------------------- /tests/test_stripe_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/test_stripe_context.py -------------------------------------------------------------------------------- /tests/test_stripe_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/test_stripe_object.py -------------------------------------------------------------------------------- /tests/test_stripe_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/test_stripe_response.py -------------------------------------------------------------------------------- /tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/test_util.py -------------------------------------------------------------------------------- /tests/test_v2_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/test_v2_error.py -------------------------------------------------------------------------------- /tests/test_v2_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/test_v2_event.py -------------------------------------------------------------------------------- /tests/test_webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/stripe-python/HEAD/tests/test_webhook.py --------------------------------------------------------------------------------