CommandRoute

annotation class CommandRoute(    val action: String = DEFAULT_COMMAND_ACTION,     val enabled: Boolean = true,     val method: CommandRoute.Method = Method.DEFAULT,     val prefix: String = "",     val appendIdPath: CommandRoute.AppendPath = AppendPath.DEFAULT,     val appendTenantPath: CommandRoute.AppendPath = AppendPath.DEFAULT,     val appendOwnerPath: CommandRoute.AppendPath = AppendPath.DEFAULT,     val summary: String = "",     val description: String = "")

Types

Link copied to clipboard
Link copied to clipboard
annotation class HeaderVariable(val name: String = "", val nestedPath: Array<String> = [], val required: Boolean = true)
Link copied to clipboard
Link copied to clipboard
annotation class PathVariable(val name: String = "", val nestedPath: Array<String> = [], val required: Boolean = true)

Properties

Link copied to clipboard

action name or sub resource name

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val enabled: Boolean = true
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard