Skip to content

βœ”πŸŒ Simple tool for converting API-Statements into objects for OOP-Languages

License

Notifications You must be signed in to change notification settings

TobiHatti/API-2-OOP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

33 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

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...)

About

βœ”πŸŒ Simple tool for converting API-Statements into objects for OOP-Languages

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages