24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# File 'lib/stripe_mock/api/webhooks.rb', line 24
def self.event_list
@__list = [
'account.updated',
'account.application.deauthorized',
'charge.succeeded',
'charge.failed',
'charge.refunded',
'charge.dispute.created',
'charge.dispute.updated',
'charge.dispute.closed',
'customer.created',
'customer.updated',
'customer.deleted',
'customer.subscription.created',
'customer.subscription.updated',
'customer.subscription.deleted',
'customer.subscription.trial_will_end',
'customer.discount.created',
'customer.discount.updated',
'customer.discount.deleted',
'invoice.created',
'invoice.updated',
'invoice.payment_succeeded',
'invoice.payment_failed',
'invoiceitem.created',
'invoiceitem.updated',
'invoiceitem.deleted',
'plan.created',
'plan.updated',
'plan.deleted',
'coupon.created',
'coupon.deleted',
'transfer.created',
'transfer.paid',
'transfer.updated',
'transfer.failed'
]
end
|