I have following user define function
let myFunction = ()
{
T
| where id ==12345
|mv-expand details.data
|extend CreateTime=todatetime(details_data.["time"])
|extend Code=tostring(details_data.code)
|summarize arg_max(CreateTime,Code)
};
Now i want to get the values of each column from above function which returns 1 row with 2 cloumns Something like |print T().CreateTime |print T().Code
Can you please help me achieve the above.