51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
# File 'lib/stripe/event_types.rb', line 51
def self.event_notification_types_to_classes
{
Events::V1BillingMeterErrorReportTriggeredEventNotification.lookup_type =>
Events::V1BillingMeterErrorReportTriggeredEventNotification,
Events::V1BillingMeterNoMeterFoundEventNotification.lookup_type =>
Events::V1BillingMeterNoMeterFoundEventNotification,
Events::V2CommerceProductCatalogImportsFailedEventNotification.lookup_type =>
Events::V2CommerceProductCatalogImportsFailedEventNotification,
Events::V2CommerceProductCatalogImportsProcessingEventNotification.lookup_type =>
Events::V2CommerceProductCatalogImportsProcessingEventNotification,
Events::V2CommerceProductCatalogImportsSucceededEventNotification.lookup_type =>
Events::V2CommerceProductCatalogImportsSucceededEventNotification,
Events::V2CommerceProductCatalogImportsSucceededWithErrorsEventNotification.lookup_type =>
Events::V2CommerceProductCatalogImportsSucceededWithErrorsEventNotification,
Events::V2CoreAccountClosedEventNotification.lookup_type =>
Events::V2CoreAccountClosedEventNotification,
Events::V2CoreAccountCreatedEventNotification.lookup_type =>
Events::V2CoreAccountCreatedEventNotification,
Events::V2CoreAccountIncludingConfigurationCustomerCapabilityStatusUpdatedEventNotification.lookup_type =>
Events::V2CoreAccountIncludingConfigurationCustomerCapabilityStatusUpdatedEventNotification,
Events::V2CoreAccountIncludingConfigurationCustomerUpdatedEventNotification.lookup_type =>
Events::V2CoreAccountIncludingConfigurationCustomerUpdatedEventNotification,
Events::V2CoreAccountIncludingConfigurationMerchantCapabilityStatusUpdatedEventNotification.lookup_type =>
Events::V2CoreAccountIncludingConfigurationMerchantCapabilityStatusUpdatedEventNotification,
Events::V2CoreAccountIncludingConfigurationMerchantUpdatedEventNotification.lookup_type =>
Events::V2CoreAccountIncludingConfigurationMerchantUpdatedEventNotification,
Events::V2CoreAccountIncludingConfigurationRecipientCapabilityStatusUpdatedEventNotification.lookup_type =>
Events::V2CoreAccountIncludingConfigurationRecipientCapabilityStatusUpdatedEventNotification,
Events::V2CoreAccountIncludingConfigurationRecipientUpdatedEventNotification.lookup_type =>
Events::V2CoreAccountIncludingConfigurationRecipientUpdatedEventNotification,
Events::V2CoreAccountIncludingDefaultsUpdatedEventNotification.lookup_type =>
Events::V2CoreAccountIncludingDefaultsUpdatedEventNotification,
Events::V2CoreAccountIncludingFutureRequirementsUpdatedEventNotification.lookup_type =>
Events::V2CoreAccountIncludingFutureRequirementsUpdatedEventNotification,
Events::V2CoreAccountIncludingIdentityUpdatedEventNotification.lookup_type =>
Events::V2CoreAccountIncludingIdentityUpdatedEventNotification,
Events::V2CoreAccountIncludingRequirementsUpdatedEventNotification.lookup_type =>
Events::V2CoreAccountIncludingRequirementsUpdatedEventNotification,
Events::V2CoreAccountLinkReturnedEventNotification.lookup_type =>
Events::V2CoreAccountLinkReturnedEventNotification,
Events::V2CoreAccountPersonCreatedEventNotification.lookup_type =>
Events::V2CoreAccountPersonCreatedEventNotification,
Events::V2CoreAccountPersonDeletedEventNotification.lookup_type =>
Events::V2CoreAccountPersonDeletedEventNotification,
Events::V2CoreAccountPersonUpdatedEventNotification.lookup_type =>
Events::V2CoreAccountPersonUpdatedEventNotification,
Events::V2CoreAccountUpdatedEventNotification.lookup_type =>
Events::V2CoreAccountUpdatedEventNotification,
Events::V2CoreEventDestinationPingEventNotification.lookup_type =>
Events::V2CoreEventDestinationPingEventNotification,
}
end
|