'StaticStruct': is not a member of 'FTransform'?

That definitely doesn’t seem right!
I’m trying to convert an FTransform to a Json Object.

const TSharedPtr<FJsonObject> Transform = FJsonObjectConverter::UStructToJsonObject<FTransform>(GetTransform());

But I get a build error saying that FTransform doesn’t have static struct.

What’s going on here?
What’s the right way to serialise a transform to json?

sry cant help on exact issue but its better than nothing!
https://github.com/ufna/VaRest look at this source code its rest api and it allows you convert anything even an actor to json and pass it. make a working blueprint and double click on bp nodes to see how source code handles it.

Cheers, appreciate it!