The Landon OpenAPI Wrapper makes it easy for developers to interact with our Roblox Flight Planner System.
- Simple and easy to use
- 100% coverage of the Landon OpenAPI
With that its now been brought to Luau.
with Roblox Marketplace
https://www.roblox.com/library/8895872898/Landonu
with Wally
Landonu = "imacodr/landon@1.0.4"with Roarn
roarn install landonuwith GitHub
https://github.com/imacodr/Landon/releases
First you will need to create a Landonu object. Landonu now follows OOP!
local airline = Landonu.new(apiKey: string) = self (on the docs)
self:GetFlights()
local Landonu = require(path/to/landon)
local airline = Landonu.new(apiKey: string)
airline:GetFlights()self:CreateFlight({ flightNumber: string, aircraft: string, departure_airport: string, arrival_airport: string, game_url: string, date: string, time: string, roavhub_ping: boolean })
local Landonu = require(path/to/landon)
local airline = Landonu.new(apiKey: string)
airline:CreateFlight({
flightnumber = "test",
aircraft = "test",
departure_airport = "test",
arrival_airport = "testu",
game_url = "https://roblox.com",
date = "today",
time = "8 PM",
roavhub_ping: true
}
)self:DeleteFlight(flightID: string)
local Landonu = require(path/to/landon)
local airline = Landonu.new(apiKey: string)
airline:DeleteFlight("testFlightIdThatGenerated")