DataTable to JSon converter

First of all thank you Chatouille . But what should i enter in “foobar” place , is that a row name ?
And dont realy understand where the Json string exist after the execution of UStructToJsonObjectString() method.
i made this .

 `void  UParsing::HandleRowString(FDataTableRowHandle ST, UDataTable *DT,  UStruct* USTR)
 {
    FString Warnings; 	 	
    void* StructPtr  = ST.GetRow<UScriptStruct>(TEXT("art"));

	FJsonObjectConverter::UStructToJsonObjectString(USTR, StructPtr, Warnings, 0, 0, 0);

UE_LOG(LogTemp, Warning, TEXT("%s"),*Warnings);
 }`

and when i try to compile is failed

1 Like