The API-2-OOP-Tool provides a simple way to convert lines from an API to programing-friendly-formated statements to speed up development of API-based programs. Available as Winforms-Program as well as UWP-App (Windows-App)
{
"status":"success",
"data":[
{
"id":"1",
"employee_name":"Tiger Nixon",
"employee_salary":"320800",
"employee_age":"61"
,"profile_image":""
},
{
"id":"2",
"employee_name":"Garrett Winters",A single line from the API-Example above, when selected, gets converted into the following:
// C#
string name = apiResult.data[0].employee_name;You can pick from several common languages. The output adapts to whichever language is selected:
' VB .NET
Dim name As String = apiResult.data(0).employee_name// PHP
$name = apiResult->data[0]->employee_name;# Python
name = apiResult.data[0].employee_nameWinForms-Edition: see releases
UWP-Versions / Windows App: Download from Microsoft-Store (Pending...)


