5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# File 'lib/stripe/event_types.rb', line 5
def self.v2_event_types_to_classes
{
Events::V1BillingMeterErrorReportTriggeredEvent.lookup_type =>
Events::V1BillingMeterErrorReportTriggeredEvent,
Events::V1BillingMeterNoMeterFoundEvent.lookup_type => Events::V1BillingMeterNoMeterFoundEvent,
Events::V2CoreAccountClosedEvent.lookup_type => Events::V2CoreAccountClosedEvent,
Events::V2CoreAccountCreatedEvent.lookup_type => Events::V2CoreAccountCreatedEvent,
Events::V2CoreAccountIncludingConfigurationCustomerCapabilityStatusUpdatedEvent.lookup_type =>
Events::V2CoreAccountIncludingConfigurationCustomerCapabilityStatusUpdatedEvent,
Events::V2CoreAccountIncludingConfigurationCustomerUpdatedEvent.lookup_type =>
Events::V2CoreAccountIncludingConfigurationCustomerUpdatedEvent,
Events::V2CoreAccountIncludingConfigurationMerchantCapabilityStatusUpdatedEvent.lookup_type =>
Events::V2CoreAccountIncludingConfigurationMerchantCapabilityStatusUpdatedEvent,
Events::V2CoreAccountIncludingConfigurationMerchantUpdatedEvent.lookup_type =>
Events::V2CoreAccountIncludingConfigurationMerchantUpdatedEvent,
Events::V2CoreAccountIncludingConfigurationRecipientCapabilityStatusUpdatedEvent.lookup_type =>
Events::V2CoreAccountIncludingConfigurationRecipientCapabilityStatusUpdatedEvent,
Events::V2CoreAccountIncludingConfigurationRecipientUpdatedEvent.lookup_type =>
Events::V2CoreAccountIncludingConfigurationRecipientUpdatedEvent,
Events::V2CoreAccountIncludingDefaultsUpdatedEvent.lookup_type =>
Events::V2CoreAccountIncludingDefaultsUpdatedEvent,
Events::V2CoreAccountIncludingFutureRequirementsUpdatedEvent.lookup_type =>
Events::V2CoreAccountIncludingFutureRequirementsUpdatedEvent,
Events::V2CoreAccountIncludingIdentityUpdatedEvent.lookup_type =>
Events::V2CoreAccountIncludingIdentityUpdatedEvent,
Events::V2CoreAccountIncludingRequirementsUpdatedEvent.lookup_type =>
Events::V2CoreAccountIncludingRequirementsUpdatedEvent,
Events::V2CoreAccountLinkReturnedEvent.lookup_type => Events::V2CoreAccountLinkReturnedEvent,
Events::V2CoreAccountPersonCreatedEvent.lookup_type => Events::V2CoreAccountPersonCreatedEvent,
Events::V2CoreAccountPersonDeletedEvent.lookup_type => Events::V2CoreAccountPersonDeletedEvent,
Events::V2CoreAccountPersonUpdatedEvent.lookup_type => Events::V2CoreAccountPersonUpdatedEvent,
Events::V2CoreAccountUpdatedEvent.lookup_type => Events::V2CoreAccountUpdatedEvent,
Events::V2CoreEventDestinationPingEvent.lookup_type => Events::V2CoreEventDestinationPingEvent,
}
end
|