/API-2-OOP

✔🌍 Simple tool for converting API-Statements into objects for OOP-Languages

Primary LanguageC#GNU General Public License v3.0GPL-3.0

API-2-OOP

GitHub GitHub Release Date GitHub release (latest by date including pre-releases) GitHub last commit GitHub issues GitHub language count

image

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)

image

{
	"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_name

Downloads:

WinForms-Edition: see releases

UWP-Versions / Windows App: Download from Microsoft-Store (Pending...)