stripe 18.1.0 → 18.2.0.pre.beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/stripe/api_requestor.rb +34 -0
- data/lib/stripe/api_version.rb +1 -2
- data/lib/stripe/errors.rb +63 -0
- data/lib/stripe/event_types.rb +213 -0
- data/lib/stripe/events/v2_core_account_closed_event.rb +44 -0
- data/lib/stripe/events/v2_core_account_created_event.rb +44 -0
- data/lib/stripe/events/v2_core_account_including_configuration_customer_capability_status_updated_event.rb +63 -0
- data/lib/stripe/events/v2_core_account_including_configuration_customer_updated_event.rb +44 -0
- data/lib/stripe/events/v2_core_account_including_configuration_merchant_capability_status_updated_event.rb +63 -0
- data/lib/stripe/events/v2_core_account_including_configuration_merchant_updated_event.rb +44 -0
- data/lib/stripe/events/v2_core_account_including_configuration_recipient_capability_status_updated_event.rb +63 -0
- data/lib/stripe/events/v2_core_account_including_configuration_recipient_updated_event.rb +44 -0
- data/lib/stripe/events/v2_core_account_including_configuration_storer_capability_status_updated_event.rb +63 -0
- data/lib/stripe/events/v2_core_account_including_configuration_storer_updated_event.rb +44 -0
- data/lib/stripe/events/v2_core_account_including_defaults_updated_event.rb +44 -0
- data/lib/stripe/events/v2_core_account_including_identity_updated_event.rb +44 -0
- data/lib/stripe/events/v2_core_account_including_requirements_updated_event.rb +44 -0
- data/lib/stripe/events/v2_core_account_link_returned_event.rb +42 -0
- data/lib/stripe/events/v2_core_account_person_created_event.rb +61 -0
- data/lib/stripe/events/v2_core_account_person_deleted_event.rb +61 -0
- data/lib/stripe/events/v2_core_account_person_updated_event.rb +61 -0
- data/lib/stripe/events/v2_core_account_updated_event.rb +44 -0
- data/lib/stripe/events/v2_core_health_event_generation_failure_resolved_event.rb +78 -0
- data/lib/stripe/events/v2_money_management_adjustment_created_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_financial_account_created_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_financial_account_updated_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_financial_address_activated_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_financial_address_failed_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_inbound_transfer_available_event.rb +61 -0
- data/lib/stripe/events/v2_money_management_inbound_transfer_bank_debit_failed_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_inbound_transfer_bank_debit_processing_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_inbound_transfer_bank_debit_queued_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_inbound_transfer_bank_debit_returned_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_inbound_transfer_bank_debit_succeeded_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_outbound_payment_canceled_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_outbound_payment_created_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_outbound_payment_failed_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_outbound_payment_posted_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_outbound_payment_returned_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_outbound_payment_updated_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_outbound_transfer_canceled_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_outbound_transfer_created_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_outbound_transfer_failed_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_outbound_transfer_posted_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_outbound_transfer_returned_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_outbound_transfer_updated_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_payout_method_created_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_payout_method_updated_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_received_credit_available_event.rb +61 -0
- data/lib/stripe/events/v2_money_management_received_credit_failed_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_received_credit_returned_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_received_credit_succeeded_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_received_debit_canceled_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_received_debit_failed_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_received_debit_pending_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_received_debit_succeeded_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_received_debit_updated_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_transaction_created_event.rb +61 -0
- data/lib/stripe/events/v2_money_management_transaction_updated_event.rb +44 -0
- data/lib/stripe/object_types.rb +52 -0
- data/lib/stripe/params/account_create_params.rb +304 -1
- data/lib/stripe/params/account_notice_list_params.rb +25 -0
- data/lib/stripe/params/account_notice_retrieve_params.rb +13 -0
- data/lib/stripe/params/account_notice_update_params.rb +36 -0
- data/lib/stripe/params/account_session_create_params.rb +226 -1
- data/lib/stripe/params/account_update_params.rb +266 -0
- data/lib/stripe/params/billing/analytics/meter_usage_retrieve_params.rb +65 -0
- data/lib/stripe/params/capital/financing_offer_list_params.rb +58 -0
- data/lib/stripe/params/capital/financing_offer_mark_delivered_params.rb +15 -0
- data/lib/stripe/params/capital/financing_offer_retrieve_params.rb +15 -0
- data/lib/stripe/params/capital/financing_summary_retrieve_params.rb +15 -0
- data/lib/stripe/params/capital/financing_transaction_list_params.rb +45 -0
- data/lib/stripe/params/capital/financing_transaction_retrieve_params.rb +15 -0
- data/lib/stripe/params/charge_capture_params.rb +1648 -0
- data/lib/stripe/params/charge_update_params.rb +1648 -0
- data/lib/stripe/params/checkout/session_create_params.rb +129 -3
- data/lib/stripe/params/checkout/session_update_params.rb +141 -1
- data/lib/stripe/params/confirmation_token_create_params.rb +77 -0
- data/lib/stripe/params/coupon_create_params.rb +17 -1
- data/lib/stripe/params/customer_session_create_params.rb +32 -1
- data/lib/stripe/params/dispute_update_params.rb +10 -1
- data/lib/stripe/params/external_account_create_params.rb +134 -0
- data/lib/stripe/params/external_account_delete_params.rb +6 -0
- data/lib/stripe/params/external_account_list_params.rb +25 -0
- data/lib/stripe/params/external_account_retrieve_params.rb +13 -0
- data/lib/stripe/params/external_account_update_params.rb +91 -0
- data/lib/stripe/params/financial_connections/account_inferred_balance_list_params.rb +24 -0
- data/lib/stripe/params/financial_connections/institution_list_params.rb +24 -0
- data/lib/stripe/params/financial_connections/institution_retrieve_params.rb +15 -0
- data/lib/stripe/params/financial_connections/session_create_params.rb +30 -1
- data/lib/stripe/params/fx_quote_create_params.rb +73 -0
- data/lib/stripe/params/fx_quote_list_params.rb +22 -0
- data/lib/stripe/params/fx_quote_retrieve_params.rb +13 -0
- data/lib/stripe/params/invoice_add_lines_params.rb +33 -1
- data/lib/stripe/params/invoice_attach_payment_params.rb +43 -1
- data/lib/stripe/params/invoice_create_params.rb +107 -2
- data/lib/stripe/params/invoice_create_preview_params.rb +822 -9
- data/lib/stripe/params/invoice_item_create_params.rb +33 -1
- data/lib/stripe/params/invoice_item_update_params.rb +33 -1
- data/lib/stripe/params/invoice_line_item_update_params.rb +33 -1
- data/lib/stripe/params/invoice_update_lines_params.rb +33 -1
- data/lib/stripe/params/invoice_update_params.rb +107 -2
- data/lib/stripe/params/issuing/cardholder_create_params.rb +2 -1
- data/lib/stripe/params/issuing/credit_underwriting_record_correct_params.rb +163 -0
- data/lib/stripe/params/issuing/credit_underwriting_record_create_from_application_params.rb +50 -0
- data/lib/stripe/params/issuing/credit_underwriting_record_create_from_proactive_review_params.rb +128 -0
- data/lib/stripe/params/issuing/credit_underwriting_record_list_params.rb +24 -0
- data/lib/stripe/params/issuing/credit_underwriting_record_report_decision_params.rb +86 -0
- data/lib/stripe/params/issuing/credit_underwriting_record_retrieve_params.rb +15 -0
- data/lib/stripe/params/issuing/dispute_settlement_detail_list_params.rb +33 -0
- data/lib/stripe/params/issuing/dispute_settlement_detail_retrieve_params.rb +15 -0
- data/lib/stripe/params/issuing/fraud_liability_debit_list_params.rb +44 -0
- data/lib/stripe/params/issuing/fraud_liability_debit_retrieve_params.rb +15 -0
- data/lib/stripe/params/issuing/transaction_list_params.rb +4 -0
- data/lib/stripe/params/mandate_list_params.rb +39 -0
- data/lib/stripe/params/margin_create_params.rb +25 -0
- data/lib/stripe/params/margin_list_params.rb +25 -0
- data/lib/stripe/params/margin_retrieve_params.rb +13 -0
- data/lib/stripe/params/margin_update_params.rb +22 -0
- data/lib/stripe/params/order_cancel_params.rb +13 -0
- data/lib/stripe/params/order_create_params.rb +2061 -0
- data/lib/stripe/params/order_line_item_list_params.rb +22 -0
- data/lib/stripe/params/order_list_line_items_params.rb +22 -0
- data/lib/stripe/params/order_list_params.rb +25 -0
- data/lib/stripe/params/order_reopen_params.rb +13 -0
- data/lib/stripe/params/order_retrieve_params.rb +13 -0
- data/lib/stripe/params/order_submit_params.rb +16 -0
- data/lib/stripe/params/order_update_params.rb +2065 -0
- data/lib/stripe/params/payment_intent_capture_params.rb +1627 -1
- data/lib/stripe/params/payment_intent_confirm_params.rb +2971 -11
- data/lib/stripe/params/payment_intent_create_params.rb +2971 -11
- data/lib/stripe/params/payment_intent_decrement_authorization_params.rb +73 -0
- data/lib/stripe/params/payment_intent_increment_authorization_params.rb +21 -0
- data/lib/stripe/params/payment_intent_trigger_action_params.rb +27 -0
- data/lib/stripe/params/payment_intent_update_params.rb +3003 -12
- data/lib/stripe/params/payment_method_configuration_create_params.rb +105 -0
- data/lib/stripe/params/payment_method_configuration_update_params.rb +105 -0
- data/lib/stripe/params/payment_method_create_params.rb +77 -0
- data/lib/stripe/params/price_update_params.rb +19 -0
- data/lib/stripe/params/privacy/redaction_job_cancel_params.rb +15 -0
- data/lib/stripe/params/privacy/redaction_job_create_params.rb +67 -0
- data/lib/stripe/params/privacy/redaction_job_list_params.rb +27 -0
- data/lib/stripe/params/privacy/redaction_job_retrieve_params.rb +15 -0
- data/lib/stripe/params/privacy/redaction_job_run_params.rb +15 -0
- data/lib/stripe/params/privacy/redaction_job_update_params.rb +18 -0
- data/lib/stripe/params/privacy/redaction_job_validate_params.rb +15 -0
- data/lib/stripe/params/privacy/redaction_job_validation_error_list_params.rb +24 -0
- data/lib/stripe/params/quote_create_params.rb +801 -3
- data/lib/stripe/params/quote_line_list_params.rb +22 -0
- data/lib/stripe/params/quote_list_lines_params.rb +22 -0
- data/lib/stripe/params/quote_list_params.rb +4 -0
- data/lib/stripe/params/quote_list_preview_invoice_lines_params.rb +22 -0
- data/lib/stripe/params/quote_mark_draft_params.rb +13 -0
- data/lib/stripe/params/quote_mark_stale_params.rb +16 -0
- data/lib/stripe/params/quote_preview_invoice_list_params.rb +22 -0
- data/lib/stripe/params/quote_preview_subscription_schedule_list_params.rb +22 -0
- data/lib/stripe/params/quote_reestimate_params.rb +13 -0
- data/lib/stripe/params/quote_update_params.rb +809 -4
- data/lib/stripe/params/reserve/hold_list_params.rb +53 -0
- data/lib/stripe/params/reserve/hold_retrieve_params.rb +15 -0
- data/lib/stripe/params/reserve/plan_retrieve_params.rb +15 -0
- data/lib/stripe/params/reserve/release_list_params.rb +41 -0
- data/lib/stripe/params/reserve/release_retrieve_params.rb +15 -0
- data/lib/stripe/params/setup_intent_confirm_params.rb +158 -3
- data/lib/stripe/params/setup_intent_create_params.rb +158 -3
- data/lib/stripe/params/setup_intent_update_params.rb +158 -3
- data/lib/stripe/params/subscription_attach_cadence_params.rb +16 -0
- data/lib/stripe/params/subscription_create_params.rb +254 -5
- data/lib/stripe/params/subscription_item_create_params.rb +46 -2
- data/lib/stripe/params/subscription_item_update_params.rb +29 -1
- data/lib/stripe/params/subscription_schedule_amend_params.rb +570 -0
- data/lib/stripe/params/subscription_schedule_create_params.rb +163 -5
- data/lib/stripe/params/subscription_schedule_update_params.rb +163 -5
- data/lib/stripe/params/subscription_update_params.rb +237 -4
- data/lib/stripe/params/tax/form_list_params.rb +51 -0
- data/lib/stripe/params/tax/form_pdf_params.rb +15 -0
- data/lib/stripe/params/tax/form_retrieve_params.rb +15 -0
- data/lib/stripe/params/terminal/configuration_create_params.rb +13 -0
- data/lib/stripe/params/terminal/configuration_update_params.rb +13 -0
- data/lib/stripe/params/terminal/reader_collected_data_retrieve_params.rb +15 -0
- data/lib/stripe/params/test_helpers/confirmation_token_create_params.rb +77 -0
- data/lib/stripe/params/test_helpers/treasury/received_credit_create_params.rb +25 -1
- data/lib/stripe/params/test_helpers/treasury/received_debit_create_params.rb +25 -1
- data/lib/stripe/params/transfer_create_params.rb +4 -0
- data/lib/stripe/params/treasury/financial_account_create_params.rb +8 -1
- data/lib/stripe/params/treasury/financial_account_features_update_params.rb +4 -1
- data/lib/stripe/params/treasury/financial_account_update_features_params.rb +4 -1
- data/lib/stripe/params/treasury/financial_account_update_params.rb +8 -1
- data/lib/stripe/params/treasury/outbound_transfer_create_params.rb +24 -0
- data/lib/stripe/params/treasury/received_credit_create_params.rb +25 -1
- data/lib/stripe/params/treasury/received_debit_create_params.rb +25 -1
- data/lib/stripe/params/v2/billing/bill_setting_create_params.rb +74 -0
- data/lib/stripe/params/v2/billing/bill_setting_list_params.rb +21 -0
- data/lib/stripe/params/v2/billing/bill_setting_retrieve_params.rb +10 -0
- data/lib/stripe/params/v2/billing/bill_setting_update_params.rb +80 -0
- data/lib/stripe/params/v2/billing/bill_settings/version_list_params.rb +19 -0
- data/lib/stripe/params/v2/billing/bill_settings/version_retrieve_params.rb +12 -0
- data/lib/stripe/params/v2/billing/cadence_cancel_params.rb +10 -0
- data/lib/stripe/params/v2/billing/cadence_create_params.rb +253 -0
- data/lib/stripe/params/v2/billing/cadence_list_params.rb +43 -0
- data/lib/stripe/params/v2/billing/cadence_retrieve_params.rb +17 -0
- data/lib/stripe/params/v2/billing/cadence_update_params.rb +75 -0
- data/lib/stripe/params/v2/billing/collection_setting_create_params.rb +223 -0
- data/lib/stripe/params/v2/billing/collection_setting_list_params.rb +21 -0
- data/lib/stripe/params/v2/billing/collection_setting_retrieve_params.rb +10 -0
- data/lib/stripe/params/v2/billing/collection_setting_update_params.rb +229 -0
- data/lib/stripe/params/v2/billing/collection_settings/version_list_params.rb +19 -0
- data/lib/stripe/params/v2/billing/collection_settings/version_retrieve_params.rb +12 -0
- data/lib/stripe/params/v2/billing/profile_create_params.rb +37 -0
- data/lib/stripe/params/v2/billing/profile_list_params.rb +40 -0
- data/lib/stripe/params/v2/billing/profile_retrieve_params.rb +10 -0
- data/lib/stripe/params/v2/billing/profile_update_params.rb +35 -0
- data/lib/stripe/params/v2/core/account_create_params.rb +251 -4
- data/lib/stripe/params/v2/core/account_token_create_params.rb +13 -1
- data/lib/stripe/params/v2/core/account_update_params.rb +243 -3
- data/lib/stripe/params/v2/core/vault/gb_bank_account_acknowledge_confirmation_of_payee_params.rb +12 -0
- data/lib/stripe/params/v2/core/vault/gb_bank_account_archive_params.rb +12 -0
- data/lib/stripe/params/v2/core/vault/gb_bank_account_create_params.rb +50 -0
- data/lib/stripe/params/v2/core/vault/gb_bank_account_initiate_confirmation_of_payee_params.rb +22 -0
- data/lib/stripe/params/v2/core/vault/gb_bank_account_list_params.rb +19 -0
- data/lib/stripe/params/v2/core/vault/gb_bank_account_retrieve_params.rb +12 -0
- data/lib/stripe/params/v2/core/vault/us_bank_account_archive_params.rb +12 -0
- data/lib/stripe/params/v2/core/vault/us_bank_account_confirm_microdeposits_params.rb +22 -0
- data/lib/stripe/params/v2/core/vault/us_bank_account_create_params.rb +33 -0
- data/lib/stripe/params/v2/core/vault/us_bank_account_list_params.rb +22 -0
- data/lib/stripe/params/v2/core/vault/us_bank_account_retrieve_params.rb +12 -0
- data/lib/stripe/params/v2/core/vault/us_bank_account_send_microdeposits_params.rb +12 -0
- data/lib/stripe/params/v2/core/vault/us_bank_account_update_params.rb +22 -0
- data/lib/stripe/params/v2/money_management/adjustment_list_params.rb +48 -0
- data/lib/stripe/params/v2/money_management/adjustment_retrieve_params.rb +10 -0
- data/lib/stripe/params/v2/money_management/financial_account_close_params.rb +28 -0
- data/lib/stripe/params/v2/money_management/financial_account_create_params.rb +34 -0
- data/lib/stripe/params/v2/money_management/financial_account_list_params.rb +20 -0
- data/lib/stripe/params/v2/money_management/financial_account_retrieve_params.rb +10 -0
- data/lib/stripe/params/v2/money_management/financial_account_update_params.rb +20 -0
- data/lib/stripe/params/v2/money_management/financial_address_create_params.rb +20 -0
- data/lib/stripe/params/v2/money_management/financial_address_list_params.rb +23 -0
- data/lib/stripe/params/v2/money_management/financial_address_retrieve_params.rb +17 -0
- data/lib/stripe/params/v2/money_management/inbound_transfer_create_params.rb +62 -0
- data/lib/stripe/params/v2/money_management/inbound_transfer_list_params.rb +44 -0
- data/lib/stripe/params/v2/money_management/inbound_transfer_retrieve_params.rb +10 -0
- data/lib/stripe/params/v2/money_management/outbound_payment_cancel_params.rb +10 -0
- data/lib/stripe/params/v2/money_management/outbound_payment_create_params.rb +110 -0
- data/lib/stripe/params/v2/money_management/outbound_payment_list_params.rb +52 -0
- data/lib/stripe/params/v2/money_management/outbound_payment_quote_create_params.rb +79 -0
- data/lib/stripe/params/v2/money_management/outbound_payment_quote_retrieve_params.rb +10 -0
- data/lib/stripe/params/v2/money_management/outbound_payment_retrieve_params.rb +10 -0
- data/lib/stripe/params/v2/money_management/outbound_setup_intent_cancel_params.rb +10 -0
- data/lib/stripe/params/v2/money_management/outbound_setup_intent_create_params.rb +85 -0
- data/lib/stripe/params/v2/money_management/outbound_setup_intent_list_params.rb +17 -0
- data/lib/stripe/params/v2/money_management/outbound_setup_intent_retrieve_params.rb +10 -0
- data/lib/stripe/params/v2/money_management/outbound_setup_intent_update_params.rb +80 -0
- data/lib/stripe/params/v2/money_management/outbound_transfer_cancel_params.rb +10 -0
- data/lib/stripe/params/v2/money_management/outbound_transfer_create_params.rb +89 -0
- data/lib/stripe/params/v2/money_management/outbound_transfer_list_params.rb +48 -0
- data/lib/stripe/params/v2/money_management/outbound_transfer_retrieve_params.rb +10 -0
- data/lib/stripe/params/v2/money_management/payout_method_archive_params.rb +10 -0
- data/lib/stripe/params/v2/money_management/payout_method_list_params.rb +31 -0
- data/lib/stripe/params/v2/money_management/payout_method_retrieve_params.rb +10 -0
- data/lib/stripe/params/v2/money_management/payout_method_unarchive_params.rb +10 -0
- data/lib/stripe/params/v2/money_management/payout_methods_bank_account_spec_retrieve_params.rb +17 -0
- data/lib/stripe/params/v2/money_management/received_credit_list_params.rb +44 -0
- data/lib/stripe/params/v2/money_management/received_credit_retrieve_params.rb +10 -0
- data/lib/stripe/params/v2/money_management/received_debit_list_params.rb +17 -0
- data/lib/stripe/params/v2/money_management/received_debit_retrieve_params.rb +10 -0
- data/lib/stripe/params/v2/money_management/transaction_entry_list_params.rb +43 -0
- data/lib/stripe/params/v2/money_management/transaction_entry_retrieve_params.rb +10 -0
- data/lib/stripe/params/v2/money_management/transaction_list_params.rb +47 -0
- data/lib/stripe/params/v2/money_management/transaction_retrieve_params.rb +10 -0
- data/lib/stripe/params/v2/test_helpers/financial_address_credit_params.rb +34 -0
- data/lib/stripe/params/v2/test_helpers/financial_address_generate_microdeposits_params.rb +10 -0
- data/lib/stripe/params.rb +151 -0
- data/lib/stripe/resources/account.rb +182 -1
- data/lib/stripe/resources/account_notice.rb +94 -0
- data/lib/stripe/resources/account_session.rb +81 -0
- data/lib/stripe/resources/billing/analytics/meter_usage.rb +33 -0
- data/lib/stripe/resources/billing/analytics/meter_usage_row.rb +38 -0
- data/lib/stripe/resources/capital/financing_offer.rb +142 -0
- data/lib/stripe/resources/capital/financing_summary.rb +82 -0
- data/lib/stripe/resources/capital/financing_transaction.rb +99 -0
- data/lib/stripe/resources/card.rb +2 -0
- data/lib/stripe/resources/charge.rb +215 -1
- data/lib/stripe/resources/checkout/session.rb +104 -4
- data/lib/stripe/resources/confirmation_token.rb +133 -0
- data/lib/stripe/resources/coupon.rb +26 -1
- data/lib/stripe/resources/credit_note_line_item.rb +18 -0
- data/lib/stripe/resources/customer_session.rb +36 -0
- data/lib/stripe/resources/dispute.rb +22 -0
- data/lib/stripe/resources/event.rb +64 -1
- data/lib/stripe/resources/financial_connections/account.rb +25 -0
- data/lib/stripe/resources/financial_connections/account_inferred_balance.rb +35 -0
- data/lib/stripe/resources/financial_connections/institution.rb +127 -0
- data/lib/stripe/resources/financial_connections/session.rb +65 -1
- data/lib/stripe/resources/fx_quote.rb +147 -0
- data/lib/stripe/resources/invoice.rb +150 -1
- data/lib/stripe/resources/invoice_item.rb +2 -0
- data/lib/stripe/resources/invoice_line_item.rb +40 -0
- data/lib/stripe/resources/issuing/credit_underwriting_record.rb +263 -0
- data/lib/stripe/resources/issuing/dispute_settlement_detail.rb +71 -0
- data/lib/stripe/resources/issuing/fraud_liability_debit.rb +51 -0
- data/lib/stripe/resources/issuing/settlement.rb +61 -0
- data/lib/stripe/resources/issuing/transaction.rb +2 -0
- data/lib/stripe/resources/line_item.rb +66 -1
- data/lib/stripe/resources/mandate.rb +43 -0
- data/lib/stripe/resources/margin.rb +64 -0
- data/lib/stripe/resources/order.rb +987 -0
- data/lib/stripe/resources/payment_attempt_record.rb +181 -1
- data/lib/stripe/resources/payment_intent.rb +737 -4
- data/lib/stripe/resources/payment_method.rb +135 -0
- data/lib/stripe/resources/payment_method_configuration.rb +170 -0
- data/lib/stripe/resources/payment_record.rb +181 -1
- data/lib/stripe/resources/price.rb +20 -0
- data/lib/stripe/resources/privacy/redaction_job.rb +187 -0
- data/lib/stripe/resources/privacy/redaction_job_validation_error.rb +49 -0
- data/lib/stripe/resources/quote.rb +569 -2
- data/lib/stripe/resources/quote_line.rb +521 -0
- data/lib/stripe/resources/quote_preview_invoice.rb +1182 -0
- data/lib/stripe/resources/quote_preview_subscription_schedule.rb +732 -0
- data/lib/stripe/resources/refund.rb +18 -0
- data/lib/stripe/resources/reserve/hold.rb +74 -0
- data/lib/stripe/resources/reserve/plan.rb +78 -0
- data/lib/stripe/resources/reserve/release.rb +77 -0
- data/lib/stripe/resources/setup_attempt.rb +48 -0
- data/lib/stripe/resources/setup_intent.rb +88 -1
- data/lib/stripe/resources/source.rb +38 -0
- data/lib/stripe/resources/subscription.rb +230 -0
- data/lib/stripe/resources/subscription_item.rb +20 -1
- data/lib/stripe/resources/subscription_schedule.rb +196 -3
- data/lib/stripe/resources/tax/form.rb +264 -0
- data/lib/stripe/resources/terminal/configuration.rb +16 -0
- data/lib/stripe/resources/terminal/reader.rb +8 -0
- data/lib/stripe/resources/terminal/reader_collected_data.rb +47 -0
- data/lib/stripe/resources/transfer.rb +2 -0
- data/lib/stripe/resources/treasury/financial_account.rb +2 -0
- data/lib/stripe/resources/treasury/financial_account_features.rb +2 -0
- data/lib/stripe/resources/treasury/outbound_transfer.rb +30 -0
- data/lib/stripe/resources/treasury/received_credit.rb +30 -0
- data/lib/stripe/resources/treasury/received_debit.rb +32 -0
- data/lib/stripe/resources/v2/billing/bill_setting.rb +102 -0
- data/lib/stripe/resources/v2/billing/bill_setting_version.rb +90 -0
- data/lib/stripe/resources/v2/billing/cadence.rb +609 -0
- data/lib/stripe/resources/v2/billing/collection_setting.rb +274 -0
- data/lib/stripe/resources/v2/billing/collection_setting_version.rb +262 -0
- data/lib/stripe/resources/v2/billing/profile.rb +46 -0
- data/lib/stripe/resources/v2/core/account.rb +565 -3
- data/lib/stripe/resources/v2/core/vault/gb_bank_account.rb +114 -0
- data/lib/stripe/resources/v2/core/vault/us_bank_account.rb +83 -0
- data/lib/stripe/resources/v2/financial_address_credit_simulation.rb +28 -0
- data/lib/stripe/resources/v2/financial_address_generated_microdeposits.rb +44 -0
- data/lib/stripe/resources/v2/money_management/adjustment.rb +82 -0
- data/lib/stripe/resources/v2/money_management/financial_account.rb +188 -0
- data/lib/stripe/resources/v2/money_management/financial_address.rb +132 -0
- data/lib/stripe/resources/v2/money_management/inbound_transfer.rb +197 -0
- data/lib/stripe/resources/v2/money_management/outbound_payment.rb +261 -0
- data/lib/stripe/resources/v2/money_management/outbound_payment_quote.rb +202 -0
- data/lib/stripe/resources/v2/money_management/outbound_setup_intent.rb +69 -0
- data/lib/stripe/resources/v2/money_management/outbound_transfer.rb +240 -0
- data/lib/stripe/resources/v2/money_management/payout_method.rb +111 -0
- data/lib/stripe/resources/v2/money_management/payout_methods_bank_account_spec.rb +81 -0
- data/lib/stripe/resources/v2/money_management/received_credit.rb +246 -0
- data/lib/stripe/resources/v2/money_management/received_debit.rb +152 -0
- data/lib/stripe/resources/v2/money_management/transaction.rb +180 -0
- data/lib/stripe/resources/v2/money_management/transaction_entry.rb +153 -0
- data/lib/stripe/resources.rb +104 -0
- data/lib/stripe/services/account_notice_service.rb +39 -0
- data/lib/stripe/services/billing/analytics/meter_usage_service.rb +21 -0
- data/lib/stripe/services/billing/analytics_service.rb +15 -0
- data/lib/stripe/services/billing_service.rb +2 -1
- data/lib/stripe/services/capital/financing_offer_service.rb +42 -0
- data/lib/stripe/services/capital/financing_summary_service.rb +19 -0
- data/lib/stripe/services/capital/financing_transaction_service.rb +31 -0
- data/lib/stripe/services/capital_service.rb +15 -0
- data/lib/stripe/services/external_account_service.rb +68 -0
- data/lib/stripe/services/financial_connections/account_inferred_balance_service.rb +19 -0
- data/lib/stripe/services/financial_connections/account_service.rb +3 -1
- data/lib/stripe/services/financial_connections/institution_service.rb +30 -0
- data/lib/stripe/services/financial_connections_service.rb +2 -1
- data/lib/stripe/services/fx_quote_service.rb +27 -0
- data/lib/stripe/services/issuing/credit_underwriting_record_service.rb +74 -0
- data/lib/stripe/services/issuing/dispute_settlement_detail_service.rb +30 -0
- data/lib/stripe/services/issuing/fraud_liability_debit_service.rb +30 -0
- data/lib/stripe/services/issuing_service.rb +5 -1
- data/lib/stripe/services/mandate_service.rb +5 -0
- data/lib/stripe/services/margin_service.rb +50 -0
- data/lib/stripe/services/order_line_item_service.rb +17 -0
- data/lib/stripe/services/order_service.rb +78 -0
- data/lib/stripe/services/payment_intent_service.rb +37 -0
- data/lib/stripe/services/privacy/redaction_job_service.rb +104 -0
- data/lib/stripe/services/privacy/redaction_job_validation_error_service.rb +19 -0
- data/lib/stripe/services/privacy_service.rb +13 -0
- data/lib/stripe/services/quote_line_service.rb +17 -0
- data/lib/stripe/services/quote_preview_invoice_service.rb +17 -0
- data/lib/stripe/services/quote_preview_subscription_schedule_service.rb +17 -0
- data/lib/stripe/services/quote_service.rb +49 -1
- data/lib/stripe/services/reserve/hold_service.rb +30 -0
- data/lib/stripe/services/reserve/plan_service.rb +19 -0
- data/lib/stripe/services/reserve/release_service.rb +30 -0
- data/lib/stripe/services/reserve_service.rb +15 -0
- data/lib/stripe/services/subscription_schedule_service.rb +11 -0
- data/lib/stripe/services/subscription_service.rb +11 -0
- data/lib/stripe/services/tax/form_service.rb +37 -0
- data/lib/stripe/services/tax_service.rb +2 -1
- data/lib/stripe/services/terminal/reader_collected_data_service.rb +19 -0
- data/lib/stripe/services/terminal_service.rb +2 -1
- data/lib/stripe/services/v1_services.rb +9 -1
- data/lib/stripe/services/v2/billing/bill_setting_service.rb +61 -0
- data/lib/stripe/services/v2/billing/bill_settings/version_service.rb +34 -0
- data/lib/stripe/services/v2/billing/cadence_service.rb +65 -0
- data/lib/stripe/services/v2/billing/collection_setting_service.rb +61 -0
- data/lib/stripe/services/v2/billing/collection_settings/version_service.rb +34 -0
- data/lib/stripe/services/v2/billing/profile_service.rb +54 -0
- data/lib/stripe/services/v2/billing_service.rb +5 -1
- data/lib/stripe/services/v2/core/vault/gb_bank_account_service.rb +85 -0
- data/lib/stripe/services/v2/core/vault/us_bank_account_service.rb +101 -0
- data/lib/stripe/services/v2/core/vault_service.rb +18 -0
- data/lib/stripe/services/v2/core_service.rb +2 -1
- data/lib/stripe/services/v2/money_management/adjustment_service.rb +32 -0
- data/lib/stripe/services/v2/money_management/financial_account_service.rb +70 -0
- data/lib/stripe/services/v2/money_management/financial_address_service.rb +46 -0
- data/lib/stripe/services/v2/money_management/inbound_transfer_service.rb +45 -0
- data/lib/stripe/services/v2/money_management/outbound_payment_quote_service.rb +34 -0
- data/lib/stripe/services/v2/money_management/outbound_payment_service.rb +62 -0
- data/lib/stripe/services/v2/money_management/outbound_setup_intent_service.rb +75 -0
- data/lib/stripe/services/v2/money_management/outbound_transfer_service.rb +60 -0
- data/lib/stripe/services/v2/money_management/payout_method_service.rb +65 -0
- data/lib/stripe/services/v2/money_management/payout_methods_bank_account_spec_service.rb +23 -0
- data/lib/stripe/services/v2/money_management/received_credit_service.rb +32 -0
- data/lib/stripe/services/v2/money_management/received_debit_service.rb +32 -0
- data/lib/stripe/services/v2/money_management/transaction_entry_service.rb +32 -0
- data/lib/stripe/services/v2/money_management/transaction_service.rb +32 -0
- data/lib/stripe/services/v2/money_management_service.rb +31 -0
- data/lib/stripe/services/v2/test_helper_service.rb +15 -0
- data/lib/stripe/services/v2/test_helpers/financial_address_service.rb +36 -0
- data/lib/stripe/services/v2_services.rb +3 -1
- data/lib/stripe/services.rb +55 -0
- data/lib/stripe/stripe_client.rb +8 -1
- data/lib/stripe/stripe_configuration.rb +3 -1
- data/lib/stripe/stripe_event_notification_handler.rb +425 -0
- data/lib/stripe/stripe_object.rb +1 -1
- data/lib/stripe/util.rb +7 -1
- data/lib/stripe/version.rb +1 -1
- data/lib/stripe.rb +54 -0
- data/rbi/stripe/stripe_client.rbi +13 -0
- data/rbi/stripe.rbi +93543 -33169
- metadata +314 -3
|
@@ -326,13 +326,46 @@ module Stripe
|
|
|
326
326
|
end
|
|
327
327
|
|
|
328
328
|
class Discount < ::Stripe::RequestParams
|
|
329
|
+
class CouponData < ::Stripe::RequestParams
|
|
330
|
+
# A positive integer representing the amount to subtract from an invoice total (required if `percent_off` is not passed).
|
|
331
|
+
attr_accessor :amount_off
|
|
332
|
+
# Three-letter [ISO code for the currency](https://stripe.com/docs/currencies) of the `amount_off` parameter (required if `amount_off` is passed).
|
|
333
|
+
attr_accessor :currency
|
|
334
|
+
# Specifies how long the discount will be in effect if used on a subscription. Defaults to `once`.
|
|
335
|
+
attr_accessor :duration
|
|
336
|
+
# Set of [key-value pairs](https://docs.stripe.com/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
|
|
337
|
+
attr_accessor :metadata
|
|
338
|
+
# Name of the coupon displayed to customers on, for instance invoices, or receipts. By default the `id` is shown if `name` is not set.
|
|
339
|
+
attr_accessor :name
|
|
340
|
+
# A positive float larger than 0, and smaller or equal to 100, that represents the discount the coupon will apply (required if `amount_off` is not passed).
|
|
341
|
+
attr_accessor :percent_off
|
|
342
|
+
|
|
343
|
+
def initialize(
|
|
344
|
+
amount_off: nil,
|
|
345
|
+
currency: nil,
|
|
346
|
+
duration: nil,
|
|
347
|
+
metadata: nil,
|
|
348
|
+
name: nil,
|
|
349
|
+
percent_off: nil
|
|
350
|
+
)
|
|
351
|
+
@amount_off = amount_off
|
|
352
|
+
@currency = currency
|
|
353
|
+
@duration = duration
|
|
354
|
+
@metadata = metadata
|
|
355
|
+
@name = name
|
|
356
|
+
@percent_off = percent_off
|
|
357
|
+
end
|
|
358
|
+
end
|
|
329
359
|
# The ID of the coupon to apply to this Session.
|
|
330
360
|
attr_accessor :coupon
|
|
361
|
+
# Data used to generate a new [Coupon](https://docs.stripe.com/api/coupon) object inline. One of `coupon` or `coupon_data` is required when updating discounts.
|
|
362
|
+
attr_accessor :coupon_data
|
|
331
363
|
# The ID of a promotion code to apply to this Session.
|
|
332
364
|
attr_accessor :promotion_code
|
|
333
365
|
|
|
334
|
-
def initialize(coupon: nil, promotion_code: nil)
|
|
366
|
+
def initialize(coupon: nil, coupon_data: nil, promotion_code: nil)
|
|
335
367
|
@coupon = coupon
|
|
368
|
+
@coupon_data = coupon_data
|
|
336
369
|
@promotion_code = promotion_code
|
|
337
370
|
end
|
|
338
371
|
end
|
|
@@ -1014,6 +1047,8 @@ module Stripe
|
|
|
1014
1047
|
# Installment options for card payments
|
|
1015
1048
|
attr_accessor :installments
|
|
1016
1049
|
# Request ability to [capture beyond the standard authorization validity window](/payments/extended-authorization) for this CheckoutSession.
|
|
1050
|
+
attr_accessor :request_decremental_authorization
|
|
1051
|
+
# Request ability to [capture beyond the standard authorization validity window](/payments/extended-authorization) for this CheckoutSession.
|
|
1017
1052
|
attr_accessor :request_extended_authorization
|
|
1018
1053
|
# Request ability to [increment the authorization](/payments/incremental-authorization) for this CheckoutSession.
|
|
1019
1054
|
attr_accessor :request_incremental_authorization
|
|
@@ -1041,6 +1076,7 @@ module Stripe
|
|
|
1041
1076
|
def initialize(
|
|
1042
1077
|
capture_method: nil,
|
|
1043
1078
|
installments: nil,
|
|
1079
|
+
request_decremental_authorization: nil,
|
|
1044
1080
|
request_extended_authorization: nil,
|
|
1045
1081
|
request_incremental_authorization: nil,
|
|
1046
1082
|
request_multicapture: nil,
|
|
@@ -1053,6 +1089,7 @@ module Stripe
|
|
|
1053
1089
|
)
|
|
1054
1090
|
@capture_method = capture_method
|
|
1055
1091
|
@installments = installments
|
|
1092
|
+
@request_decremental_authorization = request_decremental_authorization
|
|
1056
1093
|
@request_extended_authorization = request_extended_authorization
|
|
1057
1094
|
@request_incremental_authorization = request_incremental_authorization
|
|
1058
1095
|
@request_multicapture = request_multicapture
|
|
@@ -1468,6 +1505,8 @@ module Stripe
|
|
|
1468
1505
|
attr_accessor :preferred_locale
|
|
1469
1506
|
# A reference of the PayPal transaction visible to customer which is mapped to PayPal's invoice ID. This must be a globally unique ID if you have configured in your PayPal settings to block multiple payments per invoice ID.
|
|
1470
1507
|
attr_accessor :reference
|
|
1508
|
+
# A reference of the PayPal transaction visible to customer which is mapped to PayPal's invoice ID. This must be a globally unique ID if you have configured in your PayPal settings to block multiple payments per invoice ID.
|
|
1509
|
+
attr_accessor :reference_id
|
|
1471
1510
|
# The risk correlation ID for an on-session payment using a saved PayPal payment method.
|
|
1472
1511
|
attr_accessor :risk_correlation_id
|
|
1473
1512
|
# Indicates that you intend to make future payments with this PaymentIntent's payment method.
|
|
@@ -1480,19 +1519,25 @@ module Stripe
|
|
|
1480
1519
|
#
|
|
1481
1520
|
# If you've already set `setup_future_usage` and you're performing a request using a publishable key, you can only update the value from `on_session` to `off_session`.
|
|
1482
1521
|
attr_accessor :setup_future_usage
|
|
1522
|
+
# The Stripe connected account IDs of the sellers on the platform for this transaction (optional). Only allowed when [separate charges and transfers](https://stripe.com/docs/connect/separate-charges-and-transfers) are used.
|
|
1523
|
+
attr_accessor :subsellers
|
|
1483
1524
|
|
|
1484
1525
|
def initialize(
|
|
1485
1526
|
capture_method: nil,
|
|
1486
1527
|
preferred_locale: nil,
|
|
1487
1528
|
reference: nil,
|
|
1529
|
+
reference_id: nil,
|
|
1488
1530
|
risk_correlation_id: nil,
|
|
1489
|
-
setup_future_usage: nil
|
|
1531
|
+
setup_future_usage: nil,
|
|
1532
|
+
subsellers: nil
|
|
1490
1533
|
)
|
|
1491
1534
|
@capture_method = capture_method
|
|
1492
1535
|
@preferred_locale = preferred_locale
|
|
1493
1536
|
@reference = reference
|
|
1537
|
+
@reference_id = reference_id
|
|
1494
1538
|
@risk_correlation_id = risk_correlation_id
|
|
1495
1539
|
@setup_future_usage = setup_future_usage
|
|
1540
|
+
@subsellers = subsellers
|
|
1496
1541
|
end
|
|
1497
1542
|
end
|
|
1498
1543
|
|
|
@@ -1549,10 +1594,50 @@ module Stripe
|
|
|
1549
1594
|
end
|
|
1550
1595
|
|
|
1551
1596
|
class Pix < ::Stripe::RequestParams
|
|
1597
|
+
class MandateOptions < ::Stripe::RequestParams
|
|
1598
|
+
# Amount to be charged for future payments. Required when `amount_type=fixed`. If not provided for `amount_type=maximum`, defaults to 40000.
|
|
1599
|
+
attr_accessor :amount
|
|
1600
|
+
# Determines if the amount includes the IOF tax. Defaults to `never`.
|
|
1601
|
+
attr_accessor :amount_includes_iof
|
|
1602
|
+
# Type of amount. Defaults to `maximum`.
|
|
1603
|
+
attr_accessor :amount_type
|
|
1604
|
+
# Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Only `brl` is supported currently.
|
|
1605
|
+
attr_accessor :currency
|
|
1606
|
+
# Date when the mandate expires and no further payments will be charged, in `YYYY-MM-DD`. If not provided, the mandate will be active until canceled. If provided, end date should be after start date.
|
|
1607
|
+
attr_accessor :end_date
|
|
1608
|
+
# Schedule at which the future payments will be charged. Defaults to `weekly`.
|
|
1609
|
+
attr_accessor :payment_schedule
|
|
1610
|
+
# Subscription name displayed to buyers in their bank app. Defaults to the displayable business name.
|
|
1611
|
+
attr_accessor :reference
|
|
1612
|
+
# Start date of the mandate, in `YYYY-MM-DD`. Start date should be at least 3 days in the future. Defaults to 3 days after the current date.
|
|
1613
|
+
attr_accessor :start_date
|
|
1614
|
+
|
|
1615
|
+
def initialize(
|
|
1616
|
+
amount: nil,
|
|
1617
|
+
amount_includes_iof: nil,
|
|
1618
|
+
amount_type: nil,
|
|
1619
|
+
currency: nil,
|
|
1620
|
+
end_date: nil,
|
|
1621
|
+
payment_schedule: nil,
|
|
1622
|
+
reference: nil,
|
|
1623
|
+
start_date: nil
|
|
1624
|
+
)
|
|
1625
|
+
@amount = amount
|
|
1626
|
+
@amount_includes_iof = amount_includes_iof
|
|
1627
|
+
@amount_type = amount_type
|
|
1628
|
+
@currency = currency
|
|
1629
|
+
@end_date = end_date
|
|
1630
|
+
@payment_schedule = payment_schedule
|
|
1631
|
+
@reference = reference
|
|
1632
|
+
@start_date = start_date
|
|
1633
|
+
end
|
|
1634
|
+
end
|
|
1552
1635
|
# Determines if the amount includes the IOF tax. Defaults to `never`.
|
|
1553
1636
|
attr_accessor :amount_includes_iof
|
|
1554
1637
|
# The number of seconds (between 10 and 1209600) after which Pix payment will expire. Defaults to 86400 seconds.
|
|
1555
1638
|
attr_accessor :expires_after_seconds
|
|
1639
|
+
# Additional fields for mandate creation.
|
|
1640
|
+
attr_accessor :mandate_options
|
|
1556
1641
|
# Indicates that you intend to make future payments with this PaymentIntent's payment method.
|
|
1557
1642
|
#
|
|
1558
1643
|
# If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
|
|
@@ -1565,10 +1650,12 @@ module Stripe
|
|
|
1565
1650
|
def initialize(
|
|
1566
1651
|
amount_includes_iof: nil,
|
|
1567
1652
|
expires_after_seconds: nil,
|
|
1653
|
+
mandate_options: nil,
|
|
1568
1654
|
setup_future_usage: nil
|
|
1569
1655
|
)
|
|
1570
1656
|
@amount_includes_iof = amount_includes_iof
|
|
1571
1657
|
@expires_after_seconds = expires_after_seconds
|
|
1658
|
+
@mandate_options = mandate_options
|
|
1572
1659
|
@setup_future_usage = setup_future_usage
|
|
1573
1660
|
end
|
|
1574
1661
|
end
|
|
@@ -1924,6 +2011,37 @@ module Stripe
|
|
|
1924
2011
|
end
|
|
1925
2012
|
|
|
1926
2013
|
class Permissions < ::Stripe::RequestParams
|
|
2014
|
+
class Update < ::Stripe::RequestParams
|
|
2015
|
+
# Determines which entity is allowed to update the line items.
|
|
2016
|
+
#
|
|
2017
|
+
# Default is `client_only`. Stripe Checkout client will automatically update the line items. If set to `server_only`, only your server is allowed to update the line items.
|
|
2018
|
+
#
|
|
2019
|
+
# When set to `server_only`, you must add the onLineItemsChange event handler when initializing the Stripe Checkout client and manually update the line items from your server using the Stripe API.
|
|
2020
|
+
attr_accessor :line_items
|
|
2021
|
+
# Determines which entity is allowed to update the shipping details.
|
|
2022
|
+
#
|
|
2023
|
+
# Default is `client_only`. Stripe Checkout client will automatically update the shipping details. If set to `server_only`, only your server is allowed to update the shipping details.
|
|
2024
|
+
#
|
|
2025
|
+
# When set to `server_only`, you must add the onShippingDetailsChange event handler when initializing the Stripe Checkout client and manually update the shipping details from your server using the Stripe API.
|
|
2026
|
+
attr_accessor :shipping_details
|
|
2027
|
+
|
|
2028
|
+
def initialize(line_items: nil, shipping_details: nil)
|
|
2029
|
+
@line_items = line_items
|
|
2030
|
+
@shipping_details = shipping_details
|
|
2031
|
+
end
|
|
2032
|
+
end
|
|
2033
|
+
# Permissions for updating the Checkout Session.
|
|
2034
|
+
attr_accessor :update
|
|
2035
|
+
# Determines which entity is allowed to update the discounts (coupons or promotion codes) that apply to this session.
|
|
2036
|
+
#
|
|
2037
|
+
# Default is `client_only`. Stripe Checkout client will automatically handle discount updates. If set to `server_only`, only your server is allowed to update discounts.
|
|
2038
|
+
attr_accessor :update_discounts
|
|
2039
|
+
# Determines which entity is allowed to update the line items.
|
|
2040
|
+
#
|
|
2041
|
+
# Default is `client_only`. Stripe Checkout client will automatically update the line items. If set to `server_only`, only your server is allowed to update the line items.
|
|
2042
|
+
#
|
|
2043
|
+
# When set to `server_only`, you must add the onLineItemsChange event handler when initializing the Stripe Checkout client and manually update the line items from your server using the Stripe API.
|
|
2044
|
+
attr_accessor :update_line_items
|
|
1927
2045
|
# Determines which entity is allowed to update the shipping details.
|
|
1928
2046
|
#
|
|
1929
2047
|
# Default is `client_only`. Stripe Checkout client will automatically update the shipping details. If set to `server_only`, only your server is allowed to update the shipping details.
|
|
@@ -1931,7 +2049,15 @@ module Stripe
|
|
|
1931
2049
|
# When set to `server_only`, you must add the onShippingDetailsChange event handler when initializing the Stripe Checkout client and manually update the shipping details from your server using the Stripe API.
|
|
1932
2050
|
attr_accessor :update_shipping_details
|
|
1933
2051
|
|
|
1934
|
-
def initialize(
|
|
2052
|
+
def initialize(
|
|
2053
|
+
update: nil,
|
|
2054
|
+
update_discounts: nil,
|
|
2055
|
+
update_line_items: nil,
|
|
2056
|
+
update_shipping_details: nil
|
|
2057
|
+
)
|
|
2058
|
+
@update = update
|
|
2059
|
+
@update_discounts = update_discounts
|
|
2060
|
+
@update_line_items = update_line_items
|
|
1935
2061
|
@update_shipping_details = update_shipping_details
|
|
1936
2062
|
end
|
|
1937
2063
|
end
|
|
@@ -4,6 +4,26 @@
|
|
|
4
4
|
module Stripe
|
|
5
5
|
module Checkout
|
|
6
6
|
class SessionUpdateParams < ::Stripe::RequestParams
|
|
7
|
+
class AutomaticTax < ::Stripe::RequestParams
|
|
8
|
+
class Liability < ::Stripe::RequestParams
|
|
9
|
+
# The connected account being referenced when `type` is `account`.
|
|
10
|
+
attr_accessor :account
|
|
11
|
+
# Type of the account referenced in the request.
|
|
12
|
+
attr_accessor :type
|
|
13
|
+
|
|
14
|
+
def initialize(account: nil, type: nil)
|
|
15
|
+
@account = account
|
|
16
|
+
@type = type
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
# The account that's liable for tax. If set, the business address and tax registrations required to perform the tax calculation are loaded from this account. The tax transaction is returned in the report of the connected account.
|
|
20
|
+
attr_accessor :liability
|
|
21
|
+
|
|
22
|
+
def initialize(liability: nil)
|
|
23
|
+
@liability = liability
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
|
|
7
27
|
class CollectedInformation < ::Stripe::RequestParams
|
|
8
28
|
class ShippingDetails < ::Stripe::RequestParams
|
|
9
29
|
class Address < ::Stripe::RequestParams
|
|
@@ -54,6 +74,76 @@ module Stripe
|
|
|
54
74
|
end
|
|
55
75
|
end
|
|
56
76
|
|
|
77
|
+
class Discount < ::Stripe::RequestParams
|
|
78
|
+
class CouponData < ::Stripe::RequestParams
|
|
79
|
+
# A positive integer representing the amount to subtract from an invoice total (required if `percent_off` is not passed).
|
|
80
|
+
attr_accessor :amount_off
|
|
81
|
+
# Three-letter [ISO code for the currency](https://stripe.com/docs/currencies) of the `amount_off` parameter (required if `amount_off` is passed).
|
|
82
|
+
attr_accessor :currency
|
|
83
|
+
# Specifies how long the discount will be in effect if used on a subscription. Defaults to `once`.
|
|
84
|
+
attr_accessor :duration
|
|
85
|
+
# Set of [key-value pairs](https://docs.stripe.com/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
|
|
86
|
+
attr_accessor :metadata
|
|
87
|
+
# Name of the coupon displayed to customers on, for instance invoices, or receipts. By default the `id` is shown if `name` is not set.
|
|
88
|
+
attr_accessor :name
|
|
89
|
+
# A positive float larger than 0, and smaller or equal to 100, that represents the discount the coupon will apply (required if `amount_off` is not passed).
|
|
90
|
+
attr_accessor :percent_off
|
|
91
|
+
|
|
92
|
+
def initialize(
|
|
93
|
+
amount_off: nil,
|
|
94
|
+
currency: nil,
|
|
95
|
+
duration: nil,
|
|
96
|
+
metadata: nil,
|
|
97
|
+
name: nil,
|
|
98
|
+
percent_off: nil
|
|
99
|
+
)
|
|
100
|
+
@amount_off = amount_off
|
|
101
|
+
@currency = currency
|
|
102
|
+
@duration = duration
|
|
103
|
+
@metadata = metadata
|
|
104
|
+
@name = name
|
|
105
|
+
@percent_off = percent_off
|
|
106
|
+
end
|
|
107
|
+
end
|
|
108
|
+
# The ID of the [Coupon](https://docs.stripe.com/api/coupons) to apply to this Session. One of `coupon` or `coupon_data` is required when updating discounts.
|
|
109
|
+
attr_accessor :coupon
|
|
110
|
+
# Data used to generate a new [Coupon](https://docs.stripe.com/api/coupon) object inline. One of `coupon` or `coupon_data` is required when updating discounts.
|
|
111
|
+
attr_accessor :coupon_data
|
|
112
|
+
|
|
113
|
+
def initialize(coupon: nil, coupon_data: nil)
|
|
114
|
+
@coupon = coupon
|
|
115
|
+
@coupon_data = coupon_data
|
|
116
|
+
end
|
|
117
|
+
end
|
|
118
|
+
|
|
119
|
+
class InvoiceCreation < ::Stripe::RequestParams
|
|
120
|
+
class InvoiceData < ::Stripe::RequestParams
|
|
121
|
+
class Issuer < ::Stripe::RequestParams
|
|
122
|
+
# The connected account being referenced when `type` is `account`.
|
|
123
|
+
attr_accessor :account
|
|
124
|
+
# Type of the account referenced in the request.
|
|
125
|
+
attr_accessor :type
|
|
126
|
+
|
|
127
|
+
def initialize(account: nil, type: nil)
|
|
128
|
+
@account = account
|
|
129
|
+
@type = type
|
|
130
|
+
end
|
|
131
|
+
end
|
|
132
|
+
# The connected account that issues the invoice. The invoice is presented with the branding and support information of the specified account.
|
|
133
|
+
attr_accessor :issuer
|
|
134
|
+
|
|
135
|
+
def initialize(issuer: nil)
|
|
136
|
+
@issuer = issuer
|
|
137
|
+
end
|
|
138
|
+
end
|
|
139
|
+
# Parameters passed when creating invoices for payment-mode Checkout Sessions.
|
|
140
|
+
attr_accessor :invoice_data
|
|
141
|
+
|
|
142
|
+
def initialize(invoice_data: nil)
|
|
143
|
+
@invoice_data = invoice_data
|
|
144
|
+
end
|
|
145
|
+
end
|
|
146
|
+
|
|
57
147
|
class LineItem < ::Stripe::RequestParams
|
|
58
148
|
class AdjustableQuantity < ::Stripe::RequestParams
|
|
59
149
|
# Set to true if the quantity can be adjusted to any positive integer. Setting to false will remove any previously specified constraints on quantity.
|
|
@@ -285,10 +375,50 @@ module Stripe
|
|
|
285
375
|
@shipping_rate_data = shipping_rate_data
|
|
286
376
|
end
|
|
287
377
|
end
|
|
378
|
+
|
|
379
|
+
class SubscriptionData < ::Stripe::RequestParams
|
|
380
|
+
class InvoiceSettings < ::Stripe::RequestParams
|
|
381
|
+
class Issuer < ::Stripe::RequestParams
|
|
382
|
+
# The connected account being referenced when `type` is `account`.
|
|
383
|
+
attr_accessor :account
|
|
384
|
+
# Type of the account referenced in the request.
|
|
385
|
+
attr_accessor :type
|
|
386
|
+
|
|
387
|
+
def initialize(account: nil, type: nil)
|
|
388
|
+
@account = account
|
|
389
|
+
@type = type
|
|
390
|
+
end
|
|
391
|
+
end
|
|
392
|
+
# The connected account that issues the invoice. The invoice is presented with the branding and support information of the specified account.
|
|
393
|
+
attr_accessor :issuer
|
|
394
|
+
|
|
395
|
+
def initialize(issuer: nil)
|
|
396
|
+
@issuer = issuer
|
|
397
|
+
end
|
|
398
|
+
end
|
|
399
|
+
# All invoices will be billed using the specified settings.
|
|
400
|
+
attr_accessor :invoice_settings
|
|
401
|
+
# Unix timestamp representing the end of the trial period the customer will get before being charged for the first time. Has to be at least 48 hours in the future.
|
|
402
|
+
attr_accessor :trial_end
|
|
403
|
+
# Integer representing the number of trial period days before the customer is charged for the first time. Has to be at least 1.
|
|
404
|
+
attr_accessor :trial_period_days
|
|
405
|
+
|
|
406
|
+
def initialize(invoice_settings: nil, trial_end: nil, trial_period_days: nil)
|
|
407
|
+
@invoice_settings = invoice_settings
|
|
408
|
+
@trial_end = trial_end
|
|
409
|
+
@trial_period_days = trial_period_days
|
|
410
|
+
end
|
|
411
|
+
end
|
|
412
|
+
# Settings for automatic tax lookup for this session and resulting payments, invoices, and subscriptions.
|
|
413
|
+
attr_accessor :automatic_tax
|
|
288
414
|
# Information about the customer collected within the Checkout Session. Can only be set when updating `embedded` or `custom` sessions.
|
|
289
415
|
attr_accessor :collected_information
|
|
416
|
+
# List of coupons and promotion codes attached to the Checkout Session.
|
|
417
|
+
attr_accessor :discounts
|
|
290
418
|
# Specifies which fields in the response should be expanded.
|
|
291
419
|
attr_accessor :expand
|
|
420
|
+
# Generate a post-purchase Invoice for one-time payments.
|
|
421
|
+
attr_accessor :invoice_creation
|
|
292
422
|
# A list of items the customer is purchasing.
|
|
293
423
|
#
|
|
294
424
|
# When updating line items, you must retransmit the entire array of line items.
|
|
@@ -307,19 +437,29 @@ module Stripe
|
|
|
307
437
|
attr_accessor :metadata
|
|
308
438
|
# The shipping rate options to apply to this Session. Up to a maximum of 5.
|
|
309
439
|
attr_accessor :shipping_options
|
|
440
|
+
# A subset of parameters to be passed to subscription creation for Checkout Sessions in `subscription` mode.
|
|
441
|
+
attr_accessor :subscription_data
|
|
310
442
|
|
|
311
443
|
def initialize(
|
|
444
|
+
automatic_tax: nil,
|
|
312
445
|
collected_information: nil,
|
|
446
|
+
discounts: nil,
|
|
313
447
|
expand: nil,
|
|
448
|
+
invoice_creation: nil,
|
|
314
449
|
line_items: nil,
|
|
315
450
|
metadata: nil,
|
|
316
|
-
shipping_options: nil
|
|
451
|
+
shipping_options: nil,
|
|
452
|
+
subscription_data: nil
|
|
317
453
|
)
|
|
454
|
+
@automatic_tax = automatic_tax
|
|
318
455
|
@collected_information = collected_information
|
|
456
|
+
@discounts = discounts
|
|
319
457
|
@expand = expand
|
|
458
|
+
@invoice_creation = invoice_creation
|
|
320
459
|
@line_items = line_items
|
|
321
460
|
@metadata = metadata
|
|
322
461
|
@shipping_options = shipping_options
|
|
462
|
+
@subscription_data = subscription_data
|
|
323
463
|
end
|
|
324
464
|
end
|
|
325
465
|
end
|
|
@@ -140,8 +140,18 @@ module Stripe
|
|
|
140
140
|
end
|
|
141
141
|
|
|
142
142
|
class Giropay < ::Stripe::RequestParams; end
|
|
143
|
+
class Gopay < ::Stripe::RequestParams; end
|
|
143
144
|
class Grabpay < ::Stripe::RequestParams; end
|
|
144
145
|
|
|
146
|
+
class IdBankTransfer < ::Stripe::RequestParams
|
|
147
|
+
# Bank where the account is held.
|
|
148
|
+
attr_accessor :bank
|
|
149
|
+
|
|
150
|
+
def initialize(bank: nil)
|
|
151
|
+
@bank = bank
|
|
152
|
+
end
|
|
153
|
+
end
|
|
154
|
+
|
|
145
155
|
class Ideal < ::Stripe::RequestParams
|
|
146
156
|
# The customer's bank. Only use this parameter for existing customers. Don't use it for new customers.
|
|
147
157
|
attr_accessor :bank
|
|
@@ -239,6 +249,7 @@ module Stripe
|
|
|
239
249
|
class Payco < ::Stripe::RequestParams; end
|
|
240
250
|
class Paynow < ::Stripe::RequestParams; end
|
|
241
251
|
class Paypal < ::Stripe::RequestParams; end
|
|
252
|
+
class Paypay < ::Stripe::RequestParams; end
|
|
242
253
|
|
|
243
254
|
class Payto < ::Stripe::RequestParams
|
|
244
255
|
# The account number for the bank account.
|
|
@@ -257,6 +268,7 @@ module Stripe
|
|
|
257
268
|
|
|
258
269
|
class Pix < ::Stripe::RequestParams; end
|
|
259
270
|
class Promptpay < ::Stripe::RequestParams; end
|
|
271
|
+
class Qris < ::Stripe::RequestParams; end
|
|
260
272
|
|
|
261
273
|
class RadarOptions < ::Stripe::RequestParams
|
|
262
274
|
# A [Radar Session](https://docs.stripe.com/radar/radar-session) is a snapshot of the browser metadata and device details that help Radar make more accurate predictions on your payments.
|
|
@@ -267,6 +279,29 @@ module Stripe
|
|
|
267
279
|
end
|
|
268
280
|
end
|
|
269
281
|
|
|
282
|
+
class Rechnung < ::Stripe::RequestParams
|
|
283
|
+
class Dob < ::Stripe::RequestParams
|
|
284
|
+
# The day of birth, between 1 and 31.
|
|
285
|
+
attr_accessor :day
|
|
286
|
+
# The month of birth, between 1 and 12.
|
|
287
|
+
attr_accessor :month
|
|
288
|
+
# The four-digit year of birth.
|
|
289
|
+
attr_accessor :year
|
|
290
|
+
|
|
291
|
+
def initialize(day: nil, month: nil, year: nil)
|
|
292
|
+
@day = day
|
|
293
|
+
@month = month
|
|
294
|
+
@year = year
|
|
295
|
+
end
|
|
296
|
+
end
|
|
297
|
+
# Customer's date of birth
|
|
298
|
+
attr_accessor :dob
|
|
299
|
+
|
|
300
|
+
def initialize(dob: nil)
|
|
301
|
+
@dob = dob
|
|
302
|
+
end
|
|
303
|
+
end
|
|
304
|
+
|
|
270
305
|
class RevolutPay < ::Stripe::RequestParams; end
|
|
271
306
|
class SamsungPay < ::Stripe::RequestParams; end
|
|
272
307
|
class Satispay < ::Stripe::RequestParams; end
|
|
@@ -280,6 +315,8 @@ module Stripe
|
|
|
280
315
|
end
|
|
281
316
|
end
|
|
282
317
|
|
|
318
|
+
class Shopeepay < ::Stripe::RequestParams; end
|
|
319
|
+
|
|
283
320
|
class Sofort < ::Stripe::RequestParams
|
|
284
321
|
# Two-letter ISO code representing the country the bank account is located in.
|
|
285
322
|
attr_accessor :country
|
|
@@ -289,6 +326,18 @@ module Stripe
|
|
|
289
326
|
end
|
|
290
327
|
end
|
|
291
328
|
|
|
329
|
+
class StripeBalance < ::Stripe::RequestParams
|
|
330
|
+
# The connected account ID whose Stripe balance to use as the source of payment
|
|
331
|
+
attr_accessor :account
|
|
332
|
+
# The [source_type](https://docs.stripe.com/api/balance/balance_object#balance_object-available-source_types) of the balance
|
|
333
|
+
attr_accessor :source_type
|
|
334
|
+
|
|
335
|
+
def initialize(account: nil, source_type: nil)
|
|
336
|
+
@account = account
|
|
337
|
+
@source_type = source_type
|
|
338
|
+
end
|
|
339
|
+
end
|
|
340
|
+
|
|
292
341
|
class Swish < ::Stripe::RequestParams; end
|
|
293
342
|
class Twint < ::Stripe::RequestParams; end
|
|
294
343
|
|
|
@@ -361,8 +410,12 @@ module Stripe
|
|
|
361
410
|
attr_accessor :fpx
|
|
362
411
|
# If this is a `giropay` PaymentMethod, this hash contains details about the Giropay payment method.
|
|
363
412
|
attr_accessor :giropay
|
|
413
|
+
# If this is a Gopay PaymentMethod, this hash contains details about the Gopay payment method.
|
|
414
|
+
attr_accessor :gopay
|
|
364
415
|
# If this is a `grabpay` PaymentMethod, this hash contains details about the GrabPay payment method.
|
|
365
416
|
attr_accessor :grabpay
|
|
417
|
+
# If this is an `IdBankTransfer` PaymentMethod, this hash contains details about the IdBankTransfer payment method.
|
|
418
|
+
attr_accessor :id_bank_transfer
|
|
366
419
|
# If this is an `ideal` PaymentMethod, this hash contains details about the iDEAL payment method.
|
|
367
420
|
attr_accessor :ideal
|
|
368
421
|
# If this is an `interac_present` PaymentMethod, this hash contains details about the Interac Present payment method.
|
|
@@ -401,14 +454,20 @@ module Stripe
|
|
|
401
454
|
attr_accessor :paynow
|
|
402
455
|
# If this is a `paypal` PaymentMethod, this hash contains details about the PayPal payment method.
|
|
403
456
|
attr_accessor :paypal
|
|
457
|
+
# If this is a `paypay` PaymentMethod, this hash contains details about the PayPay payment method.
|
|
458
|
+
attr_accessor :paypay
|
|
404
459
|
# If this is a `payto` PaymentMethod, this hash contains details about the PayTo payment method.
|
|
405
460
|
attr_accessor :payto
|
|
406
461
|
# If this is a `pix` PaymentMethod, this hash contains details about the Pix payment method.
|
|
407
462
|
attr_accessor :pix
|
|
408
463
|
# If this is a `promptpay` PaymentMethod, this hash contains details about the PromptPay payment method.
|
|
409
464
|
attr_accessor :promptpay
|
|
465
|
+
# If this is a `qris` PaymentMethod, this hash contains details about the QRIS payment method.
|
|
466
|
+
attr_accessor :qris
|
|
410
467
|
# Options to configure Radar. See [Radar Session](https://docs.stripe.com/radar/radar-session) for more information.
|
|
411
468
|
attr_accessor :radar_options
|
|
469
|
+
# If this is a `rechnung` PaymentMethod, this hash contains details about the Rechnung payment method.
|
|
470
|
+
attr_accessor :rechnung
|
|
412
471
|
# If this is a `revolut_pay` PaymentMethod, this hash contains details about the Revolut Pay payment method.
|
|
413
472
|
attr_accessor :revolut_pay
|
|
414
473
|
# If this is a `samsung_pay` PaymentMethod, this hash contains details about the SamsungPay payment method.
|
|
@@ -417,8 +476,12 @@ module Stripe
|
|
|
417
476
|
attr_accessor :satispay
|
|
418
477
|
# If this is a `sepa_debit` PaymentMethod, this hash contains details about the SEPA debit bank account.
|
|
419
478
|
attr_accessor :sepa_debit
|
|
479
|
+
# If this is a Shopeepay PaymentMethod, this hash contains details about the Shopeepay payment method.
|
|
480
|
+
attr_accessor :shopeepay
|
|
420
481
|
# If this is a `sofort` PaymentMethod, this hash contains details about the SOFORT payment method.
|
|
421
482
|
attr_accessor :sofort
|
|
483
|
+
# This hash contains details about the Stripe balance payment method.
|
|
484
|
+
attr_accessor :stripe_balance
|
|
422
485
|
# If this is a `swish` PaymentMethod, this hash contains details about the Swish payment method.
|
|
423
486
|
attr_accessor :swish
|
|
424
487
|
# If this is a TWINT PaymentMethod, this hash contains details about the TWINT payment method.
|
|
@@ -453,7 +516,9 @@ module Stripe
|
|
|
453
516
|
eps: nil,
|
|
454
517
|
fpx: nil,
|
|
455
518
|
giropay: nil,
|
|
519
|
+
gopay: nil,
|
|
456
520
|
grabpay: nil,
|
|
521
|
+
id_bank_transfer: nil,
|
|
457
522
|
ideal: nil,
|
|
458
523
|
interac_present: nil,
|
|
459
524
|
kakao_pay: nil,
|
|
@@ -473,15 +538,20 @@ module Stripe
|
|
|
473
538
|
payco: nil,
|
|
474
539
|
paynow: nil,
|
|
475
540
|
paypal: nil,
|
|
541
|
+
paypay: nil,
|
|
476
542
|
payto: nil,
|
|
477
543
|
pix: nil,
|
|
478
544
|
promptpay: nil,
|
|
545
|
+
qris: nil,
|
|
479
546
|
radar_options: nil,
|
|
547
|
+
rechnung: nil,
|
|
480
548
|
revolut_pay: nil,
|
|
481
549
|
samsung_pay: nil,
|
|
482
550
|
satispay: nil,
|
|
483
551
|
sepa_debit: nil,
|
|
552
|
+
shopeepay: nil,
|
|
484
553
|
sofort: nil,
|
|
554
|
+
stripe_balance: nil,
|
|
485
555
|
swish: nil,
|
|
486
556
|
twint: nil,
|
|
487
557
|
type: nil,
|
|
@@ -509,7 +579,9 @@ module Stripe
|
|
|
509
579
|
@eps = eps
|
|
510
580
|
@fpx = fpx
|
|
511
581
|
@giropay = giropay
|
|
582
|
+
@gopay = gopay
|
|
512
583
|
@grabpay = grabpay
|
|
584
|
+
@id_bank_transfer = id_bank_transfer
|
|
513
585
|
@ideal = ideal
|
|
514
586
|
@interac_present = interac_present
|
|
515
587
|
@kakao_pay = kakao_pay
|
|
@@ -529,15 +601,20 @@ module Stripe
|
|
|
529
601
|
@payco = payco
|
|
530
602
|
@paynow = paynow
|
|
531
603
|
@paypal = paypal
|
|
604
|
+
@paypay = paypay
|
|
532
605
|
@payto = payto
|
|
533
606
|
@pix = pix
|
|
534
607
|
@promptpay = promptpay
|
|
608
|
+
@qris = qris
|
|
535
609
|
@radar_options = radar_options
|
|
610
|
+
@rechnung = rechnung
|
|
536
611
|
@revolut_pay = revolut_pay
|
|
537
612
|
@samsung_pay = samsung_pay
|
|
538
613
|
@satispay = satispay
|
|
539
614
|
@sepa_debit = sepa_debit
|
|
615
|
+
@shopeepay = shopeepay
|
|
540
616
|
@sofort = sofort
|
|
617
|
+
@stripe_balance = stripe_balance
|
|
541
618
|
@swish = swish
|
|
542
619
|
@twint = twint
|
|
543
620
|
@type = type
|
|
@@ -20,6 +20,18 @@ module Stripe
|
|
|
20
20
|
@amount_off = amount_off
|
|
21
21
|
end
|
|
22
22
|
end
|
|
23
|
+
|
|
24
|
+
class Script < ::Stripe::RequestParams
|
|
25
|
+
# The configuration values of the script. The keys and values are specific to the script implementation.
|
|
26
|
+
attr_accessor :configuration
|
|
27
|
+
# The script implementation ID for this coupon.
|
|
28
|
+
attr_accessor :id
|
|
29
|
+
|
|
30
|
+
def initialize(configuration: nil, id: nil)
|
|
31
|
+
@configuration = configuration
|
|
32
|
+
@id = id
|
|
33
|
+
end
|
|
34
|
+
end
|
|
23
35
|
# A positive integer representing the amount to subtract from an invoice total (required if `percent_off` is not passed).
|
|
24
36
|
attr_accessor :amount_off
|
|
25
37
|
# A hash containing directions for what this Coupon will apply discounts to.
|
|
@@ -46,6 +58,8 @@ module Stripe
|
|
|
46
58
|
attr_accessor :percent_off
|
|
47
59
|
# Unix timestamp specifying the last time at which the coupon can be redeemed. After the redeem_by date, the coupon can no longer be applied to new customers.
|
|
48
60
|
attr_accessor :redeem_by
|
|
61
|
+
# Configuration of the [script](https://docs.stripe.com/billing/subscriptions/script-coupons) used to calculate the discount.
|
|
62
|
+
attr_accessor :script
|
|
49
63
|
|
|
50
64
|
def initialize(
|
|
51
65
|
amount_off: nil,
|
|
@@ -60,7 +74,8 @@ module Stripe
|
|
|
60
74
|
metadata: nil,
|
|
61
75
|
name: nil,
|
|
62
76
|
percent_off: nil,
|
|
63
|
-
redeem_by: nil
|
|
77
|
+
redeem_by: nil,
|
|
78
|
+
script: nil
|
|
64
79
|
)
|
|
65
80
|
@amount_off = amount_off
|
|
66
81
|
@applies_to = applies_to
|
|
@@ -75,6 +90,7 @@ module Stripe
|
|
|
75
90
|
@name = name
|
|
76
91
|
@percent_off = percent_off
|
|
77
92
|
@redeem_by = redeem_by
|
|
93
|
+
@script = script
|
|
78
94
|
end
|
|
79
95
|
end
|
|
80
96
|
end
|