@@ -583,18 +583,6 @@ class PUBNUBLIBRARY_API UPubnubSubsystem : public UGameInstanceSubsystem
583
583
/* *
584
584
* Parses an access token and retrieves information about its permissions.
585
585
*
586
- * @Note Requires the *Access Manager* add-on to be enabled for your key in the PubNub Admin Portal
587
- *
588
- * Permissions are written in bit mask int:
589
- * READ = 1
590
- * WRITE = 2
591
- * MANAGE = 4
592
- * DELETE = 8
593
- * CREATE = 16
594
- * GET = 32
595
- * UPDATE = 64
596
- * JOIN = 128
597
- *
598
586
* @param Token The access token to parse.
599
587
* @return Parsed token
600
588
*/
@@ -1157,7 +1145,7 @@ class PUBNUBLIBRARY_API UPubnubSubsystem : public UGameInstanceSubsystem
1157
1145
* @Note Requires the *App Context* add-on to be enabled for your key in the PubNub Admin Portal
1158
1146
*
1159
1147
* @param User The user ID for whom to retrieve memberships.
1160
- * @param OnGetMembershipResponse The callback function used to handle the result.
1148
+ * @param OnGetMembershipsResponse The callback function used to handle the result.
1161
1149
* @param Include (Optional) A comma-separated list of property names to include in the response.
1162
1150
* @param Limit (Optional) The maximum number of results to return (default: 100).
1163
1151
* @param Filter (Optional) Expression used to filter the results. Check online documentation to see exact filter formulas;
@@ -1168,7 +1156,7 @@ class PUBNUBLIBRARY_API UPubnubSubsystem : public UGameInstanceSubsystem
1168
1156
* @param Count (Optional) Whether to include a total count of users in the response (default: not set).
1169
1157
*/
1170
1158
UFUNCTION (BlueprintCallable, Category = " Pubnub|App Context" , meta=(AdvancedDisplay=" Filter,Sort,PageNext,PagePrev,Count" ))
1171
- void GetMembershipsRaw (FString User, FOnGetMembershipsResponse OnGetMembershipResponse , FString Include = " " , int Limit = 100 , FString Filter = " " , FString Sort = " " , FString PageNext = " " , FString PagePrev = " " , EPubnubTribool Count = EPubnubTribool::PT_NotSet);
1159
+ void GetMembershipsRaw (FString User, FOnGetMembershipsResponse OnGetMembershipsResponse , FString Include = " " , int Limit = 100 , FString Filter = " " , FString Sort = " " , FString PageNext = " " , FString PagePrev = " " , EPubnubTribool Count = EPubnubTribool::PT_NotSet);
1172
1160
1173
1161
/* *
1174
1162
* Retrieves a list of memberships for a specified User in the PubNub App Context.
@@ -1195,7 +1183,7 @@ class PUBNUBLIBRARY_API UPubnubSubsystem : public UGameInstanceSubsystem
1195
1183
* @Note Requires the *App Context* add-on to be enabled for your key in the PubNub Admin Portal
1196
1184
*
1197
1185
* @param User The user ID for whom to retrieve memberships.
1198
- * @param OnGetMembershipResponse The callback function used to handle the result.
1186
+ * @param OnGetMembershipsResponse The callback function used to handle the result.
1199
1187
* @param Include (Optional) List of property names to include in the response.
1200
1188
* @param Limit (Optional) The maximum number of results to return (default: 100).
1201
1189
* @param Filter (Optional) Expression used to filter the results. Check online documentation to see exact filter formulas;
@@ -1204,7 +1192,7 @@ class PUBNUBLIBRARY_API UPubnubSubsystem : public UGameInstanceSubsystem
1204
1192
* @param PagePrev (Optional) A string to retrieve the previous page of results (if applicable). Ignored if PageNext is provided.
1205
1193
*/
1206
1194
UFUNCTION (BlueprintCallable, Category = " Pubnub|App Context" , meta=(AdvancedDisplay=" Filter,Sort,PageNext,PagePrev" ))
1207
- void GetMemberships (FString User, FOnGetMembershipsResponse OnGetMembershipResponse , FPubnubMembershipInclude Include = FPubnubMembershipInclude (), int Limit = 100 , FString Filter = " " , FPubnubMembershipSort Sort = FPubnubMembershipSort (), FString PageNext = " " , FString PagePrev = " " );
1195
+ void GetMemberships (FString User, FOnGetMembershipsResponse OnGetMembershipsResponse , FPubnubMembershipInclude Include = FPubnubMembershipInclude (), int Limit = 100 , FString Filter = " " , FPubnubMembershipSort Sort = FPubnubMembershipSort (), FString PageNext = " " , FString PagePrev = " " );
1208
1196
1209
1197
/* *
1210
1198
* Retrieves a list of memberships for a specified User in the PubNub App Context.
@@ -1889,7 +1877,7 @@ class PUBNUBLIBRARY_API UPubnubSubsystem : public UGameInstanceSubsystem
1889
1877
void RemoveChannelMetadata_priv (FString Channel, FOnRemoveChannelMetadataResponseNative OnRemoveChannelMetadataResponse);
1890
1878
FString GetMemberships_pn (FString User, FString Include, int Limit, FString Filter, FString Sort, FString PageNext, FString PagePrev, EPubnubTribool Count);
1891
1879
void GetMemberships_JSON_priv (FString User, FOnPubnubResponse OnGetMembershipResponse, FString Include, int Limit, FString Filter, FString Sort, FString PageNext, FString PagePrev, EPubnubTribool Count);
1892
- void GetMemberships_DATA_priv (FString User, FOnGetMembershipsResponseNative OnGetMembershipResponse , FString Include, int Limit, FString Filter, FString Sort, FString PageNext, FString PagePrev, EPubnubTribool Count);
1880
+ void GetMemberships_DATA_priv (FString User, FOnGetMembershipsResponseNative OnGetMembershipsResponse , FString Include, int Limit, FString Filter, FString Sort, FString PageNext, FString PagePrev, EPubnubTribool Count);
1893
1881
void SetMemberships_priv (FString User, FString SetObj, FOnSetMembershipsResponseNative OnSetMembershipResponse, FString Include, int Limit, FString Filter, FString Sort, FString PageNext, FString PagePrev, EPubnubTribool Count);
1894
1882
void RemoveMemberships_priv (FString User, FString RemoveObj, FOnRemoveMembershipsResponseNative OnRemoveMembershipResponse, FString Include, int Limit, FString Filter, FString Sort, FString PageNext, FString PagePrev, EPubnubTribool Count);
1895
1883
FString GetChannelMembers_pn (FString Channel, FString Include, int Limit, FString Filter, FString Sort, FString PageNext, FString PagePrev, EPubnubTribool Count);
0 commit comments