stripe 18.1.0.pre.alpha.1 → 18.1.0.pre.alpha.2
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/event_types.rb +8 -565
- data/lib/stripe/events/v2_core_health_api_error_firing_event.rb +2 -0
- data/lib/stripe/events/v2_core_health_api_error_resolved_event.rb +2 -0
- data/lib/stripe/events/v2_core_health_api_latency_firing_event.rb +2 -0
- data/lib/stripe/events/v2_core_health_api_latency_resolved_event.rb +2 -0
- data/lib/stripe/events/v2_core_health_event_generation_failure_resolved_event.rb +21 -9
- data/lib/stripe/events/v2_core_health_fraud_rate_increased_event.rb +15 -1
- data/lib/stripe/events/v2_core_health_issuing_authorization_request_errors_firing_event.rb +30 -1
- data/lib/stripe/events/v2_core_health_issuing_authorization_request_errors_resolved_event.rb +30 -1
- data/lib/stripe/events/v2_core_health_issuing_authorization_request_timeout_firing_event.rb +30 -1
- data/lib/stripe/events/v2_core_health_issuing_authorization_request_timeout_resolved_event.rb +30 -1
- data/lib/stripe/events/v2_core_health_payment_method_error_firing_event.rb +2 -0
- data/lib/stripe/events/v2_core_health_payment_method_error_resolved_event.rb +2 -0
- data/lib/stripe/events/{v1_sigma_scheduled_query_run_created_event.rb → v2_payments_off_session_payment_attempt_failed_event.rb} +7 -7
- data/lib/stripe/events/{v1_radar_early_fraud_warning_created_event.rb → v2_payments_off_session_payment_attempt_started_event.rb} +9 -7
- data/lib/stripe/events/v2_payments_off_session_payment_authorization_attempt_failed_event.rb +2 -0
- data/lib/stripe/events/v2_payments_off_session_payment_authorization_attempt_started_event.rb +2 -0
- data/lib/stripe/events/v2_payments_off_session_payment_requires_capture_event.rb +2 -2
- data/lib/stripe/object_types.rb +3 -0
- data/lib/stripe/params/invoice_create_preview_params.rb +42 -6
- data/lib/stripe/params/quote_create_params.rb +15 -3
- data/lib/stripe/params/quote_update_params.rb +15 -3
- data/lib/stripe/params/subscription_create_params.rb +17 -1
- data/lib/stripe/params/subscription_item_create_params.rb +17 -1
- data/lib/stripe/params/subscription_item_update_params.rb +17 -1
- data/lib/stripe/params/subscription_schedule_amend_params.rb +15 -3
- data/lib/stripe/params/subscription_schedule_create_params.rb +10 -2
- data/lib/stripe/params/subscription_schedule_update_params.rb +10 -2
- data/lib/stripe/params/subscription_update_params.rb +17 -1
- data/lib/stripe/params/v2/billing/collection_setting_create_params.rb +2 -2
- data/lib/stripe/params/v2/billing/collection_setting_update_params.rb +2 -2
- data/lib/stripe/params/v2/billing/service_action_create_params.rb +24 -0
- data/lib/stripe/params/v2/core/account_create_params.rb +118 -3
- data/lib/stripe/params/v2/core/account_token_create_params.rb +1259 -0
- data/lib/stripe/params/v2/core/account_token_retrieve_params.rb +10 -0
- data/lib/stripe/params/v2/core/account_update_params.rb +119 -4
- data/lib/stripe/params/v2/core/accounts/person_create_params.rb +4 -0
- data/lib/stripe/params/v2/core/accounts/person_token_create_params.rb +487 -0
- data/lib/stripe/params/v2/core/accounts/person_token_retrieve_params.rb +12 -0
- data/lib/stripe/params/v2/core/accounts/person_update_params.rb +4 -0
- data/lib/stripe/params/v2/core/event_list_params.rb +21 -21
- data/lib/stripe/params/v2/money_management/currency_conversion_create_params.rb +68 -0
- data/lib/stripe/params/v2/money_management/currency_conversion_list_params.rb +20 -0
- data/lib/stripe/params/v2/money_management/currency_conversion_retrieve_params.rb +10 -0
- data/lib/stripe/params/v2/money_management/inbound_transfer_create_params.rb +12 -0
- data/lib/stripe/params/v2/money_management/outbound_payment_create_params.rb +12 -0
- data/lib/stripe/params/v2/money_management/outbound_payment_quote_create_params.rb +12 -0
- data/lib/stripe/params/v2/money_management/outbound_transfer_create_params.rb +12 -0
- data/lib/stripe/params/v2/payments/off_session_payment_capture_params.rb +5 -9
- data/lib/stripe/params/v2/payments/off_session_payment_create_params.rb +13 -89
- data/lib/stripe/params/v2/test_helpers/financial_address_credit_params.rb +11 -0
- data/lib/stripe/params.rb +7 -0
- data/lib/stripe/resources/delegated_checkout/requested_session.rb +15 -1
- data/lib/stripe/resources/payment_method.rb +2 -2
- data/lib/stripe/resources/quote.rb +8 -118
- data/lib/stripe/resources/quote_line.rb +6 -0
- data/lib/stripe/resources/quote_preview_subscription_schedule.rb +7 -87
- data/lib/stripe/resources/subscription.rb +3 -87
- data/lib/stripe/resources/subscription_item.rb +24 -1
- data/lib/stripe/resources/subscription_schedule.rb +7 -87
- data/lib/stripe/resources/v2/billing/cadence.rb +2 -2
- data/lib/stripe/resources/v2/billing/collection_setting.rb +2 -2
- data/lib/stripe/resources/v2/billing/collection_setting_version.rb +2 -2
- data/lib/stripe/resources/v2/billing/meter_event.rb +2 -1
- data/lib/stripe/resources/v2/billing/service_action.rb +32 -2
- data/lib/stripe/resources/v2/core/account.rb +341 -10
- data/lib/stripe/resources/v2/core/account_person_token.rb +37 -0
- data/lib/stripe/resources/v2/core/account_token.rb +37 -0
- data/lib/stripe/resources/v2/core/event.rb +0 -2
- data/lib/stripe/resources/v2/financial_address_generated_microdeposits.rb +15 -1
- data/lib/stripe/resources/v2/money_management/adjustment.rb +16 -1
- data/lib/stripe/resources/v2/money_management/currency_conversion.rb +94 -0
- data/lib/stripe/resources/v2/money_management/financial_account.rb +49 -1
- data/lib/stripe/resources/v2/money_management/inbound_transfer.rb +52 -3
- data/lib/stripe/resources/v2/money_management/outbound_payment.rb +46 -2
- data/lib/stripe/resources/v2/money_management/outbound_payment_quote.rb +61 -3
- data/lib/stripe/resources/v2/money_management/outbound_transfer.rb +46 -2
- data/lib/stripe/resources/v2/money_management/received_credit.rb +32 -0
- data/lib/stripe/resources/v2/money_management/received_debit.rb +32 -0
- data/lib/stripe/resources/v2/money_management/transaction.rb +65 -1
- data/lib/stripe/resources/v2/money_management/transaction_entry.rb +49 -1
- data/lib/stripe/resources/v2/payments/off_session_payment.rb +23 -79
- data/lib/stripe/resources.rb +5 -186
- data/lib/stripe/services/payment_method_service.rb +1 -1
- data/lib/stripe/services/v2/core/account_service.rb +2 -1
- data/lib/stripe/services/v2/core/account_token_service.rb +32 -0
- data/lib/stripe/services/v2/core/accounts/person_token_service.rb +34 -0
- data/lib/stripe/services/v2/core_service.rb +2 -1
- data/lib/stripe/services/v2/money_management/currency_conversion_service.rb +45 -0
- data/lib/stripe/services/v2/money_management_service.rb +3 -1
- data/lib/stripe/services.rb +3 -0
- data/lib/stripe/version.rb +1 -1
- data/rbi/stripe.rbi +5579 -1470
- metadata +17 -188
- data/lib/stripe/events/v1_account_updated_event.rb +0 -44
- data/lib/stripe/events/v1_application_fee_created_event.rb +0 -44
- data/lib/stripe/events/v1_application_fee_refunded_event.rb +0 -44
- data/lib/stripe/events/v1_billing_portal_configuration_created_event.rb +0 -44
- data/lib/stripe/events/v1_billing_portal_configuration_updated_event.rb +0 -44
- data/lib/stripe/events/v1_capability_updated_event.rb +0 -44
- data/lib/stripe/events/v1_charge_captured_event.rb +0 -44
- data/lib/stripe/events/v1_charge_dispute_closed_event.rb +0 -44
- data/lib/stripe/events/v1_charge_dispute_created_event.rb +0 -44
- data/lib/stripe/events/v1_charge_dispute_funds_reinstated_event.rb +0 -44
- data/lib/stripe/events/v1_charge_dispute_funds_withdrawn_event.rb +0 -44
- data/lib/stripe/events/v1_charge_dispute_updated_event.rb +0 -44
- data/lib/stripe/events/v1_charge_expired_event.rb +0 -44
- data/lib/stripe/events/v1_charge_failed_event.rb +0 -44
- data/lib/stripe/events/v1_charge_pending_event.rb +0 -44
- data/lib/stripe/events/v1_charge_refund_updated_event.rb +0 -44
- data/lib/stripe/events/v1_charge_refunded_event.rb +0 -44
- data/lib/stripe/events/v1_charge_succeeded_event.rb +0 -44
- data/lib/stripe/events/v1_charge_updated_event.rb +0 -44
- data/lib/stripe/events/v1_checkout_session_async_payment_failed_event.rb +0 -44
- data/lib/stripe/events/v1_checkout_session_async_payment_succeeded_event.rb +0 -44
- data/lib/stripe/events/v1_checkout_session_completed_event.rb +0 -44
- data/lib/stripe/events/v1_checkout_session_expired_event.rb +0 -44
- data/lib/stripe/events/v1_climate_order_canceled_event.rb +0 -44
- data/lib/stripe/events/v1_climate_order_created_event.rb +0 -44
- data/lib/stripe/events/v1_climate_order_delayed_event.rb +0 -44
- data/lib/stripe/events/v1_climate_order_delivered_event.rb +0 -44
- data/lib/stripe/events/v1_climate_order_product_substituted_event.rb +0 -44
- data/lib/stripe/events/v1_climate_product_created_event.rb +0 -44
- data/lib/stripe/events/v1_climate_product_pricing_updated_event.rb +0 -44
- data/lib/stripe/events/v1_coupon_created_event.rb +0 -44
- data/lib/stripe/events/v1_coupon_deleted_event.rb +0 -44
- data/lib/stripe/events/v1_coupon_updated_event.rb +0 -44
- data/lib/stripe/events/v1_credit_note_created_event.rb +0 -44
- data/lib/stripe/events/v1_credit_note_updated_event.rb +0 -44
- data/lib/stripe/events/v1_credit_note_voided_event.rb +0 -44
- data/lib/stripe/events/v1_customer_created_event.rb +0 -44
- data/lib/stripe/events/v1_customer_deleted_event.rb +0 -44
- data/lib/stripe/events/v1_customer_subscription_created_event.rb +0 -44
- data/lib/stripe/events/v1_customer_subscription_deleted_event.rb +0 -44
- data/lib/stripe/events/v1_customer_subscription_paused_event.rb +0 -44
- data/lib/stripe/events/v1_customer_subscription_pending_update_applied_event.rb +0 -44
- data/lib/stripe/events/v1_customer_subscription_pending_update_expired_event.rb +0 -44
- data/lib/stripe/events/v1_customer_subscription_resumed_event.rb +0 -44
- data/lib/stripe/events/v1_customer_subscription_trial_will_end_event.rb +0 -44
- data/lib/stripe/events/v1_customer_subscription_updated_event.rb +0 -44
- data/lib/stripe/events/v1_customer_tax_id_created_event.rb +0 -44
- data/lib/stripe/events/v1_customer_tax_id_deleted_event.rb +0 -44
- data/lib/stripe/events/v1_customer_tax_id_updated_event.rb +0 -44
- data/lib/stripe/events/v1_customer_updated_event.rb +0 -44
- data/lib/stripe/events/v1_file_created_event.rb +0 -44
- data/lib/stripe/events/v1_financial_connections_account_created_event.rb +0 -44
- data/lib/stripe/events/v1_financial_connections_account_deactivated_event.rb +0 -44
- data/lib/stripe/events/v1_financial_connections_account_disconnected_event.rb +0 -44
- data/lib/stripe/events/v1_financial_connections_account_reactivated_event.rb +0 -44
- data/lib/stripe/events/v1_financial_connections_account_refreshed_balance_event.rb +0 -44
- data/lib/stripe/events/v1_financial_connections_account_refreshed_ownership_event.rb +0 -44
- data/lib/stripe/events/v1_financial_connections_account_refreshed_transactions_event.rb +0 -44
- data/lib/stripe/events/v1_identity_verification_session_canceled_event.rb +0 -44
- data/lib/stripe/events/v1_identity_verification_session_created_event.rb +0 -44
- data/lib/stripe/events/v1_identity_verification_session_processing_event.rb +0 -44
- data/lib/stripe/events/v1_identity_verification_session_redacted_event.rb +0 -44
- data/lib/stripe/events/v1_identity_verification_session_requires_input_event.rb +0 -44
- data/lib/stripe/events/v1_identity_verification_session_verified_event.rb +0 -44
- data/lib/stripe/events/v1_invoice_created_event.rb +0 -44
- data/lib/stripe/events/v1_invoice_deleted_event.rb +0 -44
- data/lib/stripe/events/v1_invoice_finalization_failed_event.rb +0 -44
- data/lib/stripe/events/v1_invoice_finalized_event.rb +0 -44
- data/lib/stripe/events/v1_invoice_marked_uncollectible_event.rb +0 -44
- data/lib/stripe/events/v1_invoice_overdue_event.rb +0 -44
- data/lib/stripe/events/v1_invoice_overpaid_event.rb +0 -44
- data/lib/stripe/events/v1_invoice_paid_event.rb +0 -44
- data/lib/stripe/events/v1_invoice_payment_action_required_event.rb +0 -44
- data/lib/stripe/events/v1_invoice_payment_failed_event.rb +0 -44
- data/lib/stripe/events/v1_invoice_payment_paid_event.rb +0 -44
- data/lib/stripe/events/v1_invoice_payment_succeeded_event.rb +0 -44
- data/lib/stripe/events/v1_invoice_sent_event.rb +0 -44
- data/lib/stripe/events/v1_invoice_upcoming_event.rb +0 -44
- data/lib/stripe/events/v1_invoice_updated_event.rb +0 -44
- data/lib/stripe/events/v1_invoice_voided_event.rb +0 -44
- data/lib/stripe/events/v1_invoice_will_be_due_event.rb +0 -44
- data/lib/stripe/events/v1_invoiceitem_created_event.rb +0 -44
- data/lib/stripe/events/v1_invoiceitem_deleted_event.rb +0 -44
- data/lib/stripe/events/v1_issuing_authorization_created_event.rb +0 -44
- data/lib/stripe/events/v1_issuing_authorization_request_event.rb +0 -44
- data/lib/stripe/events/v1_issuing_authorization_updated_event.rb +0 -44
- data/lib/stripe/events/v1_issuing_card_created_event.rb +0 -44
- data/lib/stripe/events/v1_issuing_card_updated_event.rb +0 -44
- data/lib/stripe/events/v1_issuing_cardholder_created_event.rb +0 -44
- data/lib/stripe/events/v1_issuing_cardholder_updated_event.rb +0 -44
- data/lib/stripe/events/v1_issuing_dispute_closed_event.rb +0 -44
- data/lib/stripe/events/v1_issuing_dispute_created_event.rb +0 -44
- data/lib/stripe/events/v1_issuing_dispute_funds_reinstated_event.rb +0 -44
- data/lib/stripe/events/v1_issuing_dispute_funds_rescinded_event.rb +0 -44
- data/lib/stripe/events/v1_issuing_dispute_submitted_event.rb +0 -44
- data/lib/stripe/events/v1_issuing_dispute_updated_event.rb +0 -44
- data/lib/stripe/events/v1_issuing_personalization_design_activated_event.rb +0 -44
- data/lib/stripe/events/v1_issuing_personalization_design_deactivated_event.rb +0 -44
- data/lib/stripe/events/v1_issuing_personalization_design_rejected_event.rb +0 -44
- data/lib/stripe/events/v1_issuing_personalization_design_updated_event.rb +0 -44
- data/lib/stripe/events/v1_issuing_token_created_event.rb +0 -44
- data/lib/stripe/events/v1_issuing_token_updated_event.rb +0 -44
- data/lib/stripe/events/v1_issuing_transaction_created_event.rb +0 -44
- data/lib/stripe/events/v1_issuing_transaction_purchase_details_receipt_updated_event.rb +0 -44
- data/lib/stripe/events/v1_issuing_transaction_updated_event.rb +0 -44
- data/lib/stripe/events/v1_mandate_updated_event.rb +0 -44
- data/lib/stripe/events/v1_payment_intent_amount_capturable_updated_event.rb +0 -44
- data/lib/stripe/events/v1_payment_intent_canceled_event.rb +0 -44
- data/lib/stripe/events/v1_payment_intent_created_event.rb +0 -44
- data/lib/stripe/events/v1_payment_intent_partially_funded_event.rb +0 -44
- data/lib/stripe/events/v1_payment_intent_payment_failed_event.rb +0 -44
- data/lib/stripe/events/v1_payment_intent_processing_event.rb +0 -44
- data/lib/stripe/events/v1_payment_intent_requires_action_event.rb +0 -44
- data/lib/stripe/events/v1_payment_intent_succeeded_event.rb +0 -44
- data/lib/stripe/events/v1_payment_link_created_event.rb +0 -44
- data/lib/stripe/events/v1_payment_link_updated_event.rb +0 -44
- data/lib/stripe/events/v1_payment_method_attached_event.rb +0 -44
- data/lib/stripe/events/v1_payment_method_automatically_updated_event.rb +0 -44
- data/lib/stripe/events/v1_payment_method_detached_event.rb +0 -44
- data/lib/stripe/events/v1_payment_method_updated_event.rb +0 -44
- data/lib/stripe/events/v1_payout_canceled_event.rb +0 -44
- data/lib/stripe/events/v1_payout_created_event.rb +0 -44
- data/lib/stripe/events/v1_payout_failed_event.rb +0 -44
- data/lib/stripe/events/v1_payout_paid_event.rb +0 -44
- data/lib/stripe/events/v1_payout_reconciliation_completed_event.rb +0 -44
- data/lib/stripe/events/v1_payout_updated_event.rb +0 -44
- data/lib/stripe/events/v1_person_created_event.rb +0 -44
- data/lib/stripe/events/v1_person_deleted_event.rb +0 -44
- data/lib/stripe/events/v1_person_updated_event.rb +0 -44
- data/lib/stripe/events/v1_plan_created_event.rb +0 -44
- data/lib/stripe/events/v1_plan_deleted_event.rb +0 -44
- data/lib/stripe/events/v1_plan_updated_event.rb +0 -44
- data/lib/stripe/events/v1_price_created_event.rb +0 -44
- data/lib/stripe/events/v1_price_deleted_event.rb +0 -44
- data/lib/stripe/events/v1_price_updated_event.rb +0 -44
- data/lib/stripe/events/v1_product_created_event.rb +0 -44
- data/lib/stripe/events/v1_product_deleted_event.rb +0 -44
- data/lib/stripe/events/v1_product_updated_event.rb +0 -44
- data/lib/stripe/events/v1_promotion_code_created_event.rb +0 -44
- data/lib/stripe/events/v1_promotion_code_updated_event.rb +0 -44
- data/lib/stripe/events/v1_quote_accepted_event.rb +0 -44
- data/lib/stripe/events/v1_quote_canceled_event.rb +0 -44
- data/lib/stripe/events/v1_quote_created_event.rb +0 -44
- data/lib/stripe/events/v1_quote_finalized_event.rb +0 -44
- data/lib/stripe/events/v1_radar_early_fraud_warning_updated_event.rb +0 -44
- data/lib/stripe/events/v1_refund_created_event.rb +0 -44
- data/lib/stripe/events/v1_refund_failed_event.rb +0 -44
- data/lib/stripe/events/v1_refund_updated_event.rb +0 -44
- data/lib/stripe/events/v1_review_closed_event.rb +0 -44
- data/lib/stripe/events/v1_review_opened_event.rb +0 -44
- data/lib/stripe/events/v1_setup_intent_canceled_event.rb +0 -44
- data/lib/stripe/events/v1_setup_intent_created_event.rb +0 -44
- data/lib/stripe/events/v1_setup_intent_requires_action_event.rb +0 -44
- data/lib/stripe/events/v1_setup_intent_setup_failed_event.rb +0 -44
- data/lib/stripe/events/v1_setup_intent_succeeded_event.rb +0 -44
- data/lib/stripe/events/v1_source_canceled_event.rb +0 -44
- data/lib/stripe/events/v1_source_chargeable_event.rb +0 -44
- data/lib/stripe/events/v1_source_failed_event.rb +0 -44
- data/lib/stripe/events/v1_source_refund_attributes_required_event.rb +0 -44
- data/lib/stripe/events/v1_subscription_schedule_aborted_event.rb +0 -44
- data/lib/stripe/events/v1_subscription_schedule_canceled_event.rb +0 -44
- data/lib/stripe/events/v1_subscription_schedule_completed_event.rb +0 -44
- data/lib/stripe/events/v1_subscription_schedule_created_event.rb +0 -44
- data/lib/stripe/events/v1_subscription_schedule_expiring_event.rb +0 -44
- data/lib/stripe/events/v1_subscription_schedule_released_event.rb +0 -44
- data/lib/stripe/events/v1_subscription_schedule_updated_event.rb +0 -44
- data/lib/stripe/events/v1_tax_rate_created_event.rb +0 -44
- data/lib/stripe/events/v1_tax_rate_updated_event.rb +0 -44
- data/lib/stripe/events/v1_terminal_reader_action_failed_event.rb +0 -44
- data/lib/stripe/events/v1_terminal_reader_action_succeeded_event.rb +0 -44
- data/lib/stripe/events/v1_terminal_reader_action_updated_event.rb +0 -44
- data/lib/stripe/events/v1_test_helpers_test_clock_advancing_event.rb +0 -44
- data/lib/stripe/events/v1_test_helpers_test_clock_created_event.rb +0 -44
- data/lib/stripe/events/v1_test_helpers_test_clock_deleted_event.rb +0 -44
- data/lib/stripe/events/v1_test_helpers_test_clock_internal_failure_event.rb +0 -44
- data/lib/stripe/events/v1_test_helpers_test_clock_ready_event.rb +0 -44
- data/lib/stripe/events/v1_topup_canceled_event.rb +0 -44
- data/lib/stripe/events/v1_topup_created_event.rb +0 -44
- data/lib/stripe/events/v1_topup_failed_event.rb +0 -44
- data/lib/stripe/events/v1_topup_reversed_event.rb +0 -44
- data/lib/stripe/events/v1_topup_succeeded_event.rb +0 -44
- data/lib/stripe/events/v1_transfer_created_event.rb +0 -44
- data/lib/stripe/events/v1_transfer_reversed_event.rb +0 -44
- data/lib/stripe/events/v1_transfer_updated_event.rb +0 -44
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
# File generated from our OpenAPI spec
|
|
2
|
-
# frozen_string_literal: true
|
|
3
|
-
|
|
4
|
-
module Stripe
|
|
5
|
-
module Events
|
|
6
|
-
# Occurs whenever a customer is signed up for a new plan.
|
|
7
|
-
class V1CustomerSubscriptionCreatedEvent < Stripe::V2::Core::Event
|
|
8
|
-
def self.lookup_type
|
|
9
|
-
"v1.customer.subscription.created"
|
|
10
|
-
end
|
|
11
|
-
|
|
12
|
-
# Retrieves the related object from the API. Makes an API request on every call.
|
|
13
|
-
def fetch_related_object
|
|
14
|
-
_request(
|
|
15
|
-
method: :get,
|
|
16
|
-
path: related_object.url,
|
|
17
|
-
base_address: :api,
|
|
18
|
-
opts: { stripe_context: context }
|
|
19
|
-
)
|
|
20
|
-
end
|
|
21
|
-
attr_reader :related_object
|
|
22
|
-
end
|
|
23
|
-
|
|
24
|
-
# Occurs whenever a customer is signed up for a new plan.
|
|
25
|
-
class V1CustomerSubscriptionCreatedEventNotification < Stripe::V2::Core::EventNotification
|
|
26
|
-
def self.lookup_type
|
|
27
|
-
"v1.customer.subscription.created"
|
|
28
|
-
end
|
|
29
|
-
|
|
30
|
-
attr_reader :related_object
|
|
31
|
-
|
|
32
|
-
# Retrieves the Subscription related to this EventNotification from the Stripe API. Makes an API request on every call.
|
|
33
|
-
def fetch_related_object
|
|
34
|
-
resp = @client.raw_request(
|
|
35
|
-
:get,
|
|
36
|
-
related_object.url,
|
|
37
|
-
opts: { stripe_context: context },
|
|
38
|
-
usage: ["fetch_related_object"]
|
|
39
|
-
)
|
|
40
|
-
@client.deserialize(resp.http_body, api_mode: Util.get_api_mode(related_object.url))
|
|
41
|
-
end
|
|
42
|
-
end
|
|
43
|
-
end
|
|
44
|
-
end
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
# File generated from our OpenAPI spec
|
|
2
|
-
# frozen_string_literal: true
|
|
3
|
-
|
|
4
|
-
module Stripe
|
|
5
|
-
module Events
|
|
6
|
-
# Occurs whenever a customer's subscription ends.
|
|
7
|
-
class V1CustomerSubscriptionDeletedEvent < Stripe::V2::Core::Event
|
|
8
|
-
def self.lookup_type
|
|
9
|
-
"v1.customer.subscription.deleted"
|
|
10
|
-
end
|
|
11
|
-
|
|
12
|
-
# Retrieves the related object from the API. Makes an API request on every call.
|
|
13
|
-
def fetch_related_object
|
|
14
|
-
_request(
|
|
15
|
-
method: :get,
|
|
16
|
-
path: related_object.url,
|
|
17
|
-
base_address: :api,
|
|
18
|
-
opts: { stripe_context: context }
|
|
19
|
-
)
|
|
20
|
-
end
|
|
21
|
-
attr_reader :related_object
|
|
22
|
-
end
|
|
23
|
-
|
|
24
|
-
# Occurs whenever a customer's subscription ends.
|
|
25
|
-
class V1CustomerSubscriptionDeletedEventNotification < Stripe::V2::Core::EventNotification
|
|
26
|
-
def self.lookup_type
|
|
27
|
-
"v1.customer.subscription.deleted"
|
|
28
|
-
end
|
|
29
|
-
|
|
30
|
-
attr_reader :related_object
|
|
31
|
-
|
|
32
|
-
# Retrieves the Subscription related to this EventNotification from the Stripe API. Makes an API request on every call.
|
|
33
|
-
def fetch_related_object
|
|
34
|
-
resp = @client.raw_request(
|
|
35
|
-
:get,
|
|
36
|
-
related_object.url,
|
|
37
|
-
opts: { stripe_context: context },
|
|
38
|
-
usage: ["fetch_related_object"]
|
|
39
|
-
)
|
|
40
|
-
@client.deserialize(resp.http_body, api_mode: Util.get_api_mode(related_object.url))
|
|
41
|
-
end
|
|
42
|
-
end
|
|
43
|
-
end
|
|
44
|
-
end
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
# File generated from our OpenAPI spec
|
|
2
|
-
# frozen_string_literal: true
|
|
3
|
-
|
|
4
|
-
module Stripe
|
|
5
|
-
module Events
|
|
6
|
-
# Occurs whenever a customer's subscription is paused. Only applies when subscriptions enter `status=paused`, not when [payment collection](https://docs.stripe.com/billing/subscriptions/pause) is paused.
|
|
7
|
-
class V1CustomerSubscriptionPausedEvent < Stripe::V2::Core::Event
|
|
8
|
-
def self.lookup_type
|
|
9
|
-
"v1.customer.subscription.paused"
|
|
10
|
-
end
|
|
11
|
-
|
|
12
|
-
# Retrieves the related object from the API. Makes an API request on every call.
|
|
13
|
-
def fetch_related_object
|
|
14
|
-
_request(
|
|
15
|
-
method: :get,
|
|
16
|
-
path: related_object.url,
|
|
17
|
-
base_address: :api,
|
|
18
|
-
opts: { stripe_context: context }
|
|
19
|
-
)
|
|
20
|
-
end
|
|
21
|
-
attr_reader :related_object
|
|
22
|
-
end
|
|
23
|
-
|
|
24
|
-
# Occurs whenever a customer's subscription is paused. Only applies when subscriptions enter `status=paused`, not when [payment collection](https://docs.stripe.com/billing/subscriptions/pause) is paused.
|
|
25
|
-
class V1CustomerSubscriptionPausedEventNotification < Stripe::V2::Core::EventNotification
|
|
26
|
-
def self.lookup_type
|
|
27
|
-
"v1.customer.subscription.paused"
|
|
28
|
-
end
|
|
29
|
-
|
|
30
|
-
attr_reader :related_object
|
|
31
|
-
|
|
32
|
-
# Retrieves the Subscription related to this EventNotification from the Stripe API. Makes an API request on every call.
|
|
33
|
-
def fetch_related_object
|
|
34
|
-
resp = @client.raw_request(
|
|
35
|
-
:get,
|
|
36
|
-
related_object.url,
|
|
37
|
-
opts: { stripe_context: context },
|
|
38
|
-
usage: ["fetch_related_object"]
|
|
39
|
-
)
|
|
40
|
-
@client.deserialize(resp.http_body, api_mode: Util.get_api_mode(related_object.url))
|
|
41
|
-
end
|
|
42
|
-
end
|
|
43
|
-
end
|
|
44
|
-
end
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
# File generated from our OpenAPI spec
|
|
2
|
-
# frozen_string_literal: true
|
|
3
|
-
|
|
4
|
-
module Stripe
|
|
5
|
-
module Events
|
|
6
|
-
# Occurs whenever a customer's subscription's pending update is applied, and the subscription is updated.
|
|
7
|
-
class V1CustomerSubscriptionPendingUpdateAppliedEvent < Stripe::V2::Core::Event
|
|
8
|
-
def self.lookup_type
|
|
9
|
-
"v1.customer.subscription.pending_update_applied"
|
|
10
|
-
end
|
|
11
|
-
|
|
12
|
-
# Retrieves the related object from the API. Makes an API request on every call.
|
|
13
|
-
def fetch_related_object
|
|
14
|
-
_request(
|
|
15
|
-
method: :get,
|
|
16
|
-
path: related_object.url,
|
|
17
|
-
base_address: :api,
|
|
18
|
-
opts: { stripe_context: context }
|
|
19
|
-
)
|
|
20
|
-
end
|
|
21
|
-
attr_reader :related_object
|
|
22
|
-
end
|
|
23
|
-
|
|
24
|
-
# Occurs whenever a customer's subscription's pending update is applied, and the subscription is updated.
|
|
25
|
-
class V1CustomerSubscriptionPendingUpdateAppliedEventNotification < Stripe::V2::Core::EventNotification
|
|
26
|
-
def self.lookup_type
|
|
27
|
-
"v1.customer.subscription.pending_update_applied"
|
|
28
|
-
end
|
|
29
|
-
|
|
30
|
-
attr_reader :related_object
|
|
31
|
-
|
|
32
|
-
# Retrieves the Subscription related to this EventNotification from the Stripe API. Makes an API request on every call.
|
|
33
|
-
def fetch_related_object
|
|
34
|
-
resp = @client.raw_request(
|
|
35
|
-
:get,
|
|
36
|
-
related_object.url,
|
|
37
|
-
opts: { stripe_context: context },
|
|
38
|
-
usage: ["fetch_related_object"]
|
|
39
|
-
)
|
|
40
|
-
@client.deserialize(resp.http_body, api_mode: Util.get_api_mode(related_object.url))
|
|
41
|
-
end
|
|
42
|
-
end
|
|
43
|
-
end
|
|
44
|
-
end
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
# File generated from our OpenAPI spec
|
|
2
|
-
# frozen_string_literal: true
|
|
3
|
-
|
|
4
|
-
module Stripe
|
|
5
|
-
module Events
|
|
6
|
-
# Occurs whenever a customer's subscription's pending update expires before the related invoice is paid.
|
|
7
|
-
class V1CustomerSubscriptionPendingUpdateExpiredEvent < Stripe::V2::Core::Event
|
|
8
|
-
def self.lookup_type
|
|
9
|
-
"v1.customer.subscription.pending_update_expired"
|
|
10
|
-
end
|
|
11
|
-
|
|
12
|
-
# Retrieves the related object from the API. Makes an API request on every call.
|
|
13
|
-
def fetch_related_object
|
|
14
|
-
_request(
|
|
15
|
-
method: :get,
|
|
16
|
-
path: related_object.url,
|
|
17
|
-
base_address: :api,
|
|
18
|
-
opts: { stripe_context: context }
|
|
19
|
-
)
|
|
20
|
-
end
|
|
21
|
-
attr_reader :related_object
|
|
22
|
-
end
|
|
23
|
-
|
|
24
|
-
# Occurs whenever a customer's subscription's pending update expires before the related invoice is paid.
|
|
25
|
-
class V1CustomerSubscriptionPendingUpdateExpiredEventNotification < Stripe::V2::Core::EventNotification
|
|
26
|
-
def self.lookup_type
|
|
27
|
-
"v1.customer.subscription.pending_update_expired"
|
|
28
|
-
end
|
|
29
|
-
|
|
30
|
-
attr_reader :related_object
|
|
31
|
-
|
|
32
|
-
# Retrieves the Subscription related to this EventNotification from the Stripe API. Makes an API request on every call.
|
|
33
|
-
def fetch_related_object
|
|
34
|
-
resp = @client.raw_request(
|
|
35
|
-
:get,
|
|
36
|
-
related_object.url,
|
|
37
|
-
opts: { stripe_context: context },
|
|
38
|
-
usage: ["fetch_related_object"]
|
|
39
|
-
)
|
|
40
|
-
@client.deserialize(resp.http_body, api_mode: Util.get_api_mode(related_object.url))
|
|
41
|
-
end
|
|
42
|
-
end
|
|
43
|
-
end
|
|
44
|
-
end
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
# File generated from our OpenAPI spec
|
|
2
|
-
# frozen_string_literal: true
|
|
3
|
-
|
|
4
|
-
module Stripe
|
|
5
|
-
module Events
|
|
6
|
-
# Occurs whenever a customer's subscription is no longer paused. Only applies when a `status=paused` subscription is [resumed](https://docs.stripe.com/api/subscriptions/resume), not when [payment collection](https://docs.stripe.com/billing/subscriptions/pause) is resumed.
|
|
7
|
-
class V1CustomerSubscriptionResumedEvent < Stripe::V2::Core::Event
|
|
8
|
-
def self.lookup_type
|
|
9
|
-
"v1.customer.subscription.resumed"
|
|
10
|
-
end
|
|
11
|
-
|
|
12
|
-
# Retrieves the related object from the API. Makes an API request on every call.
|
|
13
|
-
def fetch_related_object
|
|
14
|
-
_request(
|
|
15
|
-
method: :get,
|
|
16
|
-
path: related_object.url,
|
|
17
|
-
base_address: :api,
|
|
18
|
-
opts: { stripe_context: context }
|
|
19
|
-
)
|
|
20
|
-
end
|
|
21
|
-
attr_reader :related_object
|
|
22
|
-
end
|
|
23
|
-
|
|
24
|
-
# Occurs whenever a customer's subscription is no longer paused. Only applies when a `status=paused` subscription is [resumed](https://docs.stripe.com/api/subscriptions/resume), not when [payment collection](https://docs.stripe.com/billing/subscriptions/pause) is resumed.
|
|
25
|
-
class V1CustomerSubscriptionResumedEventNotification < Stripe::V2::Core::EventNotification
|
|
26
|
-
def self.lookup_type
|
|
27
|
-
"v1.customer.subscription.resumed"
|
|
28
|
-
end
|
|
29
|
-
|
|
30
|
-
attr_reader :related_object
|
|
31
|
-
|
|
32
|
-
# Retrieves the Subscription related to this EventNotification from the Stripe API. Makes an API request on every call.
|
|
33
|
-
def fetch_related_object
|
|
34
|
-
resp = @client.raw_request(
|
|
35
|
-
:get,
|
|
36
|
-
related_object.url,
|
|
37
|
-
opts: { stripe_context: context },
|
|
38
|
-
usage: ["fetch_related_object"]
|
|
39
|
-
)
|
|
40
|
-
@client.deserialize(resp.http_body, api_mode: Util.get_api_mode(related_object.url))
|
|
41
|
-
end
|
|
42
|
-
end
|
|
43
|
-
end
|
|
44
|
-
end
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
# File generated from our OpenAPI spec
|
|
2
|
-
# frozen_string_literal: true
|
|
3
|
-
|
|
4
|
-
module Stripe
|
|
5
|
-
module Events
|
|
6
|
-
# Occurs three days before a subscription's trial period is scheduled to end, or when a trial is ended immediately (using `trial_end=now`).
|
|
7
|
-
class V1CustomerSubscriptionTrialWillEndEvent < Stripe::V2::Core::Event
|
|
8
|
-
def self.lookup_type
|
|
9
|
-
"v1.customer.subscription.trial_will_end"
|
|
10
|
-
end
|
|
11
|
-
|
|
12
|
-
# Retrieves the related object from the API. Makes an API request on every call.
|
|
13
|
-
def fetch_related_object
|
|
14
|
-
_request(
|
|
15
|
-
method: :get,
|
|
16
|
-
path: related_object.url,
|
|
17
|
-
base_address: :api,
|
|
18
|
-
opts: { stripe_context: context }
|
|
19
|
-
)
|
|
20
|
-
end
|
|
21
|
-
attr_reader :related_object
|
|
22
|
-
end
|
|
23
|
-
|
|
24
|
-
# Occurs three days before a subscription's trial period is scheduled to end, or when a trial is ended immediately (using `trial_end=now`).
|
|
25
|
-
class V1CustomerSubscriptionTrialWillEndEventNotification < Stripe::V2::Core::EventNotification
|
|
26
|
-
def self.lookup_type
|
|
27
|
-
"v1.customer.subscription.trial_will_end"
|
|
28
|
-
end
|
|
29
|
-
|
|
30
|
-
attr_reader :related_object
|
|
31
|
-
|
|
32
|
-
# Retrieves the Subscription related to this EventNotification from the Stripe API. Makes an API request on every call.
|
|
33
|
-
def fetch_related_object
|
|
34
|
-
resp = @client.raw_request(
|
|
35
|
-
:get,
|
|
36
|
-
related_object.url,
|
|
37
|
-
opts: { stripe_context: context },
|
|
38
|
-
usage: ["fetch_related_object"]
|
|
39
|
-
)
|
|
40
|
-
@client.deserialize(resp.http_body, api_mode: Util.get_api_mode(related_object.url))
|
|
41
|
-
end
|
|
42
|
-
end
|
|
43
|
-
end
|
|
44
|
-
end
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
# File generated from our OpenAPI spec
|
|
2
|
-
# frozen_string_literal: true
|
|
3
|
-
|
|
4
|
-
module Stripe
|
|
5
|
-
module Events
|
|
6
|
-
# Occurs whenever a subscription changes (e.g., switching from one plan to another, or changing the status from trial to active).
|
|
7
|
-
class V1CustomerSubscriptionUpdatedEvent < Stripe::V2::Core::Event
|
|
8
|
-
def self.lookup_type
|
|
9
|
-
"v1.customer.subscription.updated"
|
|
10
|
-
end
|
|
11
|
-
|
|
12
|
-
# Retrieves the related object from the API. Makes an API request on every call.
|
|
13
|
-
def fetch_related_object
|
|
14
|
-
_request(
|
|
15
|
-
method: :get,
|
|
16
|
-
path: related_object.url,
|
|
17
|
-
base_address: :api,
|
|
18
|
-
opts: { stripe_context: context }
|
|
19
|
-
)
|
|
20
|
-
end
|
|
21
|
-
attr_reader :related_object
|
|
22
|
-
end
|
|
23
|
-
|
|
24
|
-
# Occurs whenever a subscription changes (e.g., switching from one plan to another, or changing the status from trial to active).
|
|
25
|
-
class V1CustomerSubscriptionUpdatedEventNotification < Stripe::V2::Core::EventNotification
|
|
26
|
-
def self.lookup_type
|
|
27
|
-
"v1.customer.subscription.updated"
|
|
28
|
-
end
|
|
29
|
-
|
|
30
|
-
attr_reader :related_object
|
|
31
|
-
|
|
32
|
-
# Retrieves the Subscription related to this EventNotification from the Stripe API. Makes an API request on every call.
|
|
33
|
-
def fetch_related_object
|
|
34
|
-
resp = @client.raw_request(
|
|
35
|
-
:get,
|
|
36
|
-
related_object.url,
|
|
37
|
-
opts: { stripe_context: context },
|
|
38
|
-
usage: ["fetch_related_object"]
|
|
39
|
-
)
|
|
40
|
-
@client.deserialize(resp.http_body, api_mode: Util.get_api_mode(related_object.url))
|
|
41
|
-
end
|
|
42
|
-
end
|
|
43
|
-
end
|
|
44
|
-
end
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
# File generated from our OpenAPI spec
|
|
2
|
-
# frozen_string_literal: true
|
|
3
|
-
|
|
4
|
-
module Stripe
|
|
5
|
-
module Events
|
|
6
|
-
# Occurs whenever a tax ID is created for a customer.
|
|
7
|
-
class V1CustomerTaxIdCreatedEvent < Stripe::V2::Core::Event
|
|
8
|
-
def self.lookup_type
|
|
9
|
-
"v1.customer.tax_id.created"
|
|
10
|
-
end
|
|
11
|
-
|
|
12
|
-
# Retrieves the related object from the API. Makes an API request on every call.
|
|
13
|
-
def fetch_related_object
|
|
14
|
-
_request(
|
|
15
|
-
method: :get,
|
|
16
|
-
path: related_object.url,
|
|
17
|
-
base_address: :api,
|
|
18
|
-
opts: { stripe_context: context }
|
|
19
|
-
)
|
|
20
|
-
end
|
|
21
|
-
attr_reader :related_object
|
|
22
|
-
end
|
|
23
|
-
|
|
24
|
-
# Occurs whenever a tax ID is created for a customer.
|
|
25
|
-
class V1CustomerTaxIdCreatedEventNotification < Stripe::V2::Core::EventNotification
|
|
26
|
-
def self.lookup_type
|
|
27
|
-
"v1.customer.tax_id.created"
|
|
28
|
-
end
|
|
29
|
-
|
|
30
|
-
attr_reader :related_object
|
|
31
|
-
|
|
32
|
-
# Retrieves the TaxId related to this EventNotification from the Stripe API. Makes an API request on every call.
|
|
33
|
-
def fetch_related_object
|
|
34
|
-
resp = @client.raw_request(
|
|
35
|
-
:get,
|
|
36
|
-
related_object.url,
|
|
37
|
-
opts: { stripe_context: context },
|
|
38
|
-
usage: ["fetch_related_object"]
|
|
39
|
-
)
|
|
40
|
-
@client.deserialize(resp.http_body, api_mode: Util.get_api_mode(related_object.url))
|
|
41
|
-
end
|
|
42
|
-
end
|
|
43
|
-
end
|
|
44
|
-
end
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
# File generated from our OpenAPI spec
|
|
2
|
-
# frozen_string_literal: true
|
|
3
|
-
|
|
4
|
-
module Stripe
|
|
5
|
-
module Events
|
|
6
|
-
# Occurs whenever a tax ID is deleted from a customer.
|
|
7
|
-
class V1CustomerTaxIdDeletedEvent < Stripe::V2::Core::Event
|
|
8
|
-
def self.lookup_type
|
|
9
|
-
"v1.customer.tax_id.deleted"
|
|
10
|
-
end
|
|
11
|
-
|
|
12
|
-
# Retrieves the related object from the API. Makes an API request on every call.
|
|
13
|
-
def fetch_related_object
|
|
14
|
-
_request(
|
|
15
|
-
method: :get,
|
|
16
|
-
path: related_object.url,
|
|
17
|
-
base_address: :api,
|
|
18
|
-
opts: { stripe_context: context }
|
|
19
|
-
)
|
|
20
|
-
end
|
|
21
|
-
attr_reader :related_object
|
|
22
|
-
end
|
|
23
|
-
|
|
24
|
-
# Occurs whenever a tax ID is deleted from a customer.
|
|
25
|
-
class V1CustomerTaxIdDeletedEventNotification < Stripe::V2::Core::EventNotification
|
|
26
|
-
def self.lookup_type
|
|
27
|
-
"v1.customer.tax_id.deleted"
|
|
28
|
-
end
|
|
29
|
-
|
|
30
|
-
attr_reader :related_object
|
|
31
|
-
|
|
32
|
-
# Retrieves the TaxId related to this EventNotification from the Stripe API. Makes an API request on every call.
|
|
33
|
-
def fetch_related_object
|
|
34
|
-
resp = @client.raw_request(
|
|
35
|
-
:get,
|
|
36
|
-
related_object.url,
|
|
37
|
-
opts: { stripe_context: context },
|
|
38
|
-
usage: ["fetch_related_object"]
|
|
39
|
-
)
|
|
40
|
-
@client.deserialize(resp.http_body, api_mode: Util.get_api_mode(related_object.url))
|
|
41
|
-
end
|
|
42
|
-
end
|
|
43
|
-
end
|
|
44
|
-
end
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
# File generated from our OpenAPI spec
|
|
2
|
-
# frozen_string_literal: true
|
|
3
|
-
|
|
4
|
-
module Stripe
|
|
5
|
-
module Events
|
|
6
|
-
# Occurs whenever a customer's tax ID is updated.
|
|
7
|
-
class V1CustomerTaxIdUpdatedEvent < Stripe::V2::Core::Event
|
|
8
|
-
def self.lookup_type
|
|
9
|
-
"v1.customer.tax_id.updated"
|
|
10
|
-
end
|
|
11
|
-
|
|
12
|
-
# Retrieves the related object from the API. Makes an API request on every call.
|
|
13
|
-
def fetch_related_object
|
|
14
|
-
_request(
|
|
15
|
-
method: :get,
|
|
16
|
-
path: related_object.url,
|
|
17
|
-
base_address: :api,
|
|
18
|
-
opts: { stripe_context: context }
|
|
19
|
-
)
|
|
20
|
-
end
|
|
21
|
-
attr_reader :related_object
|
|
22
|
-
end
|
|
23
|
-
|
|
24
|
-
# Occurs whenever a customer's tax ID is updated.
|
|
25
|
-
class V1CustomerTaxIdUpdatedEventNotification < Stripe::V2::Core::EventNotification
|
|
26
|
-
def self.lookup_type
|
|
27
|
-
"v1.customer.tax_id.updated"
|
|
28
|
-
end
|
|
29
|
-
|
|
30
|
-
attr_reader :related_object
|
|
31
|
-
|
|
32
|
-
# Retrieves the TaxId related to this EventNotification from the Stripe API. Makes an API request on every call.
|
|
33
|
-
def fetch_related_object
|
|
34
|
-
resp = @client.raw_request(
|
|
35
|
-
:get,
|
|
36
|
-
related_object.url,
|
|
37
|
-
opts: { stripe_context: context },
|
|
38
|
-
usage: ["fetch_related_object"]
|
|
39
|
-
)
|
|
40
|
-
@client.deserialize(resp.http_body, api_mode: Util.get_api_mode(related_object.url))
|
|
41
|
-
end
|
|
42
|
-
end
|
|
43
|
-
end
|
|
44
|
-
end
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
# File generated from our OpenAPI spec
|
|
2
|
-
# frozen_string_literal: true
|
|
3
|
-
|
|
4
|
-
module Stripe
|
|
5
|
-
module Events
|
|
6
|
-
# Occurs whenever any property of a customer changes.
|
|
7
|
-
class V1CustomerUpdatedEvent < Stripe::V2::Core::Event
|
|
8
|
-
def self.lookup_type
|
|
9
|
-
"v1.customer.updated"
|
|
10
|
-
end
|
|
11
|
-
|
|
12
|
-
# Retrieves the related object from the API. Makes an API request on every call.
|
|
13
|
-
def fetch_related_object
|
|
14
|
-
_request(
|
|
15
|
-
method: :get,
|
|
16
|
-
path: related_object.url,
|
|
17
|
-
base_address: :api,
|
|
18
|
-
opts: { stripe_context: context }
|
|
19
|
-
)
|
|
20
|
-
end
|
|
21
|
-
attr_reader :related_object
|
|
22
|
-
end
|
|
23
|
-
|
|
24
|
-
# Occurs whenever any property of a customer changes.
|
|
25
|
-
class V1CustomerUpdatedEventNotification < Stripe::V2::Core::EventNotification
|
|
26
|
-
def self.lookup_type
|
|
27
|
-
"v1.customer.updated"
|
|
28
|
-
end
|
|
29
|
-
|
|
30
|
-
attr_reader :related_object
|
|
31
|
-
|
|
32
|
-
# Retrieves the Customer related to this EventNotification from the Stripe API. Makes an API request on every call.
|
|
33
|
-
def fetch_related_object
|
|
34
|
-
resp = @client.raw_request(
|
|
35
|
-
:get,
|
|
36
|
-
related_object.url,
|
|
37
|
-
opts: { stripe_context: context },
|
|
38
|
-
usage: ["fetch_related_object"]
|
|
39
|
-
)
|
|
40
|
-
@client.deserialize(resp.http_body, api_mode: Util.get_api_mode(related_object.url))
|
|
41
|
-
end
|
|
42
|
-
end
|
|
43
|
-
end
|
|
44
|
-
end
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
# File generated from our OpenAPI spec
|
|
2
|
-
# frozen_string_literal: true
|
|
3
|
-
|
|
4
|
-
module Stripe
|
|
5
|
-
module Events
|
|
6
|
-
# Occurs whenever a new Stripe-generated file is available for your account.
|
|
7
|
-
class V1FileCreatedEvent < Stripe::V2::Core::Event
|
|
8
|
-
def self.lookup_type
|
|
9
|
-
"v1.file.created"
|
|
10
|
-
end
|
|
11
|
-
|
|
12
|
-
# Retrieves the related object from the API. Makes an API request on every call.
|
|
13
|
-
def fetch_related_object
|
|
14
|
-
_request(
|
|
15
|
-
method: :get,
|
|
16
|
-
path: related_object.url,
|
|
17
|
-
base_address: :api,
|
|
18
|
-
opts: { stripe_context: context }
|
|
19
|
-
)
|
|
20
|
-
end
|
|
21
|
-
attr_reader :related_object
|
|
22
|
-
end
|
|
23
|
-
|
|
24
|
-
# Occurs whenever a new Stripe-generated file is available for your account.
|
|
25
|
-
class V1FileCreatedEventNotification < Stripe::V2::Core::EventNotification
|
|
26
|
-
def self.lookup_type
|
|
27
|
-
"v1.file.created"
|
|
28
|
-
end
|
|
29
|
-
|
|
30
|
-
attr_reader :related_object
|
|
31
|
-
|
|
32
|
-
# Retrieves the File related to this EventNotification from the Stripe API. Makes an API request on every call.
|
|
33
|
-
def fetch_related_object
|
|
34
|
-
resp = @client.raw_request(
|
|
35
|
-
:get,
|
|
36
|
-
related_object.url,
|
|
37
|
-
opts: { stripe_context: context },
|
|
38
|
-
usage: ["fetch_related_object"]
|
|
39
|
-
)
|
|
40
|
-
@client.deserialize(resp.http_body, api_mode: Util.get_api_mode(related_object.url))
|
|
41
|
-
end
|
|
42
|
-
end
|
|
43
|
-
end
|
|
44
|
-
end
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
# File generated from our OpenAPI spec
|
|
2
|
-
# frozen_string_literal: true
|
|
3
|
-
|
|
4
|
-
module Stripe
|
|
5
|
-
module Events
|
|
6
|
-
# Occurs when a new Financial Connections account is created.
|
|
7
|
-
class V1FinancialConnectionsAccountCreatedEvent < Stripe::V2::Core::Event
|
|
8
|
-
def self.lookup_type
|
|
9
|
-
"v1.financial_connections.account.created"
|
|
10
|
-
end
|
|
11
|
-
|
|
12
|
-
# Retrieves the related object from the API. Makes an API request on every call.
|
|
13
|
-
def fetch_related_object
|
|
14
|
-
_request(
|
|
15
|
-
method: :get,
|
|
16
|
-
path: related_object.url,
|
|
17
|
-
base_address: :api,
|
|
18
|
-
opts: { stripe_context: context }
|
|
19
|
-
)
|
|
20
|
-
end
|
|
21
|
-
attr_reader :related_object
|
|
22
|
-
end
|
|
23
|
-
|
|
24
|
-
# Occurs when a new Financial Connections account is created.
|
|
25
|
-
class V1FinancialConnectionsAccountCreatedEventNotification < Stripe::V2::Core::EventNotification
|
|
26
|
-
def self.lookup_type
|
|
27
|
-
"v1.financial_connections.account.created"
|
|
28
|
-
end
|
|
29
|
-
|
|
30
|
-
attr_reader :related_object
|
|
31
|
-
|
|
32
|
-
# Retrieves the Account related to this EventNotification from the Stripe API. Makes an API request on every call.
|
|
33
|
-
def fetch_related_object
|
|
34
|
-
resp = @client.raw_request(
|
|
35
|
-
:get,
|
|
36
|
-
related_object.url,
|
|
37
|
-
opts: { stripe_context: context },
|
|
38
|
-
usage: ["fetch_related_object"]
|
|
39
|
-
)
|
|
40
|
-
@client.deserialize(resp.http_body, api_mode: Util.get_api_mode(related_object.url))
|
|
41
|
-
end
|
|
42
|
-
end
|
|
43
|
-
end
|
|
44
|
-
end
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
# File generated from our OpenAPI spec
|
|
2
|
-
# frozen_string_literal: true
|
|
3
|
-
|
|
4
|
-
module Stripe
|
|
5
|
-
module Events
|
|
6
|
-
# Occurs when a Financial Connections account's status is updated from `active` to `inactive`.
|
|
7
|
-
class V1FinancialConnectionsAccountDeactivatedEvent < Stripe::V2::Core::Event
|
|
8
|
-
def self.lookup_type
|
|
9
|
-
"v1.financial_connections.account.deactivated"
|
|
10
|
-
end
|
|
11
|
-
|
|
12
|
-
# Retrieves the related object from the API. Makes an API request on every call.
|
|
13
|
-
def fetch_related_object
|
|
14
|
-
_request(
|
|
15
|
-
method: :get,
|
|
16
|
-
path: related_object.url,
|
|
17
|
-
base_address: :api,
|
|
18
|
-
opts: { stripe_context: context }
|
|
19
|
-
)
|
|
20
|
-
end
|
|
21
|
-
attr_reader :related_object
|
|
22
|
-
end
|
|
23
|
-
|
|
24
|
-
# Occurs when a Financial Connections account's status is updated from `active` to `inactive`.
|
|
25
|
-
class V1FinancialConnectionsAccountDeactivatedEventNotification < Stripe::V2::Core::EventNotification
|
|
26
|
-
def self.lookup_type
|
|
27
|
-
"v1.financial_connections.account.deactivated"
|
|
28
|
-
end
|
|
29
|
-
|
|
30
|
-
attr_reader :related_object
|
|
31
|
-
|
|
32
|
-
# Retrieves the Account related to this EventNotification from the Stripe API. Makes an API request on every call.
|
|
33
|
-
def fetch_related_object
|
|
34
|
-
resp = @client.raw_request(
|
|
35
|
-
:get,
|
|
36
|
-
related_object.url,
|
|
37
|
-
opts: { stripe_context: context },
|
|
38
|
-
usage: ["fetch_related_object"]
|
|
39
|
-
)
|
|
40
|
-
@client.deserialize(resp.http_body, api_mode: Util.get_api_mode(related_object.url))
|
|
41
|
-
end
|
|
42
|
-
end
|
|
43
|
-
end
|
|
44
|
-
end
|