alias OpenAPI::Generator::RouteMapping
Overview
A RouteMapping type is a tuple with the following shape: {method, full_path, key, path_params}
- method: The HTTP Verb of the route. (ex:
"get"
) - full_path: The full path representation of the route with path parameters between curly braces. (ex:
"/name/{id}"
) - key: The fully qualified name of the method mapped to the route. (ex:
"Controller::show"
) - path_params: A list of path parameter names. (ex:
["id", "name"]
)
Alias Definition
{String, String, String, Array(String)}