File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -22,10 +22,10 @@ struct FSIOJCallResponse
2222 GENERATED_USTRUCT_BODY ()
2323
2424 UPROPERTY ()
25- USIOJRequestJSON* Request;
25+ TObjectPtr< USIOJRequestJSON> Request;
2626
2727 UPROPERTY ()
28- UObject* WorldContextObject;
28+ TObjectPtr< UObject> WorldContextObject;
2929
3030 UPROPERTY ()
3131 FSIOJCallDelegate Callback;
Original file line number Diff line number Diff line change @@ -280,7 +280,7 @@ class SIOJSON_API USIOJRequestJSON : public UObject
280280
281281 /* * Internal request data stored as JSON */
282282 UPROPERTY ()
283- USIOJsonObject* RequestJsonObj;
283+ TObjectPtr< USIOJsonObject> RequestJsonObj;
284284
285285 UPROPERTY ()
286286 TArray<uint8> RequestBytes;
@@ -290,7 +290,7 @@ class SIOJSON_API USIOJRequestJSON : public UObject
290290
291291 /* * Response data stored as JSON */
292292 UPROPERTY ()
293- USIOJsonObject* ResponseJsonObj;
293+ TObjectPtr< USIOJsonObject> ResponseJsonObj;
294294
295295 /* * Verb for making request (GET,POST,etc) */
296296 ESIORequestVerb RequestVerb;
You can’t perform that action at this time.
0 commit comments