UNPKG

1.37 kBJavaScriptView Raw
1function WebhooksManager() {
2 console.log("WebhooksManager.js constructor")
3 /* TODO: implement key for 'p_signature' validation; Text or File */
4}
5
6WebhooksManager.prototype.high_risk_transaction_created = function(){
7
8}
9
10WebhooksManager.prototype.high_risk_transaction_updated = function(){
11
12}
13
14WebhooksManager.prototype.locker_processed = function(){
15
16}
17
18WebhooksManager.prototype.new_audience_member = function(){
19
20}
21
22WebhooksManager.prototype.payment_dispute_closed = function(){
23
24}
25
26WebhooksManager.prototype.payment_dispute_created = function(){
27
28}
29
30WebhooksManager.prototype.payment_refunded = function(){
31
32}
33
34WebhooksManager.prototype.payment_succeeded = function(){
35
36}
37
38WebhooksManager.prototype.subscription_cancelled = function(){
39
40}
41
42WebhooksManager.prototype.subscription_created = function(){
43
44}
45
46WebhooksManager.prototype.subscription_payment_failed = function(){
47
48}
49
50WebhooksManager.prototype.subscription_payment_refunded = function(){
51
52}
53
54WebhooksManager.prototype.subscription_payment_succeeded = function(){
55
56}
57
58WebhooksManager.prototype.subscription_updated = function(){
59
60}
61
62WebhooksManager.prototype.transfer_created = function(){
63
64}
65
66WebhooksManager.prototype.transfer_paid = function(){
67
68}
69
70WebhooksManager.prototype.update_audience_member = function(){
71
72}
73
74WebhooksManager.prototype.default = function(){
75
76}
77
78module.exports = WebhooksManager
\No newline at end of file