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