-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathIPurchasely.cs
160 lines (117 loc) · 3.69 KB
/
IPurchasely.cs
1
2
3
4
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
42
43
44
45
46
47
48
49
50
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
using System;
using System.Collections.Generic;
namespace PurchaselyRuntime
{
internal interface IPurchasely
{
void Init(
string apiKey,
string userId,
bool storekit1,
int logLevel,
int runningMode,
Action<bool, string> onStartCompleted
);
void UserLogin(string userId, Action<bool> onCompleted);
void SetIsReadyToOpenDeeplink(bool ready);
void PresentPresentationForPlacement(
string placementId,
Action<ProductViewResult, Plan> onResult,
Action<bool> onContentLoaded,
Action onCloseButtonClicked,
string contentId,
bool fullScreen
);
void PresentPresentationWithId(
string presentationId,
Action<ProductViewResult, Plan> onResult,
Action<bool> onContentLoaded,
Action onCloseButtonClicked,
string contentId,
bool fullScreen
);
void PresentPresentationForProduct(
string productId,
Action<ProductViewResult, Plan> onResult,
Action<bool> onContentLoaded,
Action onCloseButtonClicked,
string contentId,
string presentationId,
bool fullScreen
);
void PresentPresentationForPlan(
string planId,
Action<ProductViewResult, Plan> onResult,
Action<bool> onContentLoaded,
Action onCloseButtonClicked,
string contentId,
string presentationId,
bool fullScreen
);
void PresentContentForPresentation(
Presentation presentation,
Action<ProductViewResult, Plan> onResult,
Action<bool> onContentLoaded,
Action onCloseButtonClicked,
bool fullScreen
);
void SetPaywallActionInterceptor(Action<PaywallAction> onAction);
void ProcessPaywallAction(bool process);
void RestoreAllProducts(bool silent, Action<Plan> onSuccess, Action<string> onError);
string GetAnonymousUserId();
void SetLanguage(string language);
void UserLogout();
void SetDefaultPresentationResultHandler(Action<ProductViewResult, Plan> onResult);
void ProductWithIdentifier(string productId, Action<Product> onSuccess, Action<string> onError);
void PlanWithIdentifier(string planId, Action<Plan> onSuccess, Action<string> onError);
void AllProducts(Action<List<Product>> onSuccess, Action<string> onError);
void Purchase(
string planId,
Action<Plan> onSuccess,
Action<string> onError,
string offerId,
string contentId
);
void Synchronize();
bool IsDeeplinkHandled(string url);
void GetUserSubscriptions(Action<List<SubscriptionData>> onSuccess, Action<string> onError);
void PresentSubscriptions();
void SetAttribute(int attribute, string value);
void SetUserAttribute(string key, string value);
void SetUserAttribute(string key, int value);
void SetUserAttribute(string key, float value);
void SetUserAttribute(string key, bool value);
void SetUserAttribute(string key, DateTime value);
void ClearUserAttribute(string key);
void ClearUserAttributes();
string GetUserAttribute(string key);
void UserDidConsumeSubscriptionContent();
void FetchPresentation(
string presentationId,
Action<Presentation> onSuccess,
Action<string> onError,
string contentId
);
void FetchPresentationForPlacement(
string placementId,
Action<Presentation> onSuccess,
Action<string> onError,
string contentId
);
void ClientPresentationOpened(Presentation presentation);
void ClientPresentationClosed(Presentation presentation);
void SignPromotionalOffer(
string storeOfferId,
string storeProductId,
Action<PromotionalOfferSignature> onSuccess,
Action<string> onError
);
bool IsAnonymous();
void IsEligibleForIntroOffer(string planVendorId, Action<bool> onSuccess,
Action<string> onError);
void ShowPresentation();
void ClosePresentation();
void HidePresentation();
void SetThemeMode(ThemeMode mode);
}
}