description

Deprecated

use @Description instead.

Replace with

@Description(description)

Parameters

description

A deprecated field for providing a description. Use @Description instead. Defaults to an empty string.

Example usage:

@CommandRoute(
action = "create",
method = CommandRoute.Method.POST,
prefix = "/api/v1",
appendIdPath = CommandRoute.AppendPath.ALWAYS,
enabled = true
)
class CreateResourceCommand {
// Command implementation
}