ConvertFrom-Json is simply taking that JSON text and transforming it into PowerShell [pscustomobject] object(s) to make subsequent scripting a little easier, but there's no magic going on that can convert it into an actual class complete with methods. Typically, what happens where that kind ...